/* ============================================
   GlowingUniverse v2 — Dark Immersive
   Totalmente diferente da v1
   ============================================ */

:root {
    --bg-deep: #0a1628;
    --bg-surface: #131f33;
    --bg-card: #1a2740;
    --bg-card-hover: #1f3050;
    --text-primary: #f0f0f0;
    --text-secondary: #9599a3;
    --text-muted: #5c606a;
    --border-subtle: rgba(255,255,255,0.06);
    --border-visible: rgba(255,255,255,0.10);

    --pool-blue: #0091FF;
    --pool-blue-glow: rgba(0,145,255,0.30);
    --pool-blue-soft: rgba(0,145,255,0.10);

    --ac-green: #00E676;
    --ac-green-glow: rgba(0,230,118,0.30);
    --ac-green-soft: rgba(0,230,118,0.10);

    --sr-orange: #FF8F00;
    --sr-orange-glow: rgba(255,143,0,0.30);
    --sr-orange-soft: rgba(255,143,0,0.10);
    --gold: #D4A017;
    --gold-glow: rgba(212,160,23,0.30);
    --gold-soft: rgba(212,160,23,0.08);

    --white-soft: rgba(255,255,255,0.04);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-deep);
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
    background: var(--bg-deep);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ========== Menu Button (Floating) ========== */

/* ========== Top Header — Company Name ========== */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(10,22,40,0.95) 60%, rgba(10,22,40,0) 100%);
    backdrop-filter: blur(6px);
}

.company-name {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    background: linear-gradient(135deg, #D4A017 0%, #F0D060 40%, #E5B830 70%, #C8960C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212,160,23,0.35));
    transition: all 0.3s ease;
}

.company-name:hover {
    filter: drop-shadow(0 2px 16px rgba(212,160,23,0.55));
    transform: translateY(-1px);
}
.menu-btn {
    position: fixed;
    top: 28px;
    right: 28px;
    z-index: 2000;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(26,39,64,0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-visible);
    cursor: pointer;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all var(--transition);
}

.menu-btn:hover {
    background: rgba(31,48,80,0.9);
    border-color: rgba(255,255,255,0.18);
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== Menu Overlay ========== */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(10,22,40,0.96);
    backdrop-filter: blur(30px);
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.menu-link {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.menu-link:hover {
    color: var(--text-primary);
    transform: scale(1.05);
}

.menu-cta {
    color: var(--sr-orange);
    font-size: 2rem;
}

.menu-cta:hover {
    color: var(--sr-orange);
    text-shadow: 0 0 40px var(--sr-orange-glow);
}

/* ========== HERO v2 ========== */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-v2-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-blue {
    width: 600px;
    height: 600px;
    background: var(--pool-blue);
    top: -200px;
    left: -150px;
    animation-delay: 0s;
}

.orb-orange {
    width: 400px;
    height: 400px;
    background: var(--sr-orange);
    bottom: -100px;
    right: -100px;
    animation-delay: -4s;
}

.orb-green {
    width: 300px;
    height: 300px;
    background: var(--ac-green);
    top: 50%;
    right: 20%;
    animation-delay: -8s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-v2-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.hero-v2-left {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.hero-eyebrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ac-green);
    box-shadow: 0 0 12px var(--ac-green-glow);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-v2-left h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.h1-line {
    display: block;
    color: var(--text-primary);
}

.h1-accent {
    background: linear-gradient(135deg, #C8960C 0%, #F0D060 40%, #E5B830 70%, #D4A017 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-v2-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
}

.hero-v2-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}

/* Buttons v2 */
.btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.btn-v2-primary {
    background: var(--sr-orange);
    color: #fff;
}

.btn-v2-primary:hover {
    background: #ff8122;
    box-shadow: 0 0 40px var(--sr-orange-glow);
    transform: translateY(-2px);
}

.btn-v2-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-visible);
}

.btn-v2-ghost:hover {
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.04);
}

.btn-v2-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
}

.hstat {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hstat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.hstat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hstat-div {
    width: 1px;
    height: 32px;
    background: var(--border-visible);
}

/* Hero Right — Image */
.hero-v2-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
}

.hero-img-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.hero-img-frame .img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}

.hero-img-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pool-blue-glow), transparent 60%);
    pointer-events: none;
}


/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ========== SERVIÇOS v2 ========== */
.servicos-v2 {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.servicos-v2-header {
    text-align: center;
    margin-bottom: 72px;
}

.v2-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    border: 1px solid var(--border-visible);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.servicos-v2-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
}

.text-glow-blue {
    color: var(--pool-blue);
    text-shadow: 0 0 40px var(--pool-blue-glow);
}

.text-glow-orange {
    color: var(--sr-orange);
    text-shadow: 0 0 40px var(--sr-orange-glow);
}

.text-glow-green {
    color: var(--ac-green);
    text-shadow: 0 0 40px var(--ac-green-glow);
}

.text-glow-gold {
    color: var(--gold);
    text-shadow: 0 0 40px var(--gold-glow);
}

/* Showcase Cards */
.servicos-showcase {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.showcase-card:hover {
    border-color: var(--border-visible);
}

.showcase-card.reverse .sc-visual {
    order: 1;
}

.showcase-card.reverse .sc-body {
    order: 0;
}

.sc-visual {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.sc-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sc-visual .img-placeholder {
    width: 100%;
    height: 100%;
}

.showcase-card:hover .sc-visual .img-placeholder {
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.sc-visual-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sc-piscinas .sc-visual-overlay {
    background: linear-gradient(135deg, var(--pool-blue-soft), transparent 70%);
}

.sc-ar .sc-visual-overlay {
    background: linear-gradient(135deg, var(--ac-green-soft), transparent 70%);
}

/* AC service card — show full photo without cropping */
.sc-ar .sc-visual img {
    object-fit: cover;
}
.sc-ar .sc-visual .img-real {
    object-fit: cover;
}

/* AC card — match container to photo's natural aspect ratio */
.sc-ar .sc-visual {
    aspect-ratio: auto;
}

.sc-serralheria .sc-visual-overlay {
    background: linear-gradient(135deg, var(--sr-orange-soft), transparent 70%);
}

.sc-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.12);
    letter-spacing: -0.04em;
    pointer-events: none;
}

.sc-body {
    padding: 48px 48px 48px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
}

.showcase-card.reverse .sc-body {
    padding: 48px 0 48px 48px;
}

.sc-icon {
    font-size: 2.2rem;
}

.sc-body h3 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.sc-subtitle {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.sc-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.sc-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.sc-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.sc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold-glow);
}

.sc-piscinas .sc-list li::before { background: var(--pool-blue); box-shadow: 0 0 8px var(--pool-blue-glow); }
.sc-ar .sc-list li::before { background: var(--ac-green); box-shadow: 0 0 8px var(--ac-green-glow); }
.sc-serralheria .sc-list li::before { background: var(--sr-orange); box-shadow: 0 0 8px var(--sr-orange-glow); }

.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 6px;
    transition: gap 0.3s ease;
}

.sc-link:hover {
    gap: 12px;
}

.sc-piscinas .sc-link { color: var(--pool-blue); }
.sc-ar .sc-link { color: var(--ac-green); }
.sc-serralheria .sc-link { color: var(--sr-orange); }

/* ========== PORTFÓLIO v2 ========== */
.portfolio-v2 {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-v2-header {
    text-align: center;
    margin-bottom: 56px;
}

.portfolio-v2-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.portfolio-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pv2-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition);
}

.pv2-item:hover {
    border-color: var(--border-visible);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.pv2-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.pv2-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.pv2-item .img-placeholder {
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
}

.pv2-item:hover .img-placeholder {
    transform: scale(1.06);
}
/* AC portfolio items — respect natural image ratio */
.pv2-ac {
    aspect-ratio: auto;
}

.pv2-ac img {
    object-fit: contain;
    background: var(--bg-card);
}


.pv2-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(0deg, rgba(10,22,40,0.95) 40%, transparent 100%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.pv2-cat {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pv2-cat-pool { color: var(--pool-blue); }
.pv2-cat-ac { color: var(--ac-green); }
.pv2-cat-sr { color: var(--sr-orange); }

.pv2-caption strong {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
}

.pv2-caption span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========== CONTACTO v2 ========== */
/* ========== CONTACTO v2 ========== */
.contacto-v2 {
    padding: 100px 40px 80px;
    max-width: 780px;
    margin: 0 auto;
}

.contacto-v2-inner {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 56px 48px;
}

.contacto-v2-header {
    text-align: center;
    margin-bottom: 36px;
}

.contacto-heading {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 10px;
}

.contacto-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contacto-v2-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Contact Details Cards */
.contacto-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.cd-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    transition: all var(--transition);
}

.cd-item:hover {
    border-color: var(--border-visible);
    background: var(--bg-card-hover);
}

.cd-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cd-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cd-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.cd-value {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    word-break: break-word;
    text-decoration: none;
}

a.cd-value {
    color: var(--pool-blue);
    transition: color 0.2s;
}

a.cd-value:hover {
    color: var(--text-primary);
}

/* Divider */
.contacto-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contacto-divider::before,
.contacto-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-visible);
}

/* Form */
.contacto-v2-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cv2-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cv2-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cv2-full {
    grid-column: 1 / -1;
}

.cv2-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cv2-field input,
.cv2-field select,
.cv2-field textarea {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all var(--transition);
    resize: vertical;
}

.cv2-field input:focus,
.cv2-field select:focus,
.cv2-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-soft);
    background: var(--bg-card-hover);
}

.cv2-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239599a3' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

@media (max-width: 768px) {
    .contacto-details {
        grid-template-columns: 1fr;
    }
    .contacto-v2-inner {
        padding: 32px 24px;
    }
    .cv2-row {
        grid-template-columns: 1fr;
    }
    .contacto-v2 {
        padding: 60px 16px 40px;
    }
}

/* ========== FOOTER ========== */
.footer-v2 {
    padding: 40px;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.footer-v2-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.footer-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========== ZOHO VERIFY LINK ========== */
.zoho-verify-link {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 999;
    opacity: 0.03;
    font-size: 0.6rem;
    color: var(--text-muted);
    pointer-events: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .hero-v2-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-v2-right {
        max-width: 400px;
        margin: 0 auto;
    }

    .showcase-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .showcase-card.reverse .sc-visual {
        order: 0;
    }

    .showcase-card.reverse .sc-body {
        order: 0;
        padding: 32px 28px;
    }

    .sc-body {
        padding: 32px 28px;
    }

    .portfolio-v2-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pv2-featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .cv2-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .portfolio-v2-grid {
        grid-template-columns: 1fr;
    }

    .contacto-v2-inner {
        padding: 32px 20px;
    }

    .hero-v2-actions {
        flex-direction: column;
    }

    .btn-v2 {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   IMAGE PLACEHOLDERS — Gradient + Icon system
   ============================================ */

.img-placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: inherit;
    overflow: hidden;
}

/* Animated shimmer overlay */
.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.03) 50%,
        transparent 70%
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Subtle grid pattern */
.img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.ph-icon {
    position: relative;
    z-index: 1;
    font-size: clamp(2.5rem, 5vw, 4rem);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    animation: phFloat 6s ease-in-out infinite;
}

@keyframes phFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.ph-label {
    position: relative;
    z-index: 1;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ===== Pool / Piscinas (blue gradient) ===== */
.img-piscina-hero {
    background: linear-gradient(160deg, #0b3d6b 0%, #0d5fa6 25%, #0a78c4 50%, #064663 85%, #0a2035 100%);
}

.img-piscina-servico {
    background: linear-gradient(160deg, #0a3d5c 0%, #0c5d8f 30%, #0f7db8 55%, #084c6e 80%, #0b2840 100%);
}

/* ===== Ar Condicionado (green/teal gradient) ===== */
.img-ac-servico {
    background: linear-gradient(160deg, #0a3d35 0%, #0d5c4a 25%, #0f7a52 50%, #0a4d3b 80%, #0c2e28 100%);
}

.img-ac-outdoor {
    background: linear-gradient(160deg, #0d4238 0%, #10604d 30%, #127d5e 55%, #0c553e 80%, #0e3128 100%);
}

.img-ac-in {
    background: linear-gradient(160deg, #0a3a30 0%, #0e5542 25%, #11704f 50%, #0b4e38 80%, #0d2f26 100%);
}

/* ===== Serralheria (warm orange/bronze gradient) ===== */
.img-serr-servico {
    background: linear-gradient(160deg, #3d2a15 0%, #5c3d1e 25%, #7a4f24 50%, #4d3018 80%, #2e1e10 100%);
}

.img-serr-escada {
    background: linear-gradient(160deg, #3a2818 0%, #583b20 30%, #754d2a 55%, #4d331c 80%, #2f1f12 100%);
}

.img-serr-portao {
    background: linear-gradient(160deg, #352618 0%, #503820 30%, #6b4828 55%, #463018 80%, #2a1c10 100%);
}

.img-serr-galpao {
    background: linear-gradient(160deg, #2e2418 0%, #463420 30%, #5d4228 55%, #3c2c18 80%, #242010 100%);
}

.img-serr-mezanino {
    background: linear-gradient(160deg, #322618 0%, #4a3622 30%, #62462a 55%, #40301a 80%, #282012 100%);
}

.img-serr-telhado {
    background: linear-gradient(160deg, #3b2a16 0%, #574020 30%, #735028 55%, #4d361a 80%, #2f2212 100%);
}

.img-serr-cobertura {
    background: linear-gradient(160deg, #342618 0%, #4e3a20 30%, #684a28 55%, #44321a 80%, #2a1e10 100%);
}

/* Smaller portfolio items — slightly smaller icons */
.pv2-item .ph-icon {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.pv2-item .ph-label {
    font-size: clamp(0.7rem, 1vw, 0.85rem);
}

/* Featured portfolio item — bigger icons */
.pv2-featured .ph-icon {
    font-size: clamp(3rem, 6vw, 5rem);
}

.pv2-featured .ph-label {
    font-size: clamp(1rem, 2vw, 1.4rem);
}

/* Hero image placeholder specific */
.hero-img-frame .ph-icon {
    font-size: clamp(3rem, 6vw, 5rem);
}

.hero-img-frame .ph-label {
    font-size: clamp(1rem, 2vw, 1.3rem);
}

/* Services showcase placeholder — fills the container */
.sc-visual .img-placeholder .ph-icon {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.sc-visual .img-placeholder .ph-label {
    font-size: clamp(0.8rem, 1.3vw, 1rem);
}

/* ========== Real Images (replace placeholders) ========== */
.img-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transition: transform 0.8s ease;
}

.pv2-item:hover .img-real {
    transform: scale(1.06);
}

.showcase-card:hover .sc-visual .img-real {
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.hero-img-frame .img-real {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}
