:root {
    --primary: #00f2ff;
    --primary-dark: #00c2cc;
    --secondary: #39ff14;
    --bg-dark: #0a0f18;
    --bg-lighter: #121927;
    --text-white: #ffffff;
    --text-muted: #a0aec0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --cemig-blue: #006eff;
    --cemig-blue-light: #4da6ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    /* Reduced from 2rem for more space on small screens */
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

section {
    scroll-margin-top: 120px;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 15, 24, 0.9);
    /* Slightly more opaque for better legibility */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    color: var(--primary);
    width: 28px;
    height: 28px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.2);
}




.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.5rem 3.5rem;
    font-size: 1.25rem;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hero-text h1 {
    font-size: 3.4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text h1 span {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-subhint {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
    text-align: center;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    overflow: visible;
}

.hero-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

.hero-stats-card {
    position: absolute;
    bottom: -20px;
    right: 0;
    /* Changed from -30px to prevent overflow */
    display: flex;
    gap: 2rem;
    /* Reduced from 3rem */
    padding: 1.5rem;
    /* Reduced padding */
    animation: floating 6s ease-in-out infinite;
    z-index: 10;
}

@media (max-width: 500px) {
    .hero-stats-card {
        right: 1.5rem;
        left: 1.5rem;
        bottom: -20px;
        /* Adjusted to be higher up */
        gap: 1rem;
        justify-content: center;
        padding: 1rem;
        /* Smaller padding */
        text-align: center;
    }

    .hero-stats-card .stat-value {
        font-size: 1.8rem;
        /* Smaller font */
    }

    .hero-stats-card .stat-label {
        font-size: 0.75rem;
    }

    .hero-stats-card .stat-item {
        align-items: center;
    }
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    background: var(--glass-border);
}

.hero-gradient {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.12) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    /* Ensure it doesn't block clicks */
}

@media (max-width: 768px) {
    .hero-gradient {
        width: 300px;
        height: 300px;
        right: 0;
        top: 0;
    }
}

/* Pain Section */
.pain-section {
    padding: 2rem 0;
    background: #070a10;
}

.pain-container {
    display: block;
}



.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header h2 span {
    color: #ff4d4d;
}

.inflation-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.inflation-text strong {
    color: var(--text-white);
    font-weight: 700;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 968px) {
    .pain-container {
        flex-direction: column;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }
}

.pain-item {
    padding: 2rem;
    background: var(--bg-lighter);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    text-align: center;
}

.pain-item:hover {
    border-color: rgba(255, 77, 77, 0.3);
    transform: translateY(-5px);
}

.pain-icon {
    width: 32px;
    height: 32px;
    color: #ff4d4d;
    margin: 0 auto 1.25rem;
}

.pain-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.pain-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Solution Section */
.solution-section {
    padding: 2rem 0;
}

.solution-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solution-text h2 span {
    color: var(--primary);
}

.roi-formula-card {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(57, 255, 20, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(57, 255, 20, 0.1);
}

.roi-formula-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.formula {
    font-size: 2rem;
    margin: 1.5rem 0;
    text-align: center;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.solution-list li i {
    color: var(--secondary);
    /* Green Check */
    width: 24px;
    height: 24px;
}

.roi-visual-container {
    position: relative;
    width: 100%;
}

.roi-img {
    width: 100%;
    border-radius: 30px;
    opacity: 0.6;
    filter: blur(2px);
}

.comparison-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* Increased for mobile from 80% */
    height: 320px;
    /* Reduced from 350px */
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 1.5rem;
    /* Reduced padding */
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 480px) {
    .comparison-card {
        height: 280px;
        padding: 1rem;
    }

    .bar-container {
        height: 140px !important;
        width: 45px !important;
    }

    .savings-badge {
        font-size: 0.9rem !important;
        top: 1rem !important;
        right: 1rem !important;
    }
}

.comp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 80px;
}

.bar-container {
    width: 60px;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
}

.bar {
    width: 100%;
    border-radius: 10px;
    transition: height 1s ease-out;
}

.before .bar {
    background: linear-gradient(to top, #8a0303, #ff0000);
}

.after .bar {
    background: linear-gradient(to top, var(--secondary), var(--primary));
}

.savings-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Differentials */
.differentials-section {
    padding: 2rem 0;
    background: #070a10;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

@media (max-width: 968px) {
    .diff-grid {
        grid-template-columns: 1fr;
    }
}

.diff-card {
    padding: 3rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: var(--transition);
}

.diff-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.diff-icon-bg {
    width: 64px;
    height: 64px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.diff-icon-bg i {
    width: 32px;
    height: 32px;
}

.diff-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.diff-card p {
    color: var(--text-muted);
}

/* Success Cases Section */
.success-cases-section {
    padding: 2rem 0;
    background: var(--bg-lighter);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Reduced minmax from 350px */
    gap: 2rem;
    /* Reduced gap */
    margin-top: 5rem;
}

@media (max-width: 480px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .case-card {
        padding: 1.5rem;
    }

    .case-header {
        flex-direction: column;
        text-align: center;
    }

    .case-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.case-card {
    padding: 3rem;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    overflow: hidden;
}

.case-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.15);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.case-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.case-icon-box i {
    width: 30px;
}

.case-title-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.case-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.case-details {
    margin-bottom: 2.5rem;
    display: grid;
    gap: 1.5rem;
}

.case-detail-item strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.case-detail-item strong i {
    width: 16px;
    color: var(--primary);
}

.case-detail-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.metric .m-val {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
}

.metric .m-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-visual-mini {
    margin-top: 2rem;
}

.mini-bar-bg {
    height: 6px;
    background: var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
}

.mini-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Social Section */








/* FAQ */
.faq-section {
    padding: 2rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    padding: 2rem 0;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 2rem;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active i {
    transform: rotate(180deg);
}





/* Registration Form - Full Institutional Version */
.registration-form-section {
    padding: 2rem 0;
    background: linear-gradient(to bottom, #0a0f18, #0e1420);
}

.full-form-header {
    margin-bottom: 5rem;
}

.full-form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.full-form-header p {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.form-time-estimate {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}



.full-form-header h2 span {
    color: var(--primary);
}

.form-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
}

.form-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 1.2rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

.grid-2-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-footer {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.btn-xl {
    padding: 1.5rem 4rem;
    font-size: 1.45rem;
    font-weight: 800;
}

.form-trust-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.form-trust-note i {
    color: var(--secondary);
    width: 18px;
}

@media (max-width: 968px) {
    .form-main-container {
        padding: 3rem;
    }

    .form-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .full-form-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .grid-2-mini {
        grid-template-columns: 1fr;
    }

    .form-main-container {
        padding: 1.5rem;
        border-radius: 0;
    }
}



/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    width: 100%;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Typography Utility */
.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .header .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }




}

/* Infographic HTML Edition */
.infographic-section {
    padding: 2rem 0;
    background: var(--bg-dark);
}

.infographic-main-wrapper {
    max-width: 1100px;
    margin: 4rem auto 0;
    padding: 4rem;
}

@media (max-width: 768px) {
    .infographic-main-wrapper {
        padding: 1.5rem 1rem;
        /* Less padding on sides */
        margin-top: 2rem;
        border-radius: 15px;
        width: 100%;
    }

    .info-intro-grid h3 {
        font-size: 1.5rem;
    }

    .info-intro-grid p {
        font-size: 1rem;
    }

    /* Stack stats on mobile */
    .info-stats-mini {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-intro-grid {
        gap: 2.5rem;
    }
}

.info-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}



.info-intro-grid h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.info-intro-grid p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.info-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.mini-stat .m-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.mini-stat .m-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.info-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.info-feat-item {
    text-align: center;
}

.info-feat-item i {
    color: var(--primary);
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
}

.info-feat-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.info-feat-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-sectors-box {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 242, 255, 0.03);
    border-radius: 20px;
    margin-bottom: 2rem;
}

.info-sectors-box h4 {
    margin-bottom: 2rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.sectors-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    /* Reduced from 3rem */
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .sectors-icons {
        gap: 1rem;
    }
}

.sector-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
}

.sector-tag i {
    color: var(--primary);
}

.info-cta-digital {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.cta-inner p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.info-url {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.info-url:hover {
    color: var(--secondary);
}

.btn-download-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-download-text:hover {
    color: var(--text-white);
}

@media (max-width: 968px) {
    .infographic-main-wrapper {
        padding: 2rem;
    }

    .info-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .info-features-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .info-cta-digital {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
}

/* Utilities */
.spin {
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



/* LGPD & Cookie Banner */
.lgpd-consent {
    margin-top: 1.5rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.checkbox-container input {
    width: 18px !important;
    height: 18px !important;
    margin-top: 0.2rem;
    cursor: pointer;
}

.consent-text a {
    color: var(--primary);
    text-decoration: underline;
}

/* File Input Styles */
/* Custom File Input Styles */
.custom-file-upload {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.custom-file-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
}

.custom-file-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.file-name-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    word-break: break-all;
}


.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    width: 90%;
    max-width: 600px;
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-white);
    line-height: 1.5;
    margin: 0;
}

.footer-left {
    text-align: left;
}

.footer-center {
    text-align: center;
}

.footer-right {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-link {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary);
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align left by default */
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: var(--primary);
}

.logo-icon-sm {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        bottom: 1rem;
        width: 95%;
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .header {
        padding: 1rem 0;
    }

    .header nav {
        flex-direction: row !important;
        justify-content: space-between;
        /* Space out Logo and Actions */
    }

    .nav-actions {
        gap: 0.75rem;
        /* Reduce gap on mobile */
    }

    .nav-whatsapp-icon i {
        width: 24px;
        /* Slightly smaller icon */
        height: 24px;
    }

    .hero-section {
        padding: 8rem 0 4rem;
    }

    .partnership-info-rich h2 {
        font-size: 2rem;
    }

    .registration-form-section {
        padding: 5rem 0;
    }

    .solution-section {
        padding: 5rem 0;
    }

    .pain-section {
        padding: 5rem 0;
    }

    .nav-cta {
        display: none;
        /* Hide top CTA on mobile to save space */
    }

    .logo {
        font-size: 1.25rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .full-form-header h2 {
        font-size: 2rem !important;
    }

    .cta-final h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .btn-xl {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }
}

/* Form Requirements */
.required-asterisk {
    color: #ff4d4d;
    font-weight: 700;
    margin-left: 4px;
}

/* Custom Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #0f172a;
    /* Dark background */
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-content h3 {
    color: var(--secondary);
    /* Cyan color */
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Partnership Stats Styles */
.info-stats-mini {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.mini-stat {
    text-align: center;
}

.mini-stat .m-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.mini-stat .m-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-content button {
    min-width: 100px;
}

/* Partnership Responsive New Styles */
@media (max-width: 800px) {
    .partnership-grand-wrapper {
        padding: 1.5rem !important;
        /* Force override */
    }

    .info-leadership {
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .info-leadership h3 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }

    .info-leadership p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }

    .info-stats-mini {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1rem;
        width: 100%;
    }

    .mini-stat {
        flex: 1 1 80px;
        background: rgba(255, 255, 255, 0.05);
        padding: 0.75rem;
        border-radius: 8px;
        min-width: 70px;
        text-align: center;
        border: 1px solid var(--glass-border);
    }

    .mini-stat .m-val {
        display: block;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.25rem;
    }

    .mini-stat .m-lbl {
        font-size: 0.7rem;
        color: var(--text-muted);
        line-height: 1.2;
    }
}

/* About Section / Quem Somos */
.about-section {
    padding: 6rem 0 4rem;
    background: var(--bg-dark);
    position: relative;
}

.about-subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.about-stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.about-stat-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-stat-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0.2rem 0;
}

.about-stat-desc {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-trust {
    margin: 3rem 0;
    margin-bottom: 4rem;
}

.about-trust p {
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.about-card {
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.about-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Response adjustments for About Section */
@media (max-width: 968px) {
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-stat-value {
        font-size: 3rem;
    }

    .about-stat-label {
        font-size: 1.2rem;
    }
}

/* Simulation Section */
.simulation-section {
    padding: 2rem 0 4rem;
    background: var(--bg-lighter);
}

.simulation-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.sim-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-white);
}

.sim-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sim-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
}

.sim-label {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.sim-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
}

.sim-note {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.sim-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 0.5rem 0;
}

.sim-results-title {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.highlight-row {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.highlight-row .sim-label {
    color: var(--text-white);
    font-weight: 700;
}

.sim-highlight-value {
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: 800;
}

@media (max-width: 768px) {
    .simulation-card {
        padding: 0.75rem;
    }

    .sim-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .sim-content {
        gap: 0.4rem;
    }

    .sim-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.25rem;
        padding: 0.1rem 0;
    }

    .sim-label {
        font-size: 0.9rem;
    }

    .sim-value {
        font-size: 1.1rem;
        align-self: auto;
    }

    .sim-divider {
        margin: 0.25rem 0;
    }

    /* Ajuste específico para a linha de destaque */
    .highlight-row {
        flex-direction: row;
        align-items: center;
        margin-top: 0.25rem;
        padding-top: 0.5rem;
    }

    .highlight-row .sim-label {
        font-size: 1rem;
    }

    .sim-highlight-value {
        font-size: 1.6rem;
    }
}

/* ================== Mobile Toggle Section Logic ================== */
.mobile-toggle-btn {
    display: none;
    margin: 0 auto 2rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    /* Ensure centering */
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);

    /* Safari & Mobile Fixes */
    -webkit-appearance: none;
    appearance: none;
    width: fit-content;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 10;
}

.mobile-toggle-btn:hover,
.mobile-toggle-btn:active {
    /* Added active state for better mobile feedback */
    background: rgba(0, 242, 255, 0.1);
}

.mobile-toggle-btn i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    /* Prevent icon shrinking */
}

@media (max-width: 968px) {
    .mobile-toggle-btn {
        display: flex;
        /* Visible on mobile */
    }

    /* Hide content by default on mobile */
    .section-content-mobile-hidden {
        display: none;
    }

    /* When expanded, show it */
    .section-content-mobile-hidden.expanded {
        display: grid;
        /* Assuming original display was grid */
        animation: fadeIn 0.5s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile CTA Button */
.mobile-cta-container {
    display: none;
    margin-top: 1.5rem;
    text-align: center;
}

.btn-full-mobile {
    width: 90%;
    margin: 1rem auto 0;
    padding: 0.8rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
    border-radius: 50px;
    display: block;
}

@media (max-width: 768px) {
    .mobile-cta-container {
        display: block;
    }
}

/* Global Mobile Font Size Reduction */
@media (max-width: 768px) {
    html {
        font-size: 15px;
        /* Reduced from 17px to scale down all rem values */
    }

    /* Further specific reductions for headers */
    .hero-text h1 {
        font-size: 2.2rem;
        /* Was typically larger */
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .full-form-header h2 {
        font-size: 1.8rem !important;
    }

    /* Adjust specific text overrides */
    .inflation-text {
        font-size: 1rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    /* Specific Form Header Reductions */
    .full-form-header p {
        font-size: 1rem !important;
        line-height: 1.4;
    }

    .form-time-estimate {
        font-size: 1.1rem !important;
        margin-top: 0.5rem;
    }
}

/* Trust Copy Section */
.trust-copy-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #0e1420, #0a0f18);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.trust-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
}

.trust-item:hover {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(5px);
}

.trust-icon-container {
    width: 48px;
    height: 48px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.trust-number {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.4rem;
    font-family: 'Outfit', sans-serif;
}

.trust-content h3 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.trust-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.authority-logos {
    transition: var(--transition);
}

.authority-logos:hover {
    background: rgba(255, 255, 255, 0.04) !important;
}

@media (max-width: 968px) {
    .trust-copy-section {
        padding: 3rem 0;
    }

    .trust-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .trust-icon-container {
        width: 40px;
        height: 40px;
    }

    .trust-number {
        font-size: 1.2rem;
    }
}