:root {
    --primary-color: #04BF8A;
    --primary-hover: #038f74;
    --dark-green: #04BF8A;
    --gold: #04D98B;
    --light-gold: #0D0D0D;
    --light-bg: #f8f9fa;
    --bg-color: #ffffff;
    --text-dark: #0D0D0D;
    --text-light: #ffffff;
    --border-radius: 12px;
    --transition: 0.3s ease-in-out;
}

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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}


/* Hero Reveal Animations */
.hero-reveal-container > * {
    opacity: 0;
    animation: heroRevealUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-reveal-container > *:nth-child(1) { animation-delay: 0.1s; } /* badge */
.hero-reveal-container > *:nth-child(2) { animation-delay: 0.25s; } /* title */
.hero-reveal-container > *:nth-child(3) { animation-delay: 0.4s; } /* subtitle */
.hero-reveal-container > *:nth-child(4) { animation-delay: 0.55s; } /* button */

@keyframes heroRevealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
}

/* ===== Intro Splash Screen ===== */
.intro-splash {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 99999;
    background: linear-gradient(160deg, #071a12 0%, #0a2218 40%, #04150e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
    overflow: hidden;
}

.intro-splash.hide {
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
}

.intro-bg-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(4, 191, 138, 0.15) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: introGlowPulse 3s ease-in-out infinite;
}

@keyframes introGlowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50%      { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.intro-logo-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 10px;
}

.intro-logo {
    height: 160px;
    max-width: 90vw;
    object-fit: contain;
    display: block;
    opacity: 0;
    transform: scale(0.6);
    filter: brightness(0) invert(1);
    animation: introLogoIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards,
               introLogoColor 1s ease-in-out 0.8s forwards;
}

@keyframes introLogoIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes introLogoColor {
    to {
        filter: brightness(1) invert(0);
    }
}

.intro-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 70%
    );
    animation: introShine 1.2s ease-in-out 1.4s forwards;
}

@keyframes introShine {
    to { left: 200%; }
}

.intro-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    margin-top: 25px;
    opacity: 0;
    transform: translateY(10px);
    animation: introTagIn 0.8s ease-out 1.2s forwards;
}

@media (max-width: 480px) {
    .intro-tagline {
        font-size: 0.72rem;
        letter-spacing: 2px;
    }
    .intro-logo {
        height: 120px;
    }
}

@keyframes introTagIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(2, 214, 103, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 214, 103, 0.4);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 10px 20px;
}

.btn-secondary:hover {
    background-color: var(--primary-hover);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}
.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(2, 214, 103, 0.3);
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.top-bar {
    display: none; /* Oculto para o layout do header flutuante */
    background-color: var(--gold);
    color: var(--text-light);
    text-align: center;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.header.scrolled .top-bar {
    display: none; /* Hide top bar on scroll to save screen space */
}

.header {
    background: #ffffff;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    border-radius: 50px;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.header.scrolled {
    padding: 0;
    top: 15px;
    background-color: var(--dark-green);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    transition: var(--transition);
}

.header.scrolled .header-content {
    height: 60px;
}

.logo {
    height: 50px;
    transition: var(--transition);
}

.header.scrolled .logo {
    height: 45px;
    filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(10deg);
}

.desktop-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.header.scrolled .nav-links a {
    color: var(--text-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.header.scrolled .mobile-menu-toggle span {
    background-color: var(--text-light);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--dark-green);
    margin-top: 110px;
    overflow: hidden;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(4, 191, 138, 0.9) 0%, rgba(4, 191, 138, 0.4) 100%);
    z-index: 3;
}

.hero .container {
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 4;
    color: var(--text-light);
    max-width: 520px; /* Reduced width to avoid covering face */
    margin-top: 8vh; /* Pushed down gently */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: badgeShine 4s infinite;
}

@keyframes badgeShine {
    0% { left: -150%; }
    15% { left: 200%; }
    100% { left: 200%; }
}

.hero-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-badge-stars {
    color: #FFB400;
    font-size: 1.15rem;
    display: inline-flex;
    gap: 3px;
}

.hero-badge-stars .star {
    opacity: 0;
    transform: scale(0.3) rotate(-15deg);
    animation: starPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.hero-badge-stars .star:nth-child(1) { animation-delay: 3.5s; }
.hero-badge-stars .star:nth-child(2) { animation-delay: 3.65s; }
.hero-badge-stars .star:nth-child(3) { animation-delay: 3.8s; }
.hero-badge-stars .star:nth-child(4) { animation-delay: 3.95s; }
.hero-badge-stars .star:nth-child(5) { animation-delay: 4.1s; }

.rrb-stars {
    display: inline-flex;
    gap: 3px;
}

.reviews.visible .rrb-stars .star {
    opacity: 0;
    transform: scale(0.3) rotate(-15deg);
    animation: starPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.reviews.visible .rrb-stars .star:nth-child(1) { animation-delay: 0.1s; }
.reviews.visible .rrb-stars .star:nth-child(2) { animation-delay: 0.25s; }
.reviews.visible .rrb-stars .star:nth-child(3) { animation-delay: 0.4s; }
.reviews.visible .rrb-stars .star:nth-child(4) { animation-delay: 0.55s; }
.reviews.visible .rrb-stars .star:nth-child(5) { animation-delay: 0.7s; }

@keyframes starPop {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.hero-badge strong {
    font-weight: 700;
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-light); /* Changed to white for contrast */
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Hero CTA Button */
.hero-cta-pulse {
    border-radius: 8px !important;
    padding: 16px 36px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    position: relative;
    animation: heroPulseGlow 2.5s ease-in-out infinite;
}

@keyframes heroPulseGlow {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
    50%  { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-icon {
    height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(10deg);
}

.section-title {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

/* Stats Section */
.stats {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-green);
    display: inline-block;
}

.stat-plus {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-desc {
    display: block;
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
    font-weight: 500;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

/* About */
.about {
    background-color: var(--bg-color);
}

.about-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.about-person-img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.about-text-content {
    flex: 1;
    font-size: 1.1rem;
    color: #555;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-text-content .section-header {
    align-items: flex-start;
}

.about-text-content .title-divider {
    margin-left: 0;
}

@media (max-width: 992px) {
    .about-split {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .about-text-content .section-header {
        align-items: center;
        text-align: center !important;
    }
    .about-text-content .title-divider {
        margin: 15px auto !important;
    }
    .about-text-content {
        align-items: center;
    }
    .about-text-content .btn {
        align-self: center !important;
    }
}

/* Gallery Carousel Section */
.gallery-carousel-section {
    padding: 80px 0 60px;
    background-color: var(--light-bg);
}

.gallery-carousel-root {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.gallery-carousel-stage {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y; /* Crucial for reliable swiping/pointer events on mobile */
    cursor: grab;
}
.gallery-carousel-stage:active {
    cursor: grabbing;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.gallery-carousel-slide {
    min-width: calc(100% / 3);
    flex: 0 0 calc(100% / 3);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.gallery-carousel-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.gallery-carousel-slide:hover img {
    transform: scale(1.02);
}





/* Gallery Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 10px 0; /* Add padding to prevent any box-shadow clipping */
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    background: rgba(4, 191, 138, 0.3);
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--primary-color);
    transform: scale(1.6);
    box-shadow: 0 0 6px rgba(4, 191, 138, 0.3);
}

.gallery-dot:hover {
    background: var(--primary-color);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-carousel-slide {
        min-width: 50%;
        flex: 0 0 50%;
    }
    .gallery-carousel-slide img {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .gallery-carousel-slide {
        min-width: 100%;
        flex: 0 0 100%;
    }
    .gallery-carousel-slide img {
        height: 300px;
    }
    .gallery-carousel-section {
        padding: 60px 0 40px;
    }
}

/* Services */
.services {
    background-color: var(--bg-color); /* Light background for contrast */
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-horizontal {
    background-color: var(--dark-green);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: grid;
    grid-template-columns: 40% 1fr;
    min-height: 340px;
    transition: var(--transition);
}

.service-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-img-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #1b2e1f 0%, #0a0a0a 70%);
    overflow: hidden;
    position: relative;
}

/* Concentric decorative rings pulsing in the background */
.service-img-horizontal::before,
.service-img-horizontal::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(107, 158, 115, 0.18);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    pointer-events: none;
}

.service-img-horizontal::before {
    width: 260px;
    height: 260px;
    animation: bgRingPulse 3.5s ease-in-out infinite;
}

.service-img-horizontal::after {
    width: 340px;
    height: 340px;
    animation: bgRingPulse 3.5s ease-in-out infinite 1.2s;
}

@keyframes bgRingPulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.95); }
    50%       { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}

/* Story-style circular image */
.service-story-ring {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--primary-color) 0%,
        #b8dcc0 30%,
        #d4b896 55%,
        #b8dcc0 80%,
        var(--primary-color) 100%
    );
    padding: 4px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    animation: storySpin 8s linear infinite;
    transition: transform 0.45s ease;
}

.service-card-horizontal:hover .service-story-ring {
    transform: scale(1.07);
    animation-play-state: paused;
}

@keyframes storySpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Counter-rotate the image so it stays upright */
.service-story-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid #0a0a0a;
    box-sizing: border-box;
    display: block;
    animation: storyImgCounter 8s linear infinite;
}

.service-card-horizontal:hover .service-story-img {
    animation-play-state: paused;
}

@keyframes storyImgCounter {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

.service-info-horizontal {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-title-horizontal {
    color: var(--text-light); /* Changed to white for contrast */
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-desc-horizontal {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-flex {
    align-self: center;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 14px 28px;
}

.whatsapp-icon-sm {
    font-size: 1.2rem;
}

.wa-icon-svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
}


/* ===== Reviews — Google Style ===== */
.reviews {
    background-color: #f2fbf8;
    color: #1a1a1a;
    padding: 90px 0;
    position: relative;
}

/* Cabeçalho */
.reviews-header {
    text-align: center;
    margin-bottom: 56px;
}

.reviews-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 16px 28px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.rrb-score {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.rrb-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.rrb-stars {
    color: #FBBC04;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    gap: 2px;
}

.rrb-count {
    font-size: 0.78rem;
    color: #5f6368;
    white-space: nowrap;
}

.rrb-google {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    border-left: 1px solid rgba(0,0,0,0.12);
    padding-left: 20px;
    margin-left: 4px;
    line-height: 1;
}

.reviews-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--dark-green);
    line-height: 1.2;
    margin-bottom: 14px;
}

.reviews-sub {
    font-size: 1rem;
    color: #5f6368;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Carousel root ── */
.rc-carousel-root {
    position: relative;
    padding-bottom: 60px;
}

/* Stage */
.rc-stage {
    overflow: hidden;
    padding: 20px 0 40px;
    cursor: grab;
    touch-action: pan-y;
}
.rc-stage:active { cursor: grabbing; }

/* Track */
.rc-track {
    display: flex;
    align-items: center;
    gap: 20px;
    will-change: transform;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

/* Card base — Google Material style */
.review-card {
    flex: 0 0 360px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    /* Inactive state */
    opacity: 0.45;
    transform: scale(0.87);
    transition: opacity 0.55s ease,
                transform 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.55s ease,
                border-color 0.55s ease;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* Remove aspas decorativas escuras — desnecessárias no novo estilo */
.review-card::before { display: none; }

/* Adjacente */
.review-card.rc-adjacent {
    opacity: 0.6;
    transform: scale(0.93);
}

/* Card ativo */
.review-card.rc-active {
    opacity: 1;
    transform: scale(1.03);
    border-color: rgba(4, 191, 138, 0.3);
    border-left: 3px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(4, 191, 138, 0.12),
                0 2px 12px rgba(0,0,0,0.08);
    cursor: default;
}

/* Cabeçalho do card */
.rc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.rc-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0;
}

.rc-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rc-info strong {
    font-size: 0.88rem;
    color: #1a1a1a;
    line-height: 1.3;
    font-weight: 600;
}

.rc-info span {
    font-size: 0.73rem;
    color: #80868b;
}

/* Google logo no canto — mais proeminente */
.rc-google-dot {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.rc-stars {
    color: #FBBC04;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Linha de data ao lado das estrelas */
.rc-stars::after {
    content: attr(data-date);
    font-size: 0.72rem;
    color: #80868b;
    letter-spacing: 0;
    margin-left: 8px;
    font-family: 'Outfit', sans-serif;
}

.rc-text {
    font-size: 0.9rem;
    color: #3c4043;
    line-height: 1.65;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* "Avaliado no Google" rodapé do card */
.rc-card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.rc-card-footer span {
    font-size: 0.72rem;
    color: #80868b;
}

/* ── Setas ── */
.rc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 20px));
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    color: #5f6368;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rc-arrow svg { width: 20px; height: 20px; }

.rc-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 16px rgba(4, 191, 138, 0.25);
}

.rc-arrow-prev { left: 0; }
.rc-arrow-next { right: 0; }

.rc-arrow-prev:hover { transform: translateY(calc(-50% - 20px)) translateX(-2px); }
.rc-arrow-next:hover { transform: translateY(calc(-50% - 20px)) translateX(2px); }

/* ── Indicador numérico ── */
.rc-counter {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-green);
    background: rgba(255, 255, 255, 0.92);
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    user-select: none;
    font-variant-numeric: tabular-nums;
}

.rc-text-empty {
    font-style: italic;
    color: #888;
}

@media (max-width: 560px) {
    .reviews-rating-badge { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .review-card { flex: 0 0 300px; padding: 20px 18px 18px; }
    .rc-arrow { display: none; }
}



/* Prints de Depoimentos — Premium Marquee */
.prints-depoimentos {
    background: linear-gradient(160deg, #071a12 0%, #04120c 60%, #041510 100%);
    padding: 90px 0 80px;
    overflow: hidden;
    position: relative;
}

.prints-depoimentos::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4, 191, 138, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.prints-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.prints-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--dark-green);
    border: 1px solid rgba(4, 191, 138, 0.35);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.prints-title {
    font-size: 3rem;
    color: #fff;
    line-height: 1.1;
    font-weight: 700;
}

.prints-title em {
    font-style: italic;
    color: var(--dark-green);
}

/* Marquee */
.marquee-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, #071a12 0%, transparent 100%);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, #071a12 0%, transparent 100%);
}

.marquee-row {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.marquee-left {
    animation: marquee-scroll-left 35s linear infinite;
}

.marquee-right {
    animation: marquee-scroll-right 35s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-track .print-item {
    width: 230px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.marquee-track .print-item:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 22px 55px rgba(4, 191, 138, 0.3);
}

.print-img {
    width: 100%;
    height: auto;
    display: block;
}

.prints-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* Team */
.team {
    background-color: var(--light-bg);
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-card {
    background-color: var(--dark-green);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    color: white;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.team-name {
    color: var(--text-light); /* Changed to white for contrast */
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.team-bio {
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Contact */
.contact {
    background-color: var(--bg-color);
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
}

.contact-list {
    list-style: none;
    margin-top: 30px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-list .icon {
    font-size: 1.5rem;
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 50%;
    color: var(--dark-green);
}

.contact-list strong {
    display: block;
    color: var(--dark-green);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-form-card {
    flex: 1;
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.contact-form-card p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--dark-green);
    box-shadow: 0 0 0 2px rgba(4, 191, 138, 0.2);
}

.w-100 {
    width: 100%;
}

.form-lgpd {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 16px;
    line-height: 1.5;
}

.form-success {
    display: none;
    margin-top: 16px;
    padding: 14px 20px;
    background: #e8faf3;
    border: 1px solid rgba(4, 191, 138, 0.3);
    border-radius: 8px;
    color: var(--dark-green);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.form-success.visible {
    display: block;
    animation: fadeInUp 0.4s ease;
}

/* FAQ */
.faq {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
    background-color: #050e08;
    color: rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
}

/* Grain no footer */
.footer-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

.footer-body {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.4fr;
    gap: 60px;
    padding-top: 80px;
    padding-bottom: 70px;
    position: relative;
    z-index: 1;
}

/* Coluna 1 — Marca */
.footer-logo {
    height: 52px;
    margin-bottom: 18px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-desc {
    font-size: 0.93rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    max-width: 300px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Colunas 2 e 3 — títulos */
.footer-col-title {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
    margin-bottom: 24px;
}

/* Coluna 2 — Navegação */
.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease;
    position: relative;
    display: inline-block;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-nav a:hover::after {
    width: 100%;
}

/* Coluna 3 — Contato */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-list svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.footer-cta {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.footer-cta:hover {
    color: #fff;
}

/* Barra inferior */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

.footer-credit a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--primary-color);
}

/* Footer responsivo */
@media (max-width: 992px) {
    .footer-body {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-body {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 50px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background-color: #25D366;
    height: 56px;
    min-width: 56px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    gap: 0px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    text-decoration: none;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(37, 211, 102, 0.45);
    animation: wa-pulse-ring 2.5s ease-out infinite;
    z-index: -1;
}

@keyframes wa-pulse-ring {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

.floating-whatsapp .wa-label {
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.3s ease, opacity 0.25s ease, margin 0.3s ease;
    letter-spacing: 0.01em;
    margin-left: 0;
}

.floating-whatsapp:hover {
    padding: 0 22px 0 18px;
    gap: 9px;
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp:hover .wa-label {
    max-width: 130px;
    opacity: 1;
    margin-left: 0;
}


/* Header btn-outline override - on white header */
.header .btn-outline {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(4, 191, 138, 0.2);
}

.header .btn-outline:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 191, 138, 0.3);
}

/* When header is scrolled (green), invert the button back */
.header.scrolled .btn-outline {
    background-color: #fff;
    border-color: #fff;
    color: var(--dark-green);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.header.scrolled .btn-outline:hover {
    background-color: #f0faf7;
    border-color: #f0faf7;
    color: var(--dark-green);
}


/* Hero CTA - white button on teal background */
.hero .btn-primary {
    background-color: #fff;
    color: var(--dark-green);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    border: none;
}

.hero .btn-primary:hover {
    background-color: #f0faf7;
    color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}


/* Service cards CTA - white button on teal card background */
.service-card-horizontal .btn-primary {
    background-color: #fff;
    color: var(--dark-green);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    border: none;
}

.service-card-horizontal .btn-primary:hover {
    background-color: #f0faf7;
    color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Team card CTA - same treatment */
.team-card .btn-secondary {
    background-color: #fff;
    color: var(--dark-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    font-weight: 700;
}

.team-card .btn-secondary:hover {
    background-color: #f0faf7;
    color: var(--dark-green);
}

/* =============================================
   MEDIA QUERIES — Responsividade Completa
   ============================================= */

/* --- Tablet largo (≤ 992px) --- */
@media (max-width: 992px) {
    section { padding: 60px 0; }

    /* Hero */
    .hero { margin-top: 90px; }

    /* About */
    .about-split { gap: 30px; }

    /* Gallery */
    .gallery-img-wrapper { min-width: 50%; flex: 1 0 50%; }

    /* Services */
    .service-card-horizontal { grid-template-columns: 1fr; grid-template-rows: 240px auto; min-height: unset; }
    .service-img-horizontal { width: 100%; }
    .service-story-ring { width: 160px; height: 160px; }
    .service-info-horizontal { width: 100%; padding: 24px 20px; }

    /* Contact */
    .contact-wrapper { flex-direction: column; gap: 30px; }

    /* Reviews */
    .depoimentos-wrapper { flex-direction: column; text-align: center; gap: 20px; }
    .trustindex-widget { flex-direction: column; padding: 20px 10px; gap: 15px; }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {
    /* Geral */
    section { padding: 50px 0; }

    /* Header */
    .header { top: 12px; width: 94%; border-radius: 40px; }
    .header-content { height: 62px; }
    .header-actions .btn { display: none; }

    /* Nav mobile */
    .desktop-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background-color: var(--dark-green);
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        border-radius: 20px;
        z-index: 999;
    }
    .desktop-nav .nav-links { flex-direction: column; gap: 20px; text-align: center; }
    .desktop-nav .nav-links a { color: #fff; font-size: 1rem; }
    .mobile-menu-toggle { display: flex; }

    /* Hero */
    .hero { margin-top: 80px; min-height: 100svh; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 28px; }
    .hero-badge { font-size: 0.85rem; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Gallery */
    .gallery-img-wrapper { min-width: 100%; flex: 1 0 100%; }
    .gallery-img { height: 240px; }

    /* Services */
    .service-card-horizontal { grid-template-rows: 220px auto; }
    .service-title-horizontal { font-size: 1.5rem; }
    .service-desc-horizontal { font-size: 0.95rem; }

    /* Reviews */
    .depoimentos-title { font-size: 1.6rem; }
    .trustindex-widget { max-width: 100%; }

    /* Depoimentos marquee */
    .prints-title { font-size: 2rem; }
    .marquee-fade-left, .marquee-fade-right { width: 80px; }
    .marquee-track .print-item { width: 180px; }

    /* Team */
    .team-card { width: 100%; max-width: 340px; }

    /* Contact */
    .contact-form-card { padding: 28px 20px; }
    .map-container { height: 260px !important; }

    /* FAQ */
    .faq-question { font-size: 0.98rem; }

    /* Instagram */
    .instagram-section { padding: 70px 0 60px; }
    .ig-top-row { flex-direction: column; align-items: stretch; gap: 20px; }
    .ig-btn-outline { width: 100%; justify-content: center; }
    .ig-cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        overflow-x: visible;
        gap: 18px;
        padding-bottom: 0;
    }
    .ig-embed-wrapper {
        width: 100%;
        min-width: 0;
        max-width: none;
        flex: 1 1 auto;
    }
    .ig-embed-wrapper .instagram-media {
        min-width: 0 !important;
        width: 100% !important;
    }

    /* Footer */
    .footer-body { grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 60px; padding-bottom: 50px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-desc { max-width: 100%; }
}

/* --- Mobile pequeno (≤ 480px) --- */
@media (max-width: 480px) {
    /* Geral */
    section { padding: 40px 0; }
    .container { padding: 0 16px; }

    /* Header */
    .header { top: 10px; width: 96%; }
    .header-content { height: 56px; }
    .logo { height: 38px; }

    /* Hero */
    .hero { margin-top: 70px; }
    .hero-title { font-size: 1.75rem; line-height: 1.15; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-cta-pulse { font-size: 0.95rem !important; padding: 14px 24px !important; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-number { font-size: 2.4rem; }
    .stat-suffix { font-size: 1.8rem; }
    .stat-label, .stat-desc { font-size: 0.85rem; }

    /* Section titles */
    .section-title { font-size: 1.7rem; }

    /* Services */
    .service-card-horizontal { grid-template-rows: 200px auto; }
    .service-info-horizontal { padding: 18px 16px; }
    .service-title-horizontal { font-size: 1.3rem; margin-bottom: 12px; }
    .service-desc-horizontal { font-size: 0.9rem; margin-bottom: 12px; }

    /* Reviews */
    .reviews { padding: 50px 0; }
    .depoimentos-title { font-size: 1.3rem; }
    .trustindex-widget { padding: 16px 8px; }

    /* Depoimentos marquee */
    .prints-title { font-size: 1.5rem; }
    .prints-eyebrow { font-size: 0.65rem; letter-spacing: 2px; }
    .marquee-fade-left, .marquee-fade-right { width: 50px; }
    .marquee-track .print-item { width: 150px; border-radius: 12px; }

    /* Contact */
    .contact-form-card { padding: 20px 16px; }
    .contact-form-card h3 { font-size: 1.4rem; }

    /* FAQ */
    .faq-question { font-size: 0.92rem; padding: 18px 0; }

    /* Instagram */
    .instagram-section { padding: 50px 0 40px; }
    .ig-section-num { font-size: 0.65rem; }
    .ig-cards-grid { gap: 14px; }
    .ig-embed-wrapper { min-width: 0; max-width: none; }
    .ig-bg-word { font-size: 52px; }

    /* Floating WhatsApp */
    .floating-whatsapp { bottom: 16px; right: 16px; height: 50px; min-width: 50px; }

    /* Footer */
    .footer-body { grid-template-columns: 1fr; gap: 36px; padding-top: 50px; padding-bottom: 40px; }
    .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

/* Instagram Section — Awwwards */
.instagram-section {
    padding: 120px 0 100px;
    background: #060f0b;
    overflow: hidden;
}

/* Big decorative background word */
.ig-bg-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 14vw, 200px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: rgba(255,255,255,0.025);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
    z-index: 0;
}

.ig-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Section number indicator */
.ig-section-num {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
    opacity: 0.8;
}

.ig-title-area h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
}

.ig-title-area h2 em {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-color);
}

/* Thin horizontal rule under title */
.ig-title-rule {
    width: 40px;
    height: 1.5px;
    background: var(--primary-color);
    margin-top: 20px;
    opacity: 0.7;
}

.ig-btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 11px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-bottom: 6px;
}

.ig-btn-outline:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* Cards grid */
.ig-cards-grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 12px;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

.ig-cards-grid::-webkit-scrollbar {
    display: none;
}

/* Staggered reveal + subtle tilt on hover */
.ig-embed-wrapper {
    flex: 0 0 auto;
    min-width: 320px;
    max-width: 360px;
    overflow: hidden;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease var(--delay, 0s),
                transform 0.7s ease var(--delay, 0s),
                box-shadow 0.4s ease;
    will-change: transform, opacity;
}

.ig-embed-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.ig-embed-wrapper:hover {
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    transform: translateY(-6px) scale(1.01);
}

.ig-embed-wrapper iframe {
    border-radius: 12px !important;
    width: 100% !important;
}

/* Keep old mock card styles as fallback */
.ig-mock-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ig-mock-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.ig-mock-header {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.ig-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ig-avatar-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 2px;
    overflow: hidden;
}

.ig-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    border: 1px solid #fff;
}

.ig-author-details {
    display: flex;
    flex-direction: column;
}

.ig-username {
    font-size: 0.85rem;
    font-weight: 600;
    color: #262626;
    line-height: 1;
    margin-bottom: 2px;
}

.ig-followers {
    font-size: 0.7rem;
    color: #8e8e8e;
}

.ig-follow-btn {
    background-color: #0095f6;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.2s ease;
}

.ig-follow-btn:hover {
    background-color: #1877f2;
}

.ig-img-wrap {
    aspect-ratio: 1;
    width: 100%;
    background: #fafafa;
    position: relative;
}

.ig-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ig-mock-footer {
    padding: 12px 15px;
    background: #fff;
}

.ig-more-link {
    color: #0095f6;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.ig-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.ig-actions-left {
    display: flex;
    gap: 15px;
}

.ig-icon-svg {
    font-size: 1.3rem;
    font-weight: 300;
    color: #262626;
    cursor: pointer;
    line-height: 1;
}

.ig-likes {
    font-size: 0.85rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 12px;
}

.ig-comment-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #efefef;
    padding-top: 12px;
}

.ig-comment-text {
    font-size: 0.85rem;
    color: #8e8e8e;
}

.ig-camera {
    font-size: 1.1rem;
    color: #262626;
}

/* Instagram — breakpoints dedicados */
@media (max-width: 768px) {
    .ig-embed-wrapper { min-width: 280px; max-width: 320px; }
}

/* ===== Awwwards Touches ===== */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--primary-color);
    z-index: 100001;
    transition: width 0.08s linear;
    pointer-events: none;
}

/* cursor-dot e cursor-ring removidos — cursor nativo */
.cursor-dot, .cursor-ring { display: none; }

/* Grain texture on dark sections */
.prints-depoimentos::after,
.reviews::after,
.instagram-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
}

.prints-depoimentos { position: relative; }
.reviews { position: relative; }
.instagram-section { position: relative; overflow: hidden; }

/* Instagram mobile fix */
@media (max-width: 768px) {
    .hero {
        align-items: flex-end;
        padding-bottom: 28vh;
    }
    .hero-content {
        margin-top: 0;
    }
    
    .instagram-section {
        padding: 72px 0 56px;
    }

    .ig-top-row {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        margin-bottom: 32px;
    }

    .ig-title-area {
        width: 100%;
    }

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

    .ig-cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .ig-embed-wrapper {
        width: 100%;
        min-width: 0;
        max-width: none;
        flex: 1 1 auto;
    }

    .ig-embed-wrapper iframe,
    .ig-embed-wrapper .instagram-media {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
}

@media (max-width: 480px) {
    .instagram-section {
        padding: 52px 0 40px;
    }

    .ig-bg-word {
        font-size: 52px;
    }

    .ig-top-row {
        margin-bottom: 24px;
    }

    .ig-title-area h2 {
        font-size: 2rem;
    }

    .ig-cards-grid {
        gap: 14px;
    }
}
