/* ===================================
   CALCULADORA DE DIMENSIONAMENTO DE DISJUNTORES - ENGENHARIA ELÉTRICA
   ================================== */

/* Variáveis CSS - Engenharia Elétrica */
:root {
    --eletrica-primary: #1e3a8a;       /* Azul elétrico forte */
    --eletrica-secondary: #3b82f6;     /* Azul energia */
    --eletrica-accent: #fbbf24;        /* Amarelo voltagem */
    --eletrica-light: #dbeafe;         /* Fundo azul claro */
    --eletrica-dark: #1e40af;          /* Azul escuro */
    --eletrica-gradient: linear-gradient(135deg, #1e3a8a, #fbbf24);
}

/* Previne barra horizontal */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.dimensionamento-disjuntores-calculator-section,
.dimensionamento-disjuntores-container,
.dimensionamento-disjuntores-inputs,
.content {
    max-width: 100%;
    overflow-x: hidden;
}

/* ===================================
   SEÇÃO DA CALCULADORA DIMENSIONAMENTO DISJUNTORES
   ================================== */
.dimensionamento-disjuntores-calculator-section {
    margin-bottom: 3rem;
}

.dimensionamento-disjuntores-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dimensionamento-disjuntores-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: var(--eletrica-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dimensionamento-disjuntores-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.dimensionamento-disjuntores-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;
    max-width: 100%;
    overflow-x: hidden;
}

/* ===================================
   DADOS BÁSICOS
   ================================== */
.dimensionamento-disjuntores-dados-basicos {
    background: var(--eletrica-light);
    border: 2px solid var(--eletrica-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.dimensionamento-disjuntores-dados-basicos h3 {
    color: var(--eletrica-primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dimensionamento-disjuntores-input-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.dimensionamento-disjuntores-input-group {
    flex: 1;
    min-width: 200px;
}

.dimensionamento-disjuntores-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--eletrica-primary);
    font-size: 1rem;
}

.dimensionamento-disjuntores-input-group input,
.dimensionamento-disjuntores-input-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.dimensionamento-disjuntores-input-group input:focus,
.dimensionamento-disjuntores-input-group select:focus {
    border-color: var(--eletrica-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    transform: translateY(-2px);
}

.dimensionamento-disjuntores-input-group input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* ===================================
   BOTÕES
   ================================== */
.dimensionamento-disjuntores-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.dimensionamento-disjuntores-calculate-btn,
.dimensionamento-disjuntores-clear-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 160px;
}

.dimensionamento-disjuntores-calculate-btn {
    background: var(--eletrica-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.dimensionamento-disjuntores-calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.dimensionamento-disjuntores-clear-btn {
    background: #95a5a6;
    color: white;
}

.dimensionamento-disjuntores-clear-btn:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

/* ===================================
   RESULTADO
   ================================== */
.dimensionamento-disjuntores-resultado {
    background: var(--eletrica-light);
    border: 2px solid var(--eletrica-accent);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    animation: slideInUp 0.7s ease;
}

.dimensionamento-disjuntores-resultado h3 {
    color: var(--eletrica-primary);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.dimensionamento-disjuntores-resultado h3:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--eletrica-accent);
    transition: width 0.5s ease;
}

.dimensionamento-disjuntores-resultado h3.highlight:before {
    width: 100%;
}

.dimensionamento-disjuntores-resultado-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.dimensionamento-disjuntores-resultado-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e6ed;
    transition: all 0.3s ease;
}

.dimensionamento-disjuntores-resultado-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.dimensionamento-disjuntores-resultado-item.recomendacao {
    border: 2px solid var(--eletrica-accent);
    background: linear-gradient(135deg, #fff 0%, var(--eletrica-light) 100%);
}

.dimensionamento-disjuntores-resultado-label {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.dimensionamento-disjuntores-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--eletrica-primary);
    margin-bottom: 0.3rem;
}

.dimensionamento-disjuntores-unit {
    color: var(--eletrica-secondary);
    font-size: 1rem;
    font-weight: 600;
}

/* ===================================
   EXPLICAÇÃO DO CÁLCULO
   ================================== */
.dimensionamento-disjuntores-detailed-explanation {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid var(--eletrica-primary);
    animation: fadeIn 0.8s ease;
}

.dimensionamento-disjuntores-detailed-explanation h3 {
    color: var(--eletrica-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dimensionamento-disjuntores-calculo-detalhe {
    background: var(--eletrica-light);
    border: 1px solid var(--eletrica-accent);
    border-radius: 10px;
    padding: 1.2rem;
    margin-top: 0.5rem;
    font-family: 'Courier New', monospace;
}

.dimensionamento-disjuntores-calculo-detalhe p {
    color: var(--eletrica-dark);
    font-size: 0.9rem;
    margin: 0.4rem 0;
    line-height: 1.5;
}

.dimensionamento-disjuntores-calculo-detalhe p:first-child {
    font-weight: bold;
    color: var(--eletrica-primary);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-family: inherit;
}

/* ===================================
   FUNDAMENTAÇÃO TEÓRICA - ESTILIZADA
   ================================== */
.dimensionamento-disjuntores-theoretical-foundation {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0 2rem 0;
    border: 2px solid var(--eletrica-primary);
    animation: fadeIn 0.8s ease;
    position: relative;
    overflow: hidden;
}

.dimensionamento-disjuntores-theoretical-foundation:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--eletrica-gradient);
}

.dimensionamento-disjuntores-theoretical-foundation h3 {
    color: var(--eletrica-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dimensionamento-disjuntores-foundation-content {
    position: relative;
    z-index: 1;
}

.dimensionamento-disjuntores-foundation-content p {
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.dimensionamento-disjuntores-foundation-content strong {
    color: var(--eletrica-primary);
    font-weight: 600;
}

.dimensionamento-disjuntores-foundation-content h4 {
    color: var(--eletrica-primary);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===================================
   EXEMPLOS RÁPIDOS
   ================================== */
.dimensionamento-disjuntores-examples {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.dimensionamento-disjuntores-examples p {
    color: var(--eletrica-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.dimensionamento-disjuntores-example-btn {
    background: white;
    border: 2px solid var(--eletrica-primary);
    color: var(--eletrica-primary);
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dimensionamento-disjuntores-example-btn:hover {
    background: var(--eletrica-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(30, 58, 138, 0.3);
}

/* ===================================
   AVISO LEGAL
   ================================== */
.dimensionamento-disjuntores-legal-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.dimensionamento-disjuntores-legal-note h4 {
    color: #856404;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dimensionamento-disjuntores-legal-note p {
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   CONTEÚDO EDUCACIONAL - VISUAL OBRIGATÓRIO
   ================================== */
/* Container educacional principal */
.educational-content {
    margin-top: 3rem;
}

.educational-content h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    border-bottom: 3px solid var(--eletrica-primary);
    padding-bottom: 1rem;
    background: var(--eletrica-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Cards educacionais - ESSENCIAL para visual bonito */
.content-block {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e6ed;
    border-left: 4px solid var(--eletrica-primary);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left-color: var(--eletrica-accent);
}

.content-block h3 {
    color: var(--eletrica-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-block h4 {
    color: #2c3e50;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.content-block p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-block ol,
.content-block ul {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-block li {
    margin-bottom: 0.5rem;
}

/* ===================================
   FÓRMULAS - Visual destacado obrigatório
   ================================== */
.formula-highlight {
    background: linear-gradient(135deg, var(--eletrica-light) 0%, rgba(255,255,255,0.9) 100%);
    border: 2px solid var(--eletrica-primary);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.formula-main {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--eletrica-primary);
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

.formula-highlight small {
    color: var(--eletrica-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Grid de fórmulas */
.formulas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.formula-item {
    background: white;
    border: 2px solid var(--eletrica-primary);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.formula-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
}

.formula-item h4 {
    color: var(--eletrica-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.formula {
    background: var(--eletrica-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 0.9rem;
    margin: 1rem 0;
    display: inline-block;
}

.formula-item p {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   EXEMPLOS - Bordas coloridas obrigatórias
   ================================== */
.example-item {
    background: var(--eletrica-light);
    border-left: 4px solid var(--eletrica-accent);
    border-radius: 0 8px 8px 0;
    padding: 1.5rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.example-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.example-calculation {
    background: white;
    border: 1px solid var(--eletrica-primary);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    font-family: 'Courier New', monospace;
}

.example-calculation p {
    color: var(--eletrica-dark);
    font-size: 0.9rem;
    margin: 0.3rem 0;
    line-height: 1.4;
}

.example-calculation p strong {
    color: var(--eletrica-primary);
}

/* ===================================
   DICAS - Lista estilizada obrigatória
   ================================== */
.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    background: var(--eletrica-light);
    border-left: 4px solid var(--eletrica-primary);
    border-radius: 0 8px 8px 0;
    padding: 0.8rem;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
}

.tips-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.tips-list li strong {
    color: var(--eletrica-primary);
}

/* ===================================
   APLICAÇÕES - Grid colorido obrigatório
   ================================== */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.application-item {
    background: linear-gradient(135deg, white 0%, var(--eletrica-light) 100%);
    border: 1px solid var(--eletrica-primary);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.application-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
}

.application-item h4 {
    color: var(--eletrica-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.application-item p {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   REFERÊNCIAS - Lista personalizada obrigatória
   ================================== */
.references-list {
    list-style: none;
    padding: 0;
}

.references-list li {
    background: #f8f9fa;
    border-left: 4px solid var(--eletrica-secondary);
    padding: 0.8rem;
    margin: 0.5rem 0;
    border-radius: 0 8px 8px 0;
    color: #2c3e50;
    font-size: 0.9rem;
    line-height: 1.5;
}

.references-list li em {
    color: var(--eletrica-primary);
    font-weight: 600;
}

.accuracy-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.accuracy-note h5 {
    color: #856404;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accuracy-note p {
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   ANIMAÇÕES
   ================================== */
@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   RESPONSIVIDADE
   ================================== */
@media (max-width: 768px) {
    .dimensionamento-disjuntores-header h1 {
        font-size: 2rem;
    }
    
    .dimensionamento-disjuntores-input-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dimensionamento-disjuntores-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .dimensionamento-disjuntores-calculate-btn,
    .dimensionamento-disjuntores-clear-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .dimensionamento-disjuntores-resultado-grid {
        grid-template-columns: 1fr;
    }
    
    .formulas-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
}