/* Reset e Base */
html, body { width: 100%; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
img, svg { max-width: 100%; height: auto; }

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #0A1F44, #1A365D);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1A365D, #2D4A6B);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 31, 68, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #0A1F44, #1A365D);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1A365D, #2D4A6B);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 31, 68, 0.4);
}

.btn-outline {
    background: transparent;
    color: #0A1F44;
    border: 2px solid #0A1F44;
    box-shadow: 0 2px 10px rgba(10, 31, 68, 0.1);
}

.btn-outline:hover {
    background: #0A1F44;
    color: white;
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #0A1F44;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0A1F44;
    opacity: 0.7;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #0A1F44;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('../images/background_solar.jpg') center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-slogan {
    font-size: 1rem;
    font-weight: 600;
    color: #00BCD4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-cyan {
    color: #00BCD4;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1F44;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 32px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input {
    padding: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #00BCD4;
}

/* Base */
.alert {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    animation: alertFadeIn 0.3s ease-out;
}

/* Sucesso */
.alert-success {
    background: #e6f4ec;
    color: #1f7a4d;
    border: 1px solid #bfe6d3;
}

/* Erro */
.alert-error {
    background: #fdeaea;
    color: #9b1c1c;
    border: 1px solid #f5c2c2;
}

/* Lista de erros */
.alert ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.alert ul li {
    margin: 0;
}

/* Ícones (opcional) */
.alert::before {
    font-size: 18px;
}

.alert-success::before {
    content: "✔";
}

.alert-error::before {
    content: "⚠";
}

/* Animação */
@keyframes alertFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Mini-métricas */
.metrics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A1F44, #1E3A8A);
    color: white;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.metric-item {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.3);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00BCD4;
    margin-bottom: 12px;
}

.metric-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.metric-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: top 0.3s ease;
}

.mobile-menu.active {
    top: 80px;
}

.mobile-menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: #0A1F44;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #0A1F44;
    opacity: 0.7;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

/* Blog Cards Clicáveis */
.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card-link:hover {
    transform: translateY(-8px);
}

.blog-card-link:hover .blog-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-link {
    color: #00BCD4;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.blog-card-link:hover .blog-link {
    color: #0097A7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metric-number {
        font-size: 2.5rem;
    }

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

    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

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

    .form-card {
        padding: 30px 20px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }

    .metric-number {
        font-size: 2rem;
    }
}
.trust-bar {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: white;
}

.trust-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.trust-description {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-card {
    background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.about-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
}

.about-description {
    color: #6B7280;
    line-height: 1.6;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.why-column {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.why-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 24px;
    text-align: center;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
    color: #4B5563;
    position: relative;
    padding-left: 24px;
}

.why-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00BCD4;
    font-weight: bold;
}

.why-list li:last-child {
    border-bottom: none;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-4px);
}

.partner-logo {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
}

/* Hero Slogan */
.hero-slogan {
    font-size: 1rem;
    font-weight: 600;
    color: #00BCD4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: #F9FAFB;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #6B7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-link {
    color: #00BCD4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #0097A7;
}

/* Media Section */
.media-section {
    padding: 100px 0;
    background: white;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.media-card {
    background: #F9FAFB;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #00BCD4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.media-source {
    font-size: 14px;
    font-weight: 600;
    color: #00BCD4;
    margin-bottom: 8px;
}

.media-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
    line-height: 1.4;
}

.media-excerpt {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.media-link {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #00BCD4;
    font-size: 16px;
    transition: color 0.3s ease;
}

.media-link:hover {
    color: #0097A7;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
}

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

.step-card {
    text-align: center;
    padding: 40px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.step-icon-1 {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.step-icon-2 {
    background: linear-gradient(135deg, #10B981, #059669);
}

.step-icon-3 {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
}

.step-description {
    color: #6B7280;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

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

.benefit-card {
    background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
}

.benefit-description {
    color: #6B7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1F2937, #111827);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #00BCD4;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .header .nav-menu {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-form {
        order: 1;
    }

    .form-card {
        padding: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .blog-grid,
    .media-grid,
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

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


/* Novos estilos para melhorias */

/* Formulário melhorado */
.form-disclaimer {
    font-size: 12px;
    color: #6B7280;
    text-align: center;
    margin-top: 12px;
    line-height: 1.4;
}

.form-input select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

/* Blog com links específicos */
.blog-image-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.blog-image-link:hover {
    transform: scale(1.02);
}

.blog-title-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.blog-title-link:hover {
    color: #0A1F44;
}

.blog-link {
    color: #0A1F44;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #1A365D;
}

/* Parceiros com links */
.partner-item a {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-item a:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Melhor contraste no rodapé */
.footer {
    background: #0A1F44;
    color: #E5E7EB;
}

.footer-title {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-link {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 4px 0;
}

.footer-link:hover {
    color: #FFFFFF;
}

.footer-description {
    color: #D1D5DB;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 14px;
}

/* Ajustes para botões outline no cabeçalho branco */
.header .btn-outline {
    color: #0A1F44;
    border-color: #0A1F44;
}

.header .btn-outline:hover {
    background: #0A1F44;
    color: white;
}

/* Ajustes responsivos para novos elementos */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .form-disclaimer {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .partner-logo {
        max-height: 60px;
    }
}


/* Redes Sociais no Rodapé */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFFFFF;
    color: #0A1F44;
    transform: translateY(-2px);
}

/* Ajustes no logo do rodapé */
.footer-logo {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Responsividade para redes sociais */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-top: 16px;
    }

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



/* Accessibility helpers */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

/* Smooth anchor navigation accounting for fixed header */
:target{scroll-margin-top:80px;}

/* Respect reduced motion preference */

}
}
  *{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;scroll-behavior:auto !important;}
}

/* CTA disclaimer small text */
.cta-disclaimer{font-size:.85rem;opacity:.8;margin-top:12px;}


/* ===== Captur: header fix & spacing (injected) ===== */

/* Smooth scroll for anchor links */
html{scroll-behavior:smooth;}

/* Header height variable (JS will keep this updated) */
:root{--header-h:72px;}

/* Compensate fixed header */
body{padding-top:var(--header-h);}

/* Hero should not be hidden by header */
.hero{min-height:calc(100vh - var(--header-h));}

/* Anchors stop below the header */
section[id]{scroll-margin-top:var(--header-h);}

/* Base section spacing */
section, .section{padding-block:72px;}
@media (max-width: 768px){
  :root{--header-h:88px;}
  section, .section{padding-block:56px;}
  .hero .container{padding-top:12px;padding-bottom:12px;}
}

/* Grids consistent gap (in case not set) */
.grid, .cards, .benefits-grid, .blog-grid, .media-grid{gap:24px;}
@media (max-width:768px){.grid, .cards, .benefits-grid, .blog-grid, .media-grid{gap:20px;}}

/* CTA final comfortable spacing */
.cta-final.section{padding-block:72px;}
@media (max-width:768px){.cta-final.section{padding-block:56px;}}

/* Respect reduced motion */

}
}
  *{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;scroll-behavior:auto !important;}
}
/* ===== end injected ===== */


/* ===== Captur: buttons accessibility & contrast (injected v2) ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:44px; padding:10px 18px; border-radius:10px;
  font-weight:600; border:1.6px solid transparent;
  transition:transform .12s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  will-change:transform;
}
.btn-large{ min-height:48px; padding:12px 22px; border-radius:12px; }

/* Filled */
.btn-primary{
  background: linear-gradient(135deg, var(--brand-900, #0B1E3A), var(--brand-700, #17365B));
  color:#fff; border-color: rgba(255,255,255,0.12);
  box-shadow: 0 8px 16px rgba(10, 31, 68, .25);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 10px 18px rgba(10,31,68,.32); }
.btn-primary:active{ transform: translateY(0); box-shadow: 0 4px 10px rgba(10,31,68,.25); }

/* Outline (high-contrast by default) */
.btn-outline{
  background:#fff; color: var(--brand-900, #0B1E3A);
  border-color: currentColor; box-shadow: 0 6px 14px rgba(0,0,0,.10);
}
.btn-outline:hover{
  background: linear-gradient(135deg, var(--brand-900, #0B1E3A), var(--brand-700, #17365B));
  color:#fff; border-color: transparent; transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(10,31,68,.32);
}
.btn-outline:active{ transform: translateY(0); box-shadow: 0 4px 10px rgba(10,31,68,.25); }

/* Focus visible for keyboard users */
.btn:focus-visible{
  outline:3px solid rgba(0, 167, 193, .45); outline-offset:2px;
}

/* CTA on dark background – ensure secondary stays visible even if theme overrides */
.cta-final .btn-outline{ background:#fff; color:#0B1E3A; border-color:#0B1E3A; }
/* Header area – keep outline style consistent on white background */
.header .btn-outline{ background:#fff; color:#0B1E3A; border-color:#0B1E3A; }
/* ===== end buttons v2 ===== */


/* ===== Captur v4: alignment + spacing tweaks ===== */

/* Center hero and final CTA buttons, especially on mobile */
.hero .btn,
.cta-final .btn{
  margin-left:auto; margin-right:auto;
}

/* Ensure groups center by default */
.hero .cta-buttons, .cta-final .cta-buttons, .cta-buttons{
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
}

/* Slightly reduce section padding for mobile */
@media (max-width: 768px){
  section, .section{ padding-block: 48px; }
}

/* Keep outline buttons readable on dark backgrounds */
.dark-section .btn-outline,
.cta-final .btn-outline{ background:#fff; color:#0B1E3A; border-color:#0B1E3A; }


/* ===== Captur v5: CTA disclaimer + button alignment + spacing ===== */

/* Refine disclaimer at CTA final */
.cta-final .cta-disclaimer{
  max-width:720px;
  margin:16px auto 0;
  font-size:.85rem;
  line-height:1.4;
  color:rgba(255,255,255,.72);
  text-align:center;
}

/* Center CTA groups and buttons reliably */
.hero .cta-buttons, .cta-final .cta-buttons, .cta-buttons{
  display:flex; justify-content:center; gap:12px; flex-wrap:wrap;
}
.hero .btn, .cta-final .btn{
  display:inline-flex !important;
  margin-left:auto !important; margin-right:auto !important;
}

/* Section spacing tuned */
section, .section{ padding-block: 72px; }
@media (max-width: 768px){
  section, .section{ padding-block: 44px; } /* menos respiro no mobile */
}

/* Keep outline buttons readable on dark sections */
.cta-final .btn-outline{ background:#fff; color:#0B1E3A; border-color:#0B1E3A; }
/* ===== end v5 ===== */


/* ===== Captur v6: correct selectors, centering & spacing ===== */
.hero .hero-buttons{ display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.hero .hero-buttons .btn{ margin:0; }
.cta-section .cta-buttons{ display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.cta-section .cta-buttons .btn{ margin:0; }
.cta-section .btn-outline{ background:#fff; color:#0B1E3A; border-color:#0B1E3A; }
.cta-section .cta-disclaimer{ max-width:720px; margin:16px auto 0; font-size:.85rem; line-height:1.45; color:rgba(255,255,255,.72); text-align:center; }
@media (max-width: 768px){ section, .section{ padding-block: 48px; } }
/* ===== end v6 ===== */


/* ===== Captur v7: disclaimer pill & stronger centering ===== */
.cta-section .cta-disclaimer{ margin-top:12px; font-size:.8rem; }
.cta-section .disclaimer-pill{
  display:inline-block; padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
}
/* strong centering guards */
.hero .hero-buttons, .cta-section .cta-buttons{ width:100%; }
.hero .hero-buttons{ justify-content:center !important; }
.cta-section .cta-buttons{ justify-content:center !important; }
/* ===== end v7 ===== */


/* === Unified Button Group Fix === */
.btn-group {
  display:flex;
  width:100%;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.btn-group .btn { margin:0; }

@media (max-width: 640px){
  .btn-group{ justify-content:center; }
  .btn-group .btn{
    width:100%;
    max-width:340px;
  }
}

/* CTA section adjustments */
.cta-section .btn-group .btn-outline {
  background:#fff;
  color:#0B1E3A;
  border-color:#0B1E3A;
}




/* === Consolidado do index.php (inline styles) === */

  /* === Press cards polish === */
  .media-card { position: relative; border-radius: 14px; transition: transform .18s ease, box-shadow .18s ease; }
  .media-card:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(7, 24, 61, .12); }
  .media-card .media-title { margin: 6px 0 8px; line-height: 1.25; }
  .media-card .media-title a { color: inherit; text-decoration: none; }
  .media-card .media-title a:hover { text-decoration: underline; }
  .media-card .media-excerpt { color: var(--muted-foreground, #6b7280); max-height: 3.2em; overflow: hidden; text-overflow: ellipsis; }
  .media-card .media-link--block { position:absolute; inset:0; z-index:1; border-radius:14px; }
  .media-card .media-title a, .media-card .media-link, .media-card .media-source { position:relative; z-index:2; }
  .media-card .media-link { display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:50%; transition: background .15s ease; }
  .media-card .media-link:hover { background: rgba(15, 23, 42, .06); }
  .media-card .media-title a:focus-visible, .media-card .media-link:focus-visible { outline: 3px solid rgba(56,189,248,.65); outline-offset: 2px; border-radius: 8px; }



  /* === Press cards: fix external-link icon position & overlay order === */
  .media-card { position: relative; }
  .media-card .media-link--block { position:absolute; inset:0; z-index:1; border-radius:14px; }
  .media-card .media-link { position:absolute; top:12px; right:12px; z-index:3; width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
  .media-card .media-source { display:block; padding-right:40px; }
  .media-card .media-title a { text-decoration:none; }
  .media-card .media-title a:hover { text-decoration:underline; }



/* Press cards: enforce link style for link & visited states */
.media-card .media-title a,
.media-card .media-title a:visited {
  color: inherit !important;
  text-decoration: none !important;
}
.media-card .media-title a:hover,
.media-card .media-title a:focus {
  text-decoration: underline !important;
}

