@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Cores - Design System de Bem-Estar (Sem Roxo/Violeta) */
    --primary: #1F3F32;          /* Verde Floresta Profundo */
    --primary-light: #2D5B47;    /* Verde Sálvia/Esmeralda */
    --primary-ultra-light: #EBF2EE; /* Fundo verde super suave */
    --secondary: #D4A373;        /* Ouro Velho/Bege Dourado Accent */
    --secondary-hover: #C59362;
    --accent: #E07A5F;           /* Terracota/Laranja Quente para CTAs */
    --accent-hover: #C9664D;
    --background: #FCFAF7;       /* Creme Suave Calmo */
    --surface: #F5EFE6;          /* Superfície de cartão quente */
    --surface-glass: rgba(252, 250, 247, 0.75);
    
    --text: #2B2D2F;             /* Grafite Escuro */
    --text-muted: #646E68;       /* Grafite com leve tom esverdeado */
    --white: #FFFFFF;
    --border: rgba(31, 63, 50, 0.08);
    --border-glass: rgba(255, 255, 255, 0.6);
    
    /* Sombras */
    --shadow-sm: 0 4px 12px rgba(31, 63, 50, 0.03);
    --shadow-md: 0 12px 24px rgba(31, 63, 50, 0.06);
    --shadow-lg: 0 20px 40px rgba(31, 63, 50, 0.1);
    
    /* Fontes */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transições */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.text-center { text-align: center; }

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-ultra-light);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(224, 122, 95, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(224, 122, 95, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--primary-ultra-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    background-color: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-glass);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container img {
    height: 64px;
    transition: var(--transition-normal);
    mix-blend-mode: multiply;
}

.header.scrolled .logo-container img {
    height: 52px;
}

.footer-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: invert(1);
    mix-blend-mode: screen;
}

/* Fallback para logo texto caso o PDF não carregue */
.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}

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

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at top right, rgba(45, 91, 71, 0.05), transparent 40%),
                radial-gradient(circle at bottom left, rgba(212, 163, 115, 0.05), transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content h1 span {
    color: var(--secondary);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-benefits {
    display: flex;
    gap: 24px;
}

.hero-benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.hero-benefit-item svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-glass);
}

.hero-image-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* Floating overlay cards */
.floating-card {
    position: absolute;
    background-color: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-card-1 {
    bottom: 30px;
    left: -20px;
    animation: float 6s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 120px;
    right: -20px;
    animation: float 6s ease-in-out infinite 3s;
}

.icon-box-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-ultra-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

.floating-card-text p {
    font-size: 12px;
    color: var(--text-muted);
}

.floating-card-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

/* --- Social Proof Section --- */
.stats {
    padding: 40px 0;
    background-color: var(--primary-ultra-light);
    border-top: 1px solid rgba(31, 63, 50, 0.04);
    border-bottom: 1px solid rgba(31, 63, 50, 0.04);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Pain Points / Sinais de Alerta --- */
.pain-points {
    background-color: var(--background);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pain-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 63, 50, 0.15);
}

.pain-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background-color: #FDF2F0; /* Soft warm red/pink for alert */
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.pain-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.pain-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* --- Solution Section --- */
.solution {
    background-color: var(--white);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.solution-image-container {
    position: relative;
}

.solution-img-main {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.solution-feature-item {
    display: flex;
    gap: 16px;
}

.icon-box-medium {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--primary-ultra-light);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-feature-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.solution-feature-text p {
    color: var(--text-muted);
    font-size: 14px;
}

/* --- Bio Section --- */
.bio {
    background-color: var(--background);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.bio-image-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.bio-image-card img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.bio-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.bio-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 24px;
}

.bio-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.bio-credentials {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bio-credentials li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--primary);
}

.bio-credentials svg {
    color: var(--secondary);
}

/* --- Focus Areas / Pilates Types --- */
.focus-areas {
    background-color: var(--white);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.focus-card {
    background-color: var(--background);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.focus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.focus-card-img {
    height: 240px;
    overflow: hidden;
}

.focus-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-slow);
}

.focus-card:hover .focus-card-img img {
    transform: scale(1.05);
}

.focus-card-body {
    padding: 28px;
}

.focus-card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.focus-card-body p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

/* --- Offer / Aula Experimental Section --- */
.offer {
    background-color: var(--primary-ultra-light);
    position: relative;
    overflow: hidden;
}

.offer-card {
    background-color: var(--white);
    border-radius: 32px;
    padding: 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.offer-badge {
    background-color: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

.offer-content h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 16px;
}

.offer-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
}

.offer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.offer-list svg {
    color: var(--primary-light);
}

.offer-action {
    text-align: center;
    background-color: var(--background);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid var(--border);
}

.offer-action h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.offer-action p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.offer-action .btn {
    width: 100%;
}

/* --- Testimonials --- */
.testimonials {
    background-color: var(--background);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-ultra-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-light);
    font-size: 14px;
}

.author-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* --- FAQ Section --- */
.faq {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    padding-right: 16px;
}

.faq-icon-wrapper {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-inner {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 15px;
}

.faq-item.active {
    border-color: rgba(31, 63, 50, 0.25);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon-wrapper {
    transform: rotate(45deg);
    background-color: var(--primary-light);
    color: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

/* --- Footer --- */
.footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-info .logo-text {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-info .logo-text span {
    color: var(--secondary);
}

.footer-info p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-nav h4, .footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    font-size: 14px;
}

.footer-nav-list a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.footer-contact-list svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* --- Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(224, 122, 95, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(224, 122, 95, 0); }
    100% { box-shadow: 0 0 0 0 rgba(224, 122, 95, 0); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Media Queries (Responsividade) --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-benefits {
        justify-content: center;
    }
    .hero-image-card img {
        height: 460px;
    }
    .floating-card-1 {
        left: 20px;
    }
    .floating-card-2 {
        right: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .pain-grid, .focus-grid, .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-grid, .bio-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .solution-image-container, .bio-image-card {
        order: 2;
    }
    .solution-img-main, .bio-image-card img {
        height: 400px;
    }
    
    .offer-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    .offer-action {
        margin-top: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-contact {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none; /* Seria controlado via JS */
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pain-grid, .focus-grid, .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-contact {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    /* Menu mobile expandido */
    .nav-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border);
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .hero-benefits {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* --- Novas Estilizações de Mídia e Seções --- */

/* Hero Video */
.hero-video {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(31, 63, 50, 0.05), rgba(31, 63, 50, 0.2));
    pointer-events: none;
}

.solution-video-iframe {
    width: 100%;
    height: 600px;
    border-radius: 24px;
    border: none;
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
}

/* Google Reviews Grid (Testimonials) */
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.google-review-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.google-review-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.google-review-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 63, 50, 0.15);
}

@media (max-width: 1024px) {
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .google-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Elementos Interativos Dinâmicos --- */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    width: 0%;
    z-index: 2001;
    transition: width 0.1s ease;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 63, 50, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 44px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
    user-select: none;
}

.lightbox-close:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition-normal);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


