/* View: Views/ContoTermico/Step1.cshtml */
header#header {
    display: none !important;
}

#footer {
    display: none !important;
}


.ct-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
    padding: clamp(90px, 13vh, 150px) 0 clamp(40px, 6vh, 70px);
    margin-bottom: 10px;
}

    .ct-hero::before {
        content: "";
        position: absolute;
        top: -25%;
        left: 50%;
        transform: translateX(-50%);
        width: 900px;
        height: 520px;
        max-width: 130%;
        background: radial-gradient(ellipse at center, rgba(0, 159, 218, 0.10) 0%, rgba(0, 159, 218, 0) 70%);
        pointer-events: none;
        z-index: 0;
    }

.ct-hero-inner {
    position: relative;
    z-index: 1;
}

.ct-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6e6e73;
    background: #f5f5f7;
    border: 1px solid #e4edf5;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}


.ct-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.ct-hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.5;
    color: #6e6e73;
    max-width: 640px;
    margin: 0 auto 28px;
}

.ct-cer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #009fda;
    background: rgba(0, 159, 218, 0.08);
    border: 1px solid rgba(0, 159, 218, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.ct-hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.ct-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1d1d1f;
    background: #ffffff;
    border: 1px solid #e4edf5;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

    .ct-chip i {
        color: #009fda;
        font-size: 1.1rem;
    }

@media (max-width: 576px) {
    .ct-hero {
        padding-top: 80px;
    }

    .ct-hero-chips {
        flex-direction: column;
        align-items: center;
    }
}


.step-indicator {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #6c757d;
    position: relative;
    z-index: 2;
}

.step.active .step-number {
    background: #009fda;
    color: white;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step-label {
    font-weight: 600;
    color: #6c757d;
    text-align: center;
}

.step.active .step-label {
    color: #009fda;
}

.step-line {
    position: absolute;
    top: 25px;
    left: 50%;
    right: -50%;
    height: 3px;
    background: #e9ecef;
    z-index: 1;
}

.step:last-child .step-line {
    display: none;
}

.calculator-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 40px;
}

.form-section {
    margin-bottom: 30px;
}

    .form-section h3 {
        color: #009fda;
        font-weight: 600;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #009fda;
    }

.form-control:focus {
    border-color: #009fda;
    box-shadow: 0 0 0 0.2rem rgba(0, 159, 218, 0.25);
}

.btn-primary-custom {
    background: linear-gradient(135deg, #009fda 0%, #007db8 100%);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: white;
}

    .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 159, 218, 0.3);
    }

.info-box {
    background: #e7f6fd;
    border-left: 4px solid #009fda;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

    .info-box i {
        color: #009fda;
        font-size: 1.5rem;
        margin-right: 10px;
    }

.disclaimer-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

    .disclaimer-box i {
        color: #ffc107;
        font-size: 1.5rem;
        margin-right: 10px;
    }

.required-note {
    color: #dc3545;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-label .required {
    color: #dc3545;
    font-weight: bold;
}
