/* Estilos específicos para a Calculadora de Inadimplência */

/* Estilos específicos da navbar */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar-brand .text-green {
    color: var(--primary-green);
    font-weight: bold;
}

/* Hero específico da calculadora */
.hero h1 {
    font-size: 3rem;
}

/* Seção da calculadora */
.calculator-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.calculator-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px;
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 10px;
}

.form-select {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.1);
}

.form-select:focus {
    box-shadow: none;
    border-color: var(--primary-green);
}

/* Seção de resultados */
.results-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px;
    height: 100%;
    display: none;
}

.results-section {
    padding-bottom: 80px;
    background-color: var(--light-gray);
}

.info-card {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    height: 100%;
    margin-bottom: 30px;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.text-highlight {
    color: var(--primary-green);
    font-weight: bold;
}

/* CTA específica da calculadora */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Footer modificado */
footer {
    padding: 40px 0 20px;
}

.footer-bottom {
    margin-top: 30px;
}

/* Elementos específicos da calculadora */
.tip-box {
    background-color: rgba(192, 215, 46, 0.1);
    border-left: 4px solid var(--primary-green);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0 5px 5px 0;
}

.tip-box h5 {
    color: var(--primary-blue);
    margin-top: 0;
}

.results-graph {
    height: 200px;
    margin: 20px 0;
}

#loadingSpinner {
    display: none;
    margin: 20px auto;
}

/* Tabela de comparação */
.comparison-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px;
    text-align: center;
}

.comparison-table td {
    padding: 15px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(192, 215, 46, 0.1);
}

.with-insights {
    color: var(--primary-green);
    font-weight: bold;
}

.without-insights {
    color: #dc3545;
}

/* Estilos para a seção hero */
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary-color, #4361ee);
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-features {
    margin-bottom: 1.5rem;
}

.hero-features .badge {
    margin-right: 8px;
    padding: 8px 12px;
    font-weight: 500;
}

.trust-badges {
    margin-top: 2rem;
}

.trust-badges img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Estilos para seção da calculadora */
.section-title {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color, #4361ee);
}

.form-section-title {
    color: var(--primary-color, #4361ee);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Estilos para a seção CTA */
.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li {
    margin-bottom: 10px;
    color: #fff;
}

.feature-list i {
    color: var(--success-color, #2ecc71);
    margin-right: 8px;
}

/* Estilos para a seção Sobre */
.about-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.about-card h5 {
    color: var(--primary-color, #4361ee);
    margin-bottom: 10px;
    font-weight: 600;
}

.about-card i {
    margin-right: 8px;
}

/* Estilos para melhorar acessibilidade */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color, #4361ee);
    color: white;
    padding: 8px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Estilos para o rodapé com links */
.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Estilos para melhorar os aspectos de SEO visual */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .trust-badges img {
        max-width: 60px;
        height: auto;
        margin-bottom: 10px;
    }
} 