/* Variables & Reset */
:root {
    --primary-gold: #C5A02B;
    --text-white: #FFFFFF;
    --text-grey: #A0A0A0;
    --bg-color: #000000;
    --font-heading: 'Prata', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 2147483647 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease; /* No opacity transition */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    opacity: 1 !important;
    visibility: visible !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebea5;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

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

/* Pulse Animation for WhatsApp Button */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}


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

ul {
    list-style: none;
}

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-zoom.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Header */
#main-header {
    height: 120px;
    display: flex;
    align-items: center;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2147483647 !important;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    opacity: 1 !important;
    visibility: visible !important;
}

#main-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    position: relative;
}

.logo img {
    height: 85px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 3.2rem;
}

.nav-list a {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.nav-list a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.mobile-only-cta {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-white {
    background-color: var(--text-white);
    color: #000;
}

.btn-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    background-color: var(--primary-gold);
    color: white;
}

.btn-green {
    background-color: #25D366 !important;
    color: white !important;
}

.btn-green:hover {
    transform: translateY(-5px);
    background-color: #1eb356 !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3) !important;
}

/* Mobile Toggle & Menu Header */
.mobile-menu-header {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}
}

.btn-cta-header {
    background-color: #25D366; /* Match btn-green */
    color: #fff !important;
    font-weight: 600;
    padding: 1rem 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-cta-header:hover {
    background-color: #1eb356 !important;
    color: #fff !important;
    transform: translateY(-3px);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.container-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-title .highlight {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-white);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-highlight {
    color: var(--primary-gold);
    font-weight: 400;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-footer-text {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-grey);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: inline-block;
}

.hero-image img {
    max-height: 85vh;
    filter: drop-shadow(0 0 50px rgba(197, 160, 43, 0.15));
}

/* Sobre Section */
#sobre {
    padding: 120px 0;
    text-align: center;
    background-color: #0a0a0a;
}

.container-sobre {
    max-width: 850px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.sobre-text p {
    font-size: 1.15rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Pilares Section */
#pilares {
    padding: 120px 0;
    background-color: var(--bg-color);
}

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

.section-header {
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin-top: 1rem;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pilar-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pilar-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 15px rgba(197, 160, 43, 0.1);
}

.pilar-icon {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.pilar-card:hover .pilar-icon {
    transform: scale(1.1);
}

.pilar-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.pilar-text {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.8;
}

/* Soluções Intro */
#solucoes-intro {
    padding: 140px 0;
    text-align: center;
}


.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 3.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Atuação Section */
#atuacao {
    padding: 100px 0;
    background-color: var(--bg-color);
}

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

.atuacao-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.atuacao-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 43, 0.3);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.atuacao-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(197, 160, 43, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.atuacao-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 20px rgba(197, 160, 43, 0.2);
}

.atuacao-card:hover::after {
    opacity: 1;
}

.atuacao-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.atuacao-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.atuacao-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(197, 160, 43, 0.3));
}

.atuacao-card:hover .atuacao-icon {
    transform: scale(1.1) rotate(5deg);
}

.atuacao-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-white);
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.atuacao-text {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.atuacao-list {
    margin: 0 0 2.5rem 0;
    padding: 0;
}

.atuacao-list li {
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.atuacao-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background-color: var(--primary-gold);
    border-radius: 50%;
}

.btn-atuacao {
    width: 100%;
    margin-top: auto;
    background-color: var(--text-white) !important;
    color: #000 !important;
    font-weight: 500;
}

.btn-atuacao:hover {
    background-color: var(--primary-gold) !important;
    color: var(--text-white) !important;
}

/* Icon Entrance Animation Reset (optional, keeping for life) */
.atuacao-card.revealed .atuacao-icon {
    animation: iconEntrance 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes iconEntrance {
    0% { transform: scale(0) rotate(-10deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Idealizadoras Section */
#idealizadoras {
    padding: 120px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 6rem;
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 2rem;
}

.profile-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    margin-bottom: 2.5rem;
    position: relative;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 0 25px rgba(197, 160, 43, 0.2);
    transition: var(--transition);
}

/* Enrichment: Inner Border and Glow */
.profile-img::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 2;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
}

/* Specialized Animations for Áreas de Atuação */
.reveal-atuacao {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-atuacao.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Framing Adjustments */
.img-luciana {
    object-position: 75% 20%;
}

.img-luciane {
    object-position: 65% 15%;
}

.profile-card:hover .profile-img {
    transform: scale(1.05);
    box-shadow: 0 0 45px rgba(197, 160, 43, 0.4);
}

.profile-card:hover .profile-img img {
    filter: brightness(1.1);
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.profile-role {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Enrichment: Divider */
.profile-role::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-gold);
    margin: 1.5rem auto;
}

.profile-bio {
    font-size: 1rem;
    opacity: 0.75;
    line-height: 1.8;
    max-width: 500px;
}

/* FAQ Section */
#faq {
    padding: 120px 0;
    background-color: #050505;
}

.faq-list {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.8rem 0;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* CTA Final & Magic Logo Animation */
#cta-final {
    padding: 160px 0;
    text-align: center;
    background: radial-gradient(circle at center, #111 0%, #000 70%);
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    max-width: 320px;
    margin-bottom: 4rem;
}

.logo-wrapper img {
    width: 100%;
    z-index: 2;
    position: relative;
}

.light-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    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);
    z-index: 3;
}

.revealed .light-sweep {
    animation: sweep 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(197, 160, 43, 0.2) 0%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 2s ease;
}

.revealed .logo-glow {
    opacity: 1;
    animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes sweep {
    0% { left: -100%; }
    30% { left: 200%; }
    100% { left: 200%; }
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
}

/* Footer */
#main-footer {
    padding: 80px 0 40px;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 250px;
}

.footer-title {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-links, .footer-info {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-info li {
    margin-bottom: 0.8rem;
}

.footer-links a, .footer-info a {
    font-size: 0.9rem;
    color: var(--text-white);
    opacity: 0.7;
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover, .footer-info a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-tagline {
        margin: 0 auto;
    }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .atuacao-grid, .pilares-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3rem; }
    .profiles-grid { gap: 2rem; }
    .profile-img { width: 220px; height: 220px; }
}

@media (max-width: 768px) {
    /* Header Mobile Refinement */
    #main-header {
        height: 90px;
    }

    .container-header {
        max-width: 95%;
    }

    .logo img {
        height: 60px;
    }

    /* Mobile Menu Overlay Redesign */
    .mobile-menu-header {
        position: absolute;
        top: 20px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
        z-index: 10;
    }

    .back-btn {
        background: none;
        border: 1px solid rgba(255,255,255,0.3);
        color: var(--text-white);
        padding: 0.8rem 1.2rem;
        border-radius: 8px;
        font-family: var(--font-body);
        font-size: 0.9rem;
        cursor: pointer;
    }

    .menu-title {
        color: var(--primary-gold);
        font-family: var(--font-heading);
        font-size: 1.1rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .menu-toggle {
        display: block;
    }

    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99999;
        padding-top: 80px;
    }

    #nav-menu.active {
        right: 0;
    }

    .nav-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem !important;
        width: 90%;
        margin: 0 auto;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li a {
        display: flex !important;
        align-items: center;
        justify-content: center;
        height: 100px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        font-size: 1rem !important;
        text-align: center;
        padding: 1rem;
        transition: all 0.3s ease;
    }

    .nav-list li a:active {
        background: var(--primary-gold);
        border-color: var(--primary-gold);
        color: white;
    }

    .nav-list li.mobile-only-cta {
        grid-column: span 2;
    }

    .nav-list li.mobile-only-cta a {
        height: 60px;
        background: #25D366;
        color: white;
        font-weight: 600;
    }

    .btn-cta-header {
        display: block; /* Ensure it's not hidden if media query logic was broad */
    }

    @media (max-width: 768px) {
        .btn-cta-header {
            display: none; /* Only hide in the mobile layout itself */
        }
    }


    /* Global Spacing Mobile */
    section {
        padding: 60px 0 !important;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    /* Hero Mobile */
    #hero {
        padding-top: 100px;
        text-align: center;
    }

    .container-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }


    .hero-btns .btn-white {
        width: 100%;
        max-width: 280px;
    }

    .intro-btns {
        flex-direction: row !important;
        justify-content: center;
        gap: 1rem;
    }

    .intro-btns .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }


    .hero-image img {
        max-height: 50vh;
    }

    /* Grid Stacking */
    .atuacao-grid, .pilares-grid, .profiles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    /* Pilares Mobile */
    .pilar-card {
        padding: 2.5rem 2rem;
    }

    /* Atuação Mobile */
    .atuacao-card {
        padding: 2rem;
    }

    /* Atuação Mobile Pattern Sync */
    .atuacao-header {
        justify-content: flex-start;
        text-align: left;
        gap: 1.5rem;
    }

    .atuacao-icon {
        width: 60px;
        flex-shrink: 0;
    }

    .atuacao-text, .atuacao-list {
        text-align: left;
    }

    .atuacao-list li {
        padding-left: 2rem;
    }

    .atuacao-list li::before {
        display: block;
    }


    /* Idealizadoras Mobile */
    .profile-img {
        width: 180px;
        height: 180px;
    }

    .profile-name {
        font-size: 1.8rem;
    }

    .profile-bio {
        font-size: 0.95rem;
    }

    /* FAQ Mobile */
    .faq-question {
        font-size: 1.1rem;
        padding: 1.5rem 0;
    }

    /* CTA Final Mobile */
    #cta-final {
        padding: 80px 0;
    }

    .logo-wrapper {
        max-width: 200px;
        margin-bottom: 2.5rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

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

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}
