html {
    background-image: url("../img/fondo.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink) 50%, var(--light-beige) 50%, var(--light-beige) 100%);
    min-height: 100vh;
    padding: 100px 0 40px 0;
}

.logo-container {
    background-color: #EFEDEB;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}


.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-navy);
    margin-bottom: 10px;
    line-height: 1.2;
}

.subtitle {
    color: var(--dark-navy);
    font-size: 1rem;
    margin-bottom: 30px;
}

.panel-izq {
    margin-top: -121px !important;
}

.simulation-box {

    border-radius: 10px;
    padding: 30px;

}

.select-wrapper input.select-dropdown {
    color: white !important;
}

.select-wrapper {
    background: var(--dark-navy);
    border-radius: 5px;
    margin-bottom: 1px;
}

.select-wrapper #carrera {
    padding-right: 40px !important;
}

.select-wrapper .caret {
    fill: white !important;
}


.discount-text {
    color: var(--dark-navy);
    font-size: 0.85rem;
    margin-top: 5px;
}

.total-display {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-navy);
    margin-bottom: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.total-label {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.discount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #fff3cd;
    border-radius: 5px;
    margin-bottom: 8px;
}

.discount-label {
    font-weight: 500;
    color: var(--dark-navy);
}

.discount-value {
    font-weight: bold;
    color: var(--dark-navy);
}

.total-payment-card {
    background-color: #FF65E8;
    color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.total-payment-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.total-payment-amount {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.total-payment-savings {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-custom {
    background-color: #323741;
    color: white;
    border-radius: 5px;
    text-transform: none;
    font-weight: 500;
    margin: 5px;
}

.btn-custom:hover {
    background: #1a252f;
}

.financing-section {
    background: var(--light-beige);
    padding: 60px 0;
}

.financing-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-navy);
    margin-bottom: 30px;
}

.financing-amount {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-navy);
    margin-bottom: 30px;
}

.financing-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.financing-btn {
    background: var(--dark-navy);
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.financing-btn:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

/* Estilos específicos para inputs de financiamiento al estilo calculadora (Dark) */
.financing-input-group {
    background-color: #323741;
    /* Dark Grey like calculator */
    padding: 0 15px;
    border-radius: 5px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border: none;
}

.financing-section .input-field input[type=text] {
    height: 3rem !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
    color: white !important;
    font-weight: 500;
    box-sizing: border-box;
    line-height: 3rem;
}

.financing-section .select-wrapper input.select-dropdown {
    padding-top: 10px !important;
    color: white !important;
    border-bottom: none !important;
}

.financing-section .input-field input[type=text]:focus {
    border-bottom: 2px solid var(--primary-pink) !important;
    box-shadow: 0 1px 0 0 var(--primary-pink) !important;
}

.financing-section .input-field label {
    color: var(--dark-navy) !important;
    font-size: 1rem;
    font-weight: 500;
    top: -0px !important;
    left: 0px !important;
    transition: transform .2s ease-out, color .2s ease-out;
}

.financing-section .input-field label.active {
    color: var(--dark-navy) !important;
    font-weight: 600 !important;
    transform: translateY(-25px) scale(0.8) !important;
    transform-origin: 0 0;
}

.financing-section .select-wrapper .caret {
    fill: white !important;
    right: 10px !important;
    top: 20px !important;
}

.financing-section .dropdown-content li>span {
    color: var(--dark-navy) !important;
}

.simulation-table {
    margin-top: 30px;
}

.simulation-table .selector strong {
    font-weight: 700;
    font-size: 17px;
}

.table-header {
    background-color: #2A2E35;
    color: white;
    padding: 15px;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.table-row {
    background-color: #2A2E35;
    color: white;
    padding: 15px;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.dots {
    text-align: center;
    letter-spacing: 10px;
    color: var(--dark-navy);
    font-size: 2rem;
    margin: 20px 0;
}

.right-panel-container {
    position: relative;
    background-image: url("../img/banner1.png");
    background-position: top center;
    background-repeat: no-repeat;
background-size: 274px;
margin-top: -72px;
}

.right-panel-fixed {
    margin-top: 215px;
}

select:disabled {
  color:rgb(255, 255, 255) !important;
}

#convenio {
  margin-top: 39px;
}



/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        background: var(--primary-pink);
    }

    .logo-container {

        background: var(--primary-pink);
    }

    .main-title {
        font-size: 2rem;
    }

    .right-panel-fixed {
        position: relative;
        top: 0;
        width: 100%;
    }

    .total-payment-card.mobile-fixed {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        margin: 0;
        border-radius: 0;
        box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    }

    .financing-options {
        grid-template-columns: 1fr;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .financing-section {
        padding-bottom: 250px;
    }
}

@media (max-width: 600px) {
    .main-title {
        font-size: 1.5rem;
    }

    .total-payment-title {
        font-size: 1.5rem;
    }

    .total-payment-amount {
        font-size: 1.2rem;
    }
}

.selector {
    background-color: #323741;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    width: 100%;
}