/* assets/css/seguro-desemprego-parcelas.css */
/* CSS ISOLADO - Apenas para Calculadora de Seguro-Desemprego */

/* ===================================
   SEÇÃO DA CALCULADORA SEGURO-DESEMPREGO
   ================================== */
.seguro-calculator-section {
    margin-bottom: 3rem;
}

.seguro-header {
    text-align: center;
    margin-bottom: 2rem;
}

.seguro-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.seguro-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.seguro-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e6ed;
}

.seguro-inputs h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===================================
   DADOS BÁSICOS SEGURO-DESEMPREGO
   ================================== */
.seguro-dados-basicos {
    background: #e8f5e8;
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.seguro-input-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.seguro-input-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.seguro-input-group label {
    font-weight: 600;
    color: #4caf50;
    font-size: 0.95rem;
}

.seguro-input-group input,
.seguro-input-group select {
    padding: 0.8rem;
    border: 2px solid #4caf50;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.seguro-input-group input:focus,
.seguro-input-group select:focus {
    outline: none;
    border-color: #2e7d32;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.seguro-money-input {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #4caf50;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.seguro-money-input:focus-within {
    border-color: #2e7d32;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.seguro-money-input span {
    background: #4caf50;
    color: white;
    padding: 0.8rem 1rem;
    font-weight: bold;
    font-size: 1rem;
}

.seguro-money-input input {
    border: none;
    padding: 0.8rem;
    flex: 1;
    font-size: 1rem;
    background: transparent;
}

.seguro-money-input input:focus {
    outline: none;
    transform: none;
    box-shadow: none;
}

/* ===================================
   BOTÃO CALCULAR SEGURO
   ================================== */
.seguro-calculate-section {
    text-align: center;
    margin: 2rem 0;
}

.seguro-calculate-btn {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.seguro-calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.seguro-calculate-btn:active {
    transform: translateY(-1px);
}

/* ===================================
   RESULTADO DO SEGURO-DESEMPREGO
   ================================== */
.seguro-resultado {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    animation: slideInUp 0.5s ease;
}

.seguro-resultado h3 {
    color: #1565c0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.seguro-resultado-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Resultado Principal */
.seguro-resultado-principal {
    background: #2196f3;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.seguro-resultado-principal h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.seguro-parcelas-info {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.seguro-parcelas-count {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seguro-parcelas-num {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    line-height: 1;
}

.seguro-parcelas-text {
    font-size: 1rem;
    opacity: 0.8;
}

.seguro-valor-total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.seguro-currency {
    font-size: 1.3rem;
    opacity: 0.8;
}

.seguro-value {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.seguro-valor-parcela {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.seguro-status {
    opacity: 0.8;
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

/* Detalhamento */
.seguro-detalhamento {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e6ed;
}

.seguro-detalhamento h4 {
    color: #1565c0;
    margin-bottom: 1rem;
    border-bottom: 2px solid #2196f3;
    padding-bottom: 0.5rem;
}

.seguro-item-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.seguro-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #e3f2fd;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    transition: all 0.3s ease;
}

.seguro-item:hover {
    transform: translateX(5px);
    background: #bbdefb;
}

.seguro-item.destaque {
    background: #2196f3;
    color: white;
    border-left-color: #1565c0;
    font-weight: bold;
}

.seguro-item.destaque:hover {
    background: #1565c0;
}

.seguro-item-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.seguro-item.destaque .seguro-item-label {
    color: white;
}

.seguro-item-value {
    font-weight: bold;
    color: #1565c0;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.seguro-item.destaque .seguro-item-value {
    color: white;
}

/* Requisitos */
.seguro-requisitos {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #4caf50;
}

.seguro-requisitos h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4caf50;
    padding-bottom: 0.5rem;
}

.seguro-requisitos-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.seguro-requisito-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.seguro-requisito-item:hover {
    transform: translateX(3px);
}

.seguro-requisito-item.ok {
    border-left: 4px solid #4caf50;
}

.seguro-requisito-item.error {
    border-left: 4px solid #f44336;
}

.seguro-requisito-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.seguro-requisito-text {
    color: #2c3e50;
    font-weight: 500;
}

/* Aviso Legal */
.seguro-aviso-legal {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.seguro-aviso-legal p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===================================
   EXPLICAÇÃO DO CÁLCULO SEGURO
   ================================== */
.seguro-explanation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 12px;
    animation: slideInUp 0.5s ease;
}

.seguro-explanation h3 {
    color: #1565c0;
    margin-bottom: 1rem;
    text-align: center;
}

.seguro-step {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #2196f3;
}

.seguro-step h4 {
    color: #1565c0;
    margin-bottom: 0.5rem;
}

.seguro-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: #444;
}

/* ===================================
   EXPLICAÇÃO DETALHADA COM BASE LEGAL CLT - SEGURO
   ================================== */
.seguro-detailed-explanation {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e8 100%);
    border: 2px solid #2196f3;
    border-radius: 15px;
    animation: slideInUp 0.5s ease;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.1);
}

.seguro-detailed-explanation h3 {
    color: #2196f3;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    border-bottom: 3px solid #2196f3;
    padding-bottom: 0.8rem;
}

.seguro-legal-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.seguro-legal-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e6ed;
    transition: all 0.3s ease;
}

.seguro-legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.15);
    border-color: #2196f3;
}

.seguro-legal-section h4 {
    color: #2196f3;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid #e3f2fd;
    padding-bottom: 0.8rem;
    padding-top: 0.3rem;
}

.seguro-legal-section + .seguro-legal-section {
    margin-top: 2.5rem;
}

.seguro-legal-section:first-child {
    margin-top: 0;
}

.seguro-legal-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: #e3f2fd;
    border-radius: 10px;
    border-left: 4px solid #2196f3;
    transition: all 0.3s ease;
}

.seguro-legal-item:hover {
    background: #bbdefb;
    transform: translateY(-2px);
}

.seguro-legal-artigo {
    background: #2196f3;
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.3);
    align-self: flex-start;
    min-width: 200px;
}

.seguro-legal-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.seguro-legal-content p {
    margin: 0;
    color: #2c3e50;
    line-height: 1.6;
    font-size: 0.95rem;
}

.seguro-legal-content strong {
    color: #2196f3;
    font-weight: 600;
}

/* Detalhes dos Cálculos - Seguro */
.seguro-calculo-detalhe {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 10px;
    padding: 1.2rem;
    margin-top: 0.5rem;
    width: 100%;
}

.seguro-calculo-detalhe p {
    font-family: 'Courier New', monospace;
    color: #2e7d32;
    font-size: 0.9rem;
    margin: 0.4rem 0;
    line-height: 1.5;
}

.seguro-calculo-detalhe p:first-child {
    font-weight: bold;
    color: #1b5e20;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-family: inherit;
}

.seguro-calculo-detalhe p strong {
    color: #1b5e20;
    font-weight: bold;
}

.seguro-calculo-detalhe small {
    color: #558b2f;
    font-style: italic;
    font-size: 0.8rem;
}

/* Footer da Explicação Legal - Seguro */
.seguro-legal-footer {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.seguro-legal-footer p {
    margin: 0.5rem 0;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

.seguro-legal-footer p:first-child {
    font-weight: 600;
    color: #854d0e;
}

.seguro-legal-footer strong {
    color: #854d0e;
}

/* ===================================
   EXEMPLOS E AJUDA SEGURO
   ================================== */
.seguro-examples {
    text-align: center;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.seguro-examples.hidden {
    display: none;
}

.seguro-examples p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.seguro-example-btn {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    color: #1565c0;
    padding: 0.6rem 1.2rem;
    margin: 0.3rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.seguro-example-btn:hover {
    background: #2196f3;
    color: white;
    transform: translateY(-2px);
}

.seguro-help {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fff3cd;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    transition: all 0.3s ease;
}

.seguro-help.hidden {
    display: none;
}

/* ===================================
   CONTEÚDO EDUCACIONAL SEGURO
   ================================== */
.seguro-educational-content {
    margin-top: 3rem;
}

.seguro-content-block {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e6ed;
}

.seguro-content-block h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 3px solid #2196f3;
    padding-bottom: 0.5rem;
}

.seguro-content-block p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.seguro-content-block strong {
    color: #2196f3;
}

/* Formula Display Seguro */
.seguro-formula-display {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.seguro-formula-display h4 {
    color: #1565c0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.seguro-formula-display .formula p {
    margin: 0.5rem 0;
    font-family: 'Courier New', monospace;
    color: #1565c0;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Grids Exemplos e Dicas Seguro */
.seguro-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.seguro-example-item {
    background: #e8f5e8;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.seguro-example-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #4caf50;
}

.seguro-example-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4caf50;
}

.seguro-example-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.seguro-example-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.seguro-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.seguro-tip-item {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.seguro-tip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.seguro-tip-item h4 {
    color: #1565c0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.seguro-tip-item p {
    color: #1565c0;
    margin: 0;
    font-size: 0.95rem;
}

/* Exemplo de Solução Seguro */
.seguro-example-solution {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.seguro-example-solution h4 {
    color: #1565c0;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.seguro-solution-step {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.seguro-solution-step h5 {
    color: #1565c0;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.seguro-solution-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: #444;
}

.seguro-solution-final {
    background: #2196f3;
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.seguro-solution-final h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.seguro-solution-final p {
    margin: 0;
    font-family: inherit;
}

/* ===================================
   TABELAS ESPECÍFICAS SEGURO
   ================================== */
.seguro-tabela-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.seguro-tabela-parcelas,
.seguro-tabela-valores {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e0e6ed;
}

.seguro-tabela-parcelas h4,
.seguro-tabela-valores h4 {
    color: #2196f3;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid #2196f3;
    padding-bottom: 0.5rem;
}

.seguro-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.seguro-table th {
    background: #2196f3;
    color: white;
    padding: 1rem 0.8rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.seguro-table td {
    padding: 0.8rem;
    text-align: center;
    border-bottom: 1px solid #e0e6ed;
    font-size: 0.9rem;
}

.seguro-table tr:hover {
    background: #f5f5f5;
}

.seguro-table td:first-child {
    font-weight: 600;
    color: #2196f3;
}

.seguro-calculo-faixas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seguro-faixa {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.seguro-faixa h5 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.seguro-faixa p {
    margin: 0.3rem 0;
    color: #444;
    font-size: 0.9rem;
}

.seguro-faixa .exemplo {
    color: #666;
    font-style: italic;
    font-size: 0.85rem;
}

.seguro-faixa small {
    color: #999;
    font-size: 0.8rem;
}

/* ===================================
   ANIMAÇÕES SEGURO
   ================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVIDADE SEGURO
   ================================== */
@media (max-width: 1024px) {
    .seguro-input-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .seguro-tabela-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .seguro-header h1 {
        font-size: 2rem;
    }
    
    .seguro-container {
        padding: 1rem;
    }
    
    .seguro-dados-basicos {
        padding: 1rem;
    }
    
    .seguro-input-group {
        min-width: auto;
    }
    
    .seguro-calculate-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .seguro-parcelas-num {
        font-size: 2.8rem;
    }
    
    .seguro-value {
        font-size: 1.6rem;
    }
    
    .seguro-parcelas-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .seguro-examples-grid,
    .seguro-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .seguro-detailed-explanation {
        padding: 1.5rem;
    }
    
    .seguro-detailed-explanation h3 {
        font-size: 1.3rem;
    }
    
    .seguro-legal-container {
        gap: 1.5rem;
    }
    
    .seguro-legal-section {
        padding: 1rem;
    }
    
    .seguro-legal-item {
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .seguro-legal-artigo {
        min-width: 180px;
        font-size: 0.85rem;
        padding: 0.7rem 0.9rem;
    }
    
    .seguro-calculo-detalhe {
        padding: 1rem;
    }
    
    .seguro-calculo-detalhe p {
        font-size: 0.85rem;
    }
    
    .seguro-legal-section + .seguro-legal-section {
        margin-top: 2rem;
    }
    
    .seguro-table {
        font-size: 0.8rem;
    }
    
    .seguro-table th,
    .seguro-table td {
        padding: 0.5rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .seguro-header h1 {
        font-size: 1.8rem;
    }
    
    .seguro-container {
        padding: 0.8rem;
    }
    
    .seguro-dados-basicos {
        padding: 0.8rem;
    }
    
    .seguro-calculate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .seguro-parcelas-num {
        font-size: 2.5rem;
    }
    
    .seguro-value {
        font-size: 1.4rem;
    }
    
    .seguro-currency {
        font-size: 1.1rem;
    }
    
    .seguro-item {
        padding: 0.6rem;
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .seguro-example-icon {
        font-size: 2rem;
    }
    
    .seguro-detailed-explanation {
        padding: 1rem;
    }
    
    .seguro-detailed-explanation h3 {
        font-size: 1.2rem;
    }
    
    .seguro-legal-section {
        padding: 0.8rem;
    }
    
    .seguro-legal-section h4 {
        font-size: 1.1rem;
    }
    
    .seguro-legal-artigo {
        min-width: 160px;
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
        align-self: center;
    }
    
    .seguro-legal-content p {
        font-size: 0.9rem;
    }
    
    .seguro-calculo-detalhe p {
        font-size: 0.8rem;
    }
    
    .seguro-legal-footer {
        padding: 1rem;
    }
    
    .seguro-legal-footer p {
        font-size: 0.85rem;
    }
    
    .seguro-legal-section + .seguro-legal-section {
        margin-top: 1.5rem;
    }
    
    .seguro-requisitos-grid {
        gap: 0.5rem;
    }
    
    .seguro-requisito-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}