/* ============================================
   CSS Variables - Theme Colors
   ============================================ */
:root {
    --primary-blue: #000066;
    --primary-blue-dark: #000044;
    --primary-blue-light: #1a1a8c;
    --realize-cyan: #51CFF7;
    --deep-navy: #020366;
    --whatsapp-green: #25D366;
    --whatsapp-green-dark: #1da851;
    --whatsapp-green-hover: #2ee576;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --text-dark: #212529;
    --text-gray: #6c757d;
    --text-light: #ffffff;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* ============================================
   Header / Navbar
   ============================================ */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 47px;
    z-index: 1000;
    padding-top: 0;
}

.header-banner {
    background-color: #EE1D29;
    color: #ffffff;
    text-align: center;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
}

.header-banner p {
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
    gap: 2rem;
}

.logo h1 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

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

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

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

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

.btn-cta-nav {
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cta-nav:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* Mobile Menu Active State */
@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-md);
        padding: 1rem;
        gap: 0;
    }
    
    .nav-links.active li {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links.active li:last-child {
        border-bottom: none;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('images/backgrounddesktop.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    color: var(--text-light);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin-left: 5%;
    text-align: left;
}

.hero-scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 650px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.9);
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

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

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

.hero-badge-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: rgba(2, 3, 102, 0.3);
    border: 2px solid var(--realize-cyan);
    color: var(--realize-cyan);
    padding: 0.625rem 1.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
    overflow: hidden;
    z-index: 1;
    text-shadow: 0 0 8px rgba(81, 207, 247, 0.4);
    box-shadow: 0 0 12px rgba(81, 207, 247, 0.25), inset 0 0 8px rgba(81, 207, 247, 0.1);
}

.hero-badge-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(81, 207, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.btn-contract {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    gap: 0.75rem;
    position: absolute;
    left: 25px;
    top: 586px;
    white-space: nowrap;
    box-sizing: border-box;
}

.btn-contract:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-contract span {
    white-space: nowrap;
}

.btn-contract .whatsapp-icon {
    width: 1.5em;
    height: 1.5em;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-headline .text-accent {
    color: var(--realize-cyan);
    background: linear-gradient(135deg, #51CFF7 0%, #7DE2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .hero-headline .text-accent {
        color: #51CFF7;
        -webkit-text-fill-color: #51CFF7;
        text-shadow: 0 0 12px rgba(81, 207, 247, 0.6), 0 2px 8px rgba(81, 207, 247, 0.4);
    }
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-hero {
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.badge-icon {
    font-size: 1.25rem;
}

/* ============================================
   Simulation Section (formerly Authority Strip)
   ============================================ */
.authority-strip.simulation-section {
    background-color: var(--bg-light);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.simulation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 1.5rem;
}

.simulation-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.simulation-intro {
    font-size: 1.125rem;
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
}

.simulation-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.simulation-form-inline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.currency-input-wrapper-inline {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    background-color: var(--bg-white);
    transition: var(--transition);
}

.currency-input-wrapper-inline:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 0, 66, 0.1);
}

/* Currency symbol - estilos base */
.currency-symbol {
    font-weight: 600;
    color: var(--text-gray);
}

/* Currency symbol no modal */
.currency-input-wrapper .currency-symbol {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

/* Currency symbol no formulário inline */
.currency-input-wrapper-inline .currency-symbol {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.currency-input-inline {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
}

.currency-input-inline::placeholder {
    color: var(--text-gray);
    opacity: 0.5;
}

.btn-simulate {
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.btn-simulate:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.simulation-disclaimer {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

/* ============================================
   How it Works
   ============================================ */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

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

.step-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.step-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    min-width: 60px;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-gray);
}

/* ============================================
   Benefits
   ============================================ */
.benefits {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

/* Desktop: força 4 colunas */
@media (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: var(--transition);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 102, 0.1));
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-4px);
    color: var(--primary-blue-dark);
}

.benefit-card:hover .benefit-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 102, 0.2));
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   Eligibility
   ============================================ */
.eligibility {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.eligibility-list {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.eligibility-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.check-icon {
    color: var(--whatsapp-green);
    font-size: 1.5rem;
    font-weight: 700;
}

.eligibility-item p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
}

.btn-cta-secondary {
    display: block;
    margin: 0 auto;
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-cta-secondary:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-blue);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.9;
}

.footer-contact {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-whatsapp:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer-whatsapp-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-instagram:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.footer-instagram svg {
    width: 28px;
    height: 28px;
}

.footer-company {
    margin-bottom: 1.5rem;
}

.footer-company p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ============================================
   Modal
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal[aria-hidden="false"] {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    z-index: 2001;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    left: auto;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    text-align: center;
}

.simulation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.currency-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.currency-input-wrapper:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 0, 66, 0.1);
}

.currency-input-wrapper .currency-symbol {
    font-weight: 600;
    color: var(--text-gray);
    margin-right: 0.5rem;
}

.currency-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp::before {
    content: '💬';
    font-size: 1.25rem;
}

/* ============================================
   Responsive Design - Mobile First
   ============================================ */

/* Tablet and below */
@media (max-width: 768px) {
    .header {
        background-color: transparent;
        box-shadow: none;
        padding-top: 0;
        position: static;
        top: auto;
    }

    .nav-links {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    .navbar {
        display: none;
    }

    .hero {
        background-image: url('images/backgroundmobile.png');
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        align-items: flex-start;
        justify-content: center;
        padding-top: 47px;
        padding-bottom: 0;
        margin-top: 0;
        position: relative;
        display: flex;
        overflow: hidden;
    }

    .hero-scroll-indicator {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: -1.25rem;
        left: 50%;
        transform: translateX(-50%);
        width: 32px;
        height: 32px;
        color: rgba(255, 255, 255, 0.9);
        z-index: 10;
        animation: scrollBounce 2s ease-in-out infinite;
    }

    .hero-scroll-indicator svg {
        width: 100%;
        height: 100%;
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    }

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

    /* Ground shadow for workers - anchors them at bottom */
    .hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 120px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
        pointer-events: none;
        z-index: 1;
    }

    .hero-content {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-top: clamp(0.5rem, 2vh, 1rem);
        position: relative;
        z-index: 2;
    }

    .hero-badge-text {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background-color: rgba(2, 3, 102, 0.3);
        border: 2px solid var(--realize-cyan);
        color: var(--realize-cyan);
        padding: clamp(0.5rem, 1.5vw, 0.625rem) clamp(1rem, 3vw, 1.25rem);
        border-radius: 999px;
        font-size: clamp(0.75rem, 2vw, 1rem);
        line-height: 1.3;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 1rem;
        width: fit-content;
        max-width: 92vw;
        overflow: hidden;
        z-index: 1;
        text-shadow: 0 0 8px rgba(81, 207, 247, 0.4);
        box-shadow: 0 0 12px rgba(81, 207, 247, 0.25), inset 0 0 8px rgba(81, 207, 247, 0.1);
    }

    .hero-badge-text::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(81, 207, 247, 0.15) 0%, transparent 70%);
        pointer-events: none;
        z-index: -1;
    }

    .hero-headline {
        font-size: clamp(3rem, 9.5vw, 4.5rem) !important;
        font-weight: 900 !important;
        margin-bottom: clamp(0.75rem, 2vh, 1.25rem);
        line-height: 1.1 !important;
        letter-spacing: -0.03em;
        text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.1em;
    }

    .hero-headline .headline-line {
        display: block;
        width: 100%;
        text-align: center;
    }

    .hero-headline .text-accent {
        color: var(--realize-cyan);
        background: linear-gradient(135deg, #51CFF7 0%, #7DE2FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: block;
        width: 100%;
    }

    /* Fallback for browsers that don't support background-clip */
    @supports not (-webkit-background-clip: text) {
        .hero-headline .text-accent {
            color: #51CFF7;
            -webkit-text-fill-color: #51CFF7;
            text-shadow: 0 0 12px rgba(81, 207, 247, 0.6), 0 2px 8px rgba(81, 207, 247, 0.4);
        }
    }

    .hero-subheadline {
        font-size: clamp(1.1rem, 3.5vw, 1.6rem);
        font-weight: 500;
        margin-bottom: 1.25rem;
        line-height: 1.5;
        opacity: 0.95;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        max-width: 100%;
        text-align: center;
        padding: 0 clamp(0.5rem, 2vw, 1rem);
    }

    .btn-contract {
        background-color: #25D366;
        color: var(--text-light);
        border: none;
        padding: 1rem 2rem;
        border-radius: var(--radius);
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        margin-top: 0;
        margin-bottom: 0;
        width: auto;
        margin-left: auto;
        margin-right: auto;
        position: absolute;
        bottom: 0.25rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .btn-contract:hover {
        background-color: #2ee576;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    .btn-contract .whatsapp-icon {
        width: 1.5em;
        height: 1.5em;
        object-fit: contain;
        display: block;
    }

    .hero-cta-mobile {
        background-color: var(--bg-white);
        padding: 2rem 1rem;
        text-align: center;
        width: 100%;
    }

    .hero-cta-mobile .btn-hero {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .authority-strip.simulation-section {
        padding: 2.5rem 1rem;
        margin-top: 0;
        background-color: var(--bg-white);
    }

    .simulation-content {
        gap: 1.25rem;
    }

    .simulation-icon {
        width: 64px;
        height: 64px;
    }

    .simulation-intro {
        font-size: 1rem;
    }

    .simulation-title {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
    }

    .simulation-form-inline {
        max-width: 100%;
    }

    .currency-input-wrapper-inline {
        padding: 0.875rem 1rem;
    }

    .currency-symbol {
        font-size: 1.125rem;
    }

    .currency-input-inline {
        font-size: 1.25rem;
    }

    .btn-simulate {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .simulation-disclaimer {
        font-size: 0.8125rem;
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .authority-items {
        flex-direction: column;
        gap: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }
}

/* Mobile - Small devices (320px - 480px) */
@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        padding-top: 47px;
        padding-bottom: 3rem;
    }

    .hero-content {
        max-width: 92%;
        padding-top: 0.25rem;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 8.5vw, 3.75rem) !important;
        margin-bottom: 0.75rem;
    }

    .hero-subheadline {
        font-size: clamp(1rem, 3vw, 1.3rem) !important;
    }

    .hero-subheadline {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        line-height: 1.4;
    }

    .hero-cta-mobile {
        padding: 1.5rem 1rem;
    }

    .hero-cta-mobile .btn-hero {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
/* Animação elegante e suave para o botão WhatsApp */
@keyframes elegantFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

.whatsapp-float.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
    animation: elegantFloat 3s ease-in-out infinite;
}

.whatsapp-float.visible:hover {
    background-color: var(--whatsapp-green-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Desktop - sempre visível */
@media (min-width: 769px) {
    .whatsapp-float {
        opacity: 1;
        transform: scale(1);
        pointer-events: all;
        bottom: 2rem;
        right: 2rem;
        width: 70px;
        height: 70px;
    }
    
    .whatsapp-float img {
        width: 40px;
        height: 40px;
    }
}

/* Mobile - ajustes */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1rem;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float img {
        width: 32px;
        height: 32px;
    }
}

/* Mobile - Medium devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }

    .hero-content {
        max-width: 90%;
    }

    .hero-headline {
        font-size: clamp(3.5rem, 11vw, 5rem) !important;
    }

    .hero-subheadline {
        font-size: clamp(1.25rem, 4vw, 1.6rem) !important;
    }
}

/* Telas maiores de mobile (600px - 768px) */
@media (min-width: 600px) and (max-width: 768px) {
    .hero-headline {
        font-size: clamp(4rem, 12vw, 5.5rem) !important;
    }
    
    .hero-subheadline {
        font-size: clamp(1.3rem, 4.5vw, 1.75rem) !important;
    }
}
