: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;
}

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 2rem;
}

.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;
    }
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 15, 24, 0.8);
    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;
}

.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);
}

/* 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-whatsapp {
    background: #25D366;
    color: #ffffff !important;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}


.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: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 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;
}

.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: -30px;
    right: -30px;
    display: flex;
    gap: 3rem;
    animation: floating 6s ease-in-out infinite;
    z-index: 10;
}

@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;
}

/* Pain Section */
.pain-section {
    padding: 8rem 0;
    background: #070a10;
}

.pain-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.pain-visual {
    flex: 1;
}

.pain-img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 77, 77, 0.2);
    box-shadow: 0 0 40px rgba(255, 77, 77, 0.1);
}

.pain-text {
    flex: 1.5;
}

.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;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 968px) {
    .pain-container {
        flex-direction: column;
    }

    .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);
}

.pain-item:hover {
    border-color: rgba(255, 77, 77, 0.3);
    transform: translateY(-5px);
}

.pain-icon {
    width: 32px;
    height: 32px;
    color: #ff4d4d;
    margin-bottom: 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: 10rem 0;
}

.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;
}

.formula-legend {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.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: 80%;
    height: 350px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 2rem;
    border-radius: 24px;
    overflow: hidden;
}

.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: var(--text-muted);
}

.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: 8rem 0;
    background: #070a10;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 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: 10rem 0;
    background: var(--bg-lighter);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.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 */
.social-section {
    padding: 8rem 0;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin: 4rem 0;
}

.big-stat .val {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.big-stat p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.quote-card {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-muted);
    padding: 3rem;
    border-left: 4px solid var(--primary);
}

.quote-card cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

/* FAQ */
.faq-section {
    padding: 8rem 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);
}

.blue-badge {
    background: rgba(0, 110, 255, 0.1);
    color: var(--cemig-blue-light);
    border: 1px solid rgba(0, 110, 255, 0.2);
}

/* Partnership Section - Grand Institutional Style */
.partnership-section {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.partnership-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 110, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.partnership-grand-wrapper {
    background: linear-gradient(135deg, rgba(0, 110, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(0, 110, 255, 0.2);
    border-radius: 40px;
    padding: 5rem;
}

.partnership-badge-container {
    margin-bottom: 3rem;
}

.partnership-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.partnership-info-rich h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.partnership-info-rich h2 span span {
    color: var(--cemig-blue-light);
}

.p-lead {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.partnership-grid-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.p-stat-item {
    display: flex;
    flex-direction: column;
}

.p-stat-val {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.p-stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.partnership-cta-area {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.partnership-cta-area p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.partnership-brand-display {
    position: relative;
    display: flex;
    justify-content: center;
}

.brand-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 110, 255, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.cemig-logo-large {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 110, 255, 0.3);
}

@media (max-width: 1200px) {
    .partnership-grand-wrapper {
        padding: 3rem;
    }

    .partnership-info-rich h2 {
        font-size: 2.8rem;
    }

    .partnership-cta-area {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 968px) {
    .partnership-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .partnership-grid-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partnership-brand-display {
        order: -1;
    }

    .partnership-info-rich h2 {
        font-size: 2.2rem;
    }
}

/* Registration Form - Full Institutional Version */
.registration-form-section {
    padding: 10rem 0;
    background: linear-gradient(to bottom, #0a0f18, #0e1420);
}

.full-form-header {
    margin-bottom: 5rem;
}

.full-form-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.full-form-header h2 span {
    color: var(--primary);
}

.form-main-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem;
}

.form-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.form-section-title {
    font-size: 1.1rem;
    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: 0.9rem;
    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: 1rem;
    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.25rem;
    font-weight: 800;
}

.form-trust-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    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;
    }
}

/* Final CTA */
.cta-final {
    padding: 10rem 0;
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
}

.cta-final h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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;
    }

    .cta-final h2 {
        font-size: 2.2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 3rem;
    }
}

/* Infographic HTML Edition */
.infographic-section {
    padding: 10rem 0;
    background: var(--bg-dark);
}

.infographic-main-wrapper {
    max-width: 1100px;
    margin: 4rem auto 0;
    padding: 4rem;
}

.info-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--glass-border);
}

.info-title-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 2rem;
}

.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: 5rem;
}

.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: 5rem;
}

.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: 3rem;
    flex-wrap: wrap;
}

.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);
    }
}

/* Premium Select Improvements */
.premium-select-wrapper {
    position: relative;
    width: 100%;
}

.premium-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 3rem !important;
    font-weight: 700;
    /* Texto em negrito */
}

.premium-select-wrapper select option {
    font-weight: 700;
    background-color: var(--bg-lighter);
    color: var(--text-white);
}

/* Nota: Suporte para hover em option é limitado em alguns browsers, 
   mas aplicamos aqui para os que suportam. */
.premium-select-wrapper select option:hover,
.premium-select-wrapper select option:focus,
.premium-select-wrapper select option:active,
.premium-select-wrapper select option:checked {
    background-color: var(--cemig-blue) !important;
    color: #ffffff !important;
}

.premium-select-wrapper .select-icon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
    width: 20px;
}

/* LGPD & Cookie Banner */
.lgpd-consent {
    margin-top: 1.5rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    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;
}

.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-bottom-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-link {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        bottom: 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}