/* Nova Home Components CSS - Refatorado para complementar stylesheet global */

/* Plans Section */
.plans-section {
    background-color: #fff;
    padding: 60px 0;
    overflow: visible !important; /* Garante que nada seja cortado */
}

.plans-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
    margin: 2rem 0;
    padding: 0 2rem;
    overflow-x: auto;
    overflow-y: visible !important; /* Permite que o conteúdo seja visível verticalmente */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: 100vw;
    min-height: 400px !important; /* Garante altura mínima suficiente */
}

.plans-container::-webkit-scrollbar {
    display: none;
}

.plans-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.plan-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    flex: 0 0 260px;
    min-height: 320px !important;
    height: auto !important;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.plan-featured {
    flex: 0 0 280px;
    min-height: 340px;
    border: 3px solid #2E6C86;
    transform: scale(1.02);
}

.plan-premium {
    border-color: #C3F53C;
    box-shadow: 0 10px 30px rgba(195, 245, 60, 0.1);
    border-width: 4px; 
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2E6C86, #005F6F);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Override for modal - more specific selector */
.plan-modal-header .plan-badge {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    display: block !important;
    margin: 0 auto 1rem auto !important;
    text-align: center !important;
}

.plan-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    color: #2E6C86;
    text-align: center;
    margin-bottom: 0.3rem;
}

.plan-description {
    text-align: center;
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.plan-features-summary {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #333;
}

.feature-item.more-features {
    color: #2E6C86;
    font-weight: 500;
    font-style: italic;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    padding: 0;
}

.plan-feature {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.feature-icon {
    margin-right: 10px;
    font-weight: bold;
}

.feature-included {
    color: green;
}
.feature-excluded {
    color: #ccc;
}
.feature-text-excluded {
    color: #999;
}

.plan-button {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.plan-details-btn {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: transparent;
    color: #666;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.plan-details-btn:hover {
    background: #f8f9fa;
    border-color: #2E6C86;
    color: #2E6C86;
}

.plan-button-free {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #dee2e6;
}

.plan-button-free:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.plan-button-premium {
    background: linear-gradient(135deg, #2E6C86, #005F6F);
    color: white;
}

.plan-button-premium:hover {
     background: linear-gradient(135deg, #005F6F, #004a5a);
     transform: translateY(-2px);
 }
 
 .plan-button-semiannual {
     background: linear-gradient(135deg, #C3F53C, #a8d632);
     color: #333;
     font-weight: bold;
 }
 
 .plan-button-semiannual:hover {
     background: linear-gradient(135deg, #a8d632, #8bc34a);
     transform: translateY(-2px);
 }
 
 .plan-note {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

.plans-scroll-indicator {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    margin-top: 1rem;
    display: none;
}

/* Plan Modal */
.plan-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.plan-modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 70vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.plan-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.plan-modal-close:hover {
     color: #333;
 }
 
 /* Mobile Responsive */
 @media (max-width: 768px) {
     .plans-container {
         justify-content: flex-start;
         padding: 0 1rem;
     }
     
     .plan-card {
         flex: 0 0 240px;
         min-height: 300px;
         padding: 1.2rem;
     }
     
     .plan-featured {
         flex: 0 0 260px;
         min-height: 320px;
         transform: scale(1.05);
     }
     
     .plan-price {
         font-size: 1.8rem;
     }
     
     .plan-title {
         font-size: 1.2rem;
     }
     
     .plans-scroll-indicator {
         display: block;
     }
     
     .plan-modal-content {
         margin: 15% auto;
         padding: 1.5rem;
         width: 95%;
         max-height: 60vh;
     }
 }

/* Mobile Responsive - Simple CSS-only approach */
@media (max-width: 768px) {
    .plans-section {
        padding: 40px 0;
        overflow: visible !important; /* Garante que nada seja cortado */
    }
    
    .plans-container {
        display: flex;
        overflow-x: auto;
        overflow-y: visible !important; /* Permite que o conteúdo seja visível verticalmente */
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 0 20px;
        margin: 1rem 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        max-width: calc(100vw - 40px);
        min-height: 400px !important; /* Garante altura mínima suficiente */
    }
    
    .plans-container::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .plan-card {
        min-width: 260px;
        max-width: 280px;
        min-height: 380px !important; /* Aumenta altura mínima para evitar corte */
        height: auto !important;
        flex-shrink: 0;
        scroll-snap-align: center;
        margin-bottom: 0;
        padding: 1.2rem;
        overflow: visible !important; /* Garante que o conteúdo não seja cortado */
    }
    
    .plan-featured {
        min-width: 280px;
        max-width: 300px;
        min-height: 400px !important; /* Altura maior para o card em destaque */
        height: auto !important;
        transform: scale(1.0);
        overflow: visible !important; /* Garante que o conteúdo não seja cortado */
    }
    
    .plans-scroll-indicator {
        text-align: center;
        color: #666;
        font-size: 0.8rem;
        margin-top: 15px;
        padding: 0 20px;
        font-style: italic;
        display: none;
    }
    
    .mobile-plans-active .plans-scroll-indicator {
        display: block;
    }
}

/* Modal Styles */
.plan-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 80px 20px;
}

.plan-modal-overlay.show {
    opacity: 1;
}

.plan-modal-content {
    background-color: white;
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.plan-modal-overlay.show .plan-modal-content {
    transform: translateY(0);
}

.plan-modal-header {
    text-align: center;
    padding: 10px 20px 0 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

.plan-modal-header h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.plan-modal-header .plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.3rem 0;
    font-family: 'Montserrat', sans-serif;
}

.plan-modal-header .plan-description {
    color: #666;
    font-size: 1rem;
    margin: 0.3rem 0 0.8rem 0;
}

.plan-modal-header .plan-badge {
    display: inline-block;
    margin-bottom: 0.5rem;
    position: static;
    transform: none;
    text-align: center;
}



.plan-modal-body {
    padding: 0 20px 10px 20px;
}

/* Premium Benefits */
.premium-benefits {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: var(--highlight-bg);
    border-radius: 8px;
}

.premium-benefits-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.premium-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.premium-benefit {
    text-align: left;
}

.premium-benefit-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Compare Section */
.compare-section {
    background: var(--highlight-bg);
    padding: 2rem 0;
}

.compare-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.compare-section .section-title h2 {
    color: var(--primary-color);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.compare-section .section-title p {
    color: #666;
    font-size: 1.1rem;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.compare-category {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 89, 111, 0.1);
}
.compare-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 89, 111, 0.15);
}

.compare-category h3 {
    color: var(--primary-color);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.compare-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.compare-link {
    color: #333;
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: var(--highlight-bg);
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 3px solid transparent;
}
.compare-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    text-decoration: none;
}

/* Conversion Section */
.conversion-section {
    background: linear-gradient(135deg, var(--primary-color), #004A5A);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}
.conversion-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 3px solid var(--secondary-color);
    color: #333;
}
.conversion-title {
    font-size: 2.2rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
}
.conversion-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.4;
}
.offer-highlight {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    display: inline-block;
    font-weight: bold;
}
.offer-text {
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Conversion Form (input e botão) */
.conversion-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.conversion-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(195, 245, 60, 0.25);
}
.btn-conversion {
    background: var(--secondary-color);
    border: none;
    color: #000;
    font-weight: bold;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.btn-conversion:hover {
    background: #a8d632;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(195,245,60,0.4);
    color: #000;
}

/* Assinatura Premium e Benefícios */
.subscription-benefits {
    padding: 4rem 0;
}
.benefits-card {
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--secondary-color);
}
.pricing-original {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.pricing-special {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.pricing-details {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.access-duration {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.benefits-title {
    color: var(--primary-color);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}
.subscription-benefits-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}
.subscription-benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: var(--highlight-bg);
    border-radius: 8px;
}
.check-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Testimonial Card */
.testimonial-card {
    transition: transform 0.3s ease;
    border-radius: 15px;
}
.testimonial-card:hover {
    transform: translateY(-3px);
}

/* Benefit Card */
.benefit-card {
    transition: transform 0.3s ease;
    border-radius: 15px;
}
.benefit-card:hover {
    transform: translateY(-5px);
}

/* Custom backgrounds */
.bg-custom-color {
    background-color: var(--highlight-bg);
}
.bg-custom-color2 {
    background-color: #fff;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .conversion-section {
        padding: 1rem 0;
        min-height: auto;
    }
    .conversion-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
        border-radius: 15px;
    }
    .conversion-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    .conversion-subtitle {
        font-size: 1rem;
    }
    .offer-highlight {
        padding: 0.8rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    .offer-text {
        font-size: 1rem;
    }
    .conversion-form .form-control {
        padding: 0.9rem;
        font-size: 1rem;
    }
    .btn-conversion {
        padding: 1rem;
        font-size: 1rem;
    }
    /* Removed conflicting plans-container rule that was overriding mobile carousel */
    .premium-benefits-grid {
        grid-template-columns: 1fr;
    }
    .compare-section {
        padding: 2rem 0;
    }
    .compare-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .compare-category {
        padding: 1.5rem;
    }
    .compare-category h3 {
        font-size: 1.2rem;
    }
    
    /* BENEFÍCIOS - MOBILE - FORÇA APLICAÇÃO */
    .beneficios-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        margin-top: 30px !important;
        grid-template-columns: none !important;
    }
    
    .beneficio-item {
        display: flex !important;
        text-align: left !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid #eee !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
    
    .beneficio-item:last-child {
        border-bottom: none !important;
    }
    
    .beneficios-grid .beneficio-icon {
        width: 40px !important;
        height: 40px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        font-size: 1.2rem !important;
        background: linear-gradient(135deg, #98D442, #71B923) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: white !important;
    }
    
    .beneficio-content {
        flex: 1 !important;
    }
    
    .beneficio-item h3 {
        margin: 0 0 8px 0 !important;
        font-size: 1.05rem !important;
        line-height: 1.3 !important;
        text-align: left !important;
    }
    
    .beneficio-item p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        color: #666 !important;
        text-align: left !important;
    }
}

@media (max-width: 576px) {
    .conversion-card {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
    }
    .conversion-title {
        font-size: 1.6rem;
    }
    .conversion-subtitle {
        font-size: 0.95rem;
    }
    .offer-highlight {
        padding: 0.7rem 1.2rem;
    }
    .offer-text {
        font-size: 0.9rem;
    }
    .benefit-card {
        padding: 1rem !important;
        margin-bottom: 1rem;
    }
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .pricing-special {
        font-size: 1.3rem;
    }
}
.plan-button-semiannual {
    background-color: var(--primary-color);
    color: #fff;
}
.plan-button-semiannual:hover {
    background-color: #1c84aa;
}

.plan-semiannual {
    border-color: #1a4a5c;
    border-width: 1px;
    box-shadow: 0 10px 30px rgba(0, 89, 111, 0.1);
}
.premium-benefit-text {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.premium-benefit strong {
    color: var(--primary-color);
}

/* Como Funciona - Nova Versão */
.como-funciona-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.como-funciona-intro .destaque-texto {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 30px 0 20px 0;
    font-family: 'Montserrat', sans-serif;
}

.como-funciona-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

/* ===== SEÇÃO BENEFÍCIOS - VERSÃO LIMPA ===== */

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.beneficios-grid .beneficio-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #98D442, #71B923);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(152, 212, 66, 0.3);
}

.beneficio-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0 0 15px 0;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.beneficio-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* ===== RESPONSIVO TABLET ===== */
@media (max-width: 1200px) {
    .beneficios-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .beneficio-item:nth-child(4) {
        grid-column: 1 / 2;
    }
    
    .beneficio-item:nth-child(5) {
        grid-column: 3 / 4;
    }
}


.plan-button-semiannual {
    background-color: var(--primary-color);
    color: #fff;
}
.plan-button-semiannual:hover {
    background-color: #1c84aa;
}

.plan-semiannual {
    border-color: #1a4a5c;
    border-width: 1px;
    box-shadow: 0 10px 30px rgba(0, 89, 111, 0.1);
}
.premium-benefit-text {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.premium-benefit strong {
    color: var(--primary-color);
}

/* ===== SEÇÃO ÍNDICES FINANCEIROS ===== */

.financial-indicators-section {
    padding: 40px 0;
    background: var(--highlight-bg);
    margin: 0;
    margin-top: -20px;    
}

.financial-indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0;
}

.financial-indicator-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(46, 108, 134, 0.1);
    position: relative;
    overflow: hidden;
}

.financial-indicator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(46, 108, 134, 0.2);
}

.indicator-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.indicator-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.indicator-date {
    font-size: 0.85rem;
    color: #888;
    background: rgba(46, 108, 134, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.indicator-value {
    margin-bottom: 20px;
}

.value-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2E6C86;
    font-family: 'Montserrat', sans-serif;
    display: block;
}

.indicator-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 25px 0;
    font-weight: 400;
}

.indicator-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2E6C86;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.indicator-link:hover {
    color: #1c84aa;
    transform: translateX(5px);
}

.indicators-btn {
    background: linear-gradient(135deg, #C3F53C 0%, #98D442 100%);
    color: #2E6C86;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(195, 245, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.indicators-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(195, 245, 60, 0.4);
    color: #2E6C86;
    text-decoration: none;
}

/* ===== RESPONSIVO PARA ÍNDICES FINANCEIROS ===== */

@media (max-width: 768px) {
    .financial-indicators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .financial-indicator-card {
        padding: 25px;
    }
    
    .indicator-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .value-number {
        font-size: 1.8rem;
    }
    
    .indicators-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .financial-indicator-card {
        padding: 20px;
    }
    
    .value-number {
        font-size: 1.6rem;
    }
    
    .indicator-name {
        font-size: 1.2rem;
    }
}

