/* ROOT */
:root{
    font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Radio Buttons */
.radio {
    --radio: #fdce03;
    --radio-border: #d1d5db;
    display:inline-flex; 
    align-items:center;
    gap:.5rem; 
    cursor:pointer;
    user-select:none;
}

.radio__input {
    position:absolute;
    opacity:0; 
    width:1px; 
    height:1px;
    margin:-1px; 
    padding:0;
    overflow:hidden;
}

.radio__control {
    width:18px; 
    height:18px; 
    border-radius:50%;
    border:2px solid var(--radio-border);
    display:grid; 
    place-items:center;
    transition:border-color .15s ease;
}

.radio__control::before{
    content:""; 
    width:10px; 
    height:10px; 
    border-radius:50%;
    background:var(--radio);
    transform:scale(0); transition:transform .12s ease-in-out;
}

.radio__input:checked + .radio__control::before { transform:scale(1); }
.radio__input:focus + .radio__control { outline:2px solid color-mix(in srgb, var(--radio) 60%, white); outline-offset:2px; }
.radio__input:disabled + .radio__control { opacity:.5; cursor:not-allowed; }

/* Titulo y subtitulo */
h1.sombra-personalizada{ font-size: 48px; line-height: 50px; }
p.sombra-personalizada{ font-size: 20px; color: #ebe6e7; }

/* Calendario */
.date-pretty .input-group-text {
    background: #f8f9fa;
    border-right: 0;
}
.date-pretty .form-control {
    border-left: 0;
}

.date-pretty .form-control:focus,
.date-pretty .input-group-text:has(+ .form-control:focus) {
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
    border-color: #86b7fe;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: .6;
    transition: opacity .15s ease-in-out, transform .05s ease-in-out;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Boton Precios */
.btn_precios{
    background: #fdce03 !important;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
}
.btn_precios:hover{
    opacity: 2;
    background-color: #e0b602;
    transform: scale(1.03);
}
.disabled{
    opacity: .5;
}

/* Contenido */
.titulo-cards{
    font-size: 30px;
}
.subtitulo_card{ font-size: 16px; }
.texto_card{ font-size: 14px; }

.card{
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    border-color:rgba(253,206,3,.35);
}

.card-img-top {
    height: 300px;
    object-fit: cover;
}
.bi{
    color: #fdce03;
}