:root {
    --yext-pink: #D81B60;
    --yext-green: #2E7D32;
    --yext-sand: #FDFBF7;
}

.text-yext-red {
    color: var(--yext-pink) !important;
}

.bg-yext-red {
    background-color: var(--yext-pink) !important;
}

.bg-sand {
    background-color: var(--yext-sand);
}

.x-small {
    font-size: 11px;
}

.tracking-widest {
    letter-spacing: 3px;
}

#headerWizard strong {
    color: var(--yext-green);
    font-weight: 700;
}

#headerWizard .lead {
    font-size: 1.15rem;
    line-height: 1.6;
}
.min-h-terms {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.term-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

.term-slide {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Transición suave para el encabezado */
#headerWizard {
    transition: all 0.5s ease-in-out;
}

    /* Estado compacto: Ocultamos lo innecesario y reducimos fuentes */
    #headerWizard.header-compact {
        margin-bottom: 1rem !important;
    }

        #headerWizard.header-compact h1 {
            font-size: 1.5rem;
        }

        #headerWizard.header-compact .lead,
        #headerWizard.header-compact .title-line,
        #headerWizard.header-compact .mx-3 {
            display: none !important;
        }

        #headerWizard.header-compact .small {
            font-size: 0.75rem;
            margin-bottom: 0 !important;
        }

#wizardContentColumn.col-lg-8 {
    transition: all 0.4s ease;
}

/* Ocultar el selector por defecto, mostrarlo solo cuando el paquete está seleccionado */
.pkg-card .duration-select {
    display: none !important;
}

.pkg-card.selected .duration-select {
    display: block !important;
}

/* Mostrar el texto "Desde" por defecto, ocultarlo cuando el paquete está seleccionado */
.pkg-card .price-preview {
    display: block;
}

.pkg-card.selected .price-preview {
    display: none;
}

/* Estilo para el precio cuando no está seleccionado (más discreto) */
.pkg-card:not(.selected) .pkg-price-label {
    color: #6c757d !important; /* Gris */
    font-size: 1.1rem;
}


/* Términos y Condiciones */
.term-number {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: var(--yext-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Cactus Sprite (Verde Bosque) */
.cactus-sprite-dynamic {
    width: 60px;
    height: 60px;
    background: url('../images/cactus_sprite.png') no-repeat;
    background-size: 400% 400%;
    filter: invert(34%) sepia(85%) saturate(394%) hue-rotate(84deg) brightness(92%) contrast(89%);
}


/* Asegurar cursor pointer y transición suave */
.selection-card {
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #eee;
}

    /* Efecto Hover */
    .selection-card:hover {
        border-color: rgba(216, 27, 96, 0.3);
        background-color: #FDFBF7;
        transform: translateY(-4px);
    }

/* ESTADO SELECCIONADO: Rosa Tenue y Borde Rosa Mexicano */
input[type="radio"]:checked + .selection-card {
    background-color: #FFF0F5 !important; /* Rosa Tenue */
    border: 2px solid var(--yext-pink) !important; /* Rosa Mexicano */
    box-shadow: 0 8px 20px rgba(216, 27, 96, 0.15);
}

    /* Ajuste opcional para que el texto resalte al seleccionar */
    input[type="radio"]:checked + .selection-card h6 {
        color: var(--yext-pink);
    }



/* Paquetes */
.pkg-card {
    border: 2px solid #eee;
    cursor: pointer;
    border-radius: 15px;
    position: relative;
    transition: 0.3s;
}

    .pkg-card.selected {
        border-color: var(--yext-pink);
        background: white;
    }

.pkg-badge-num {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: var(--yext-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Steps */
.step-indicator {
    flex: 1;
    text-align: center;
    color: #ccc;
}
    .step-indicator p {
        font-size: 9px; /* Un poco más pequeño para que no choquen los textos */
    }

    .step-indicator span {
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 28px;
        border: 2px solid #eee;
        border-radius: 50%;
        background: white;
        font-weight: bold;
    }

    .step-indicator.active {
        color: var(--yext-pink);
    }

        .step-indicator.active span {
            background: var(--yext-pink);
            border-color: var(--yext-pink);
            color: white;
        }

.transition-all {
    transition: all 0.4s ease;
}

/* Estilo Dropzone */
.drop-zone {
    border: 2px dashed #ddd;
    border-radius: 15px;
    background-color: #fcfcfc;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .drop-zone:hover, .drop-zone.dragover {
        border-color: var(--yext-pink);
        background-color: var(--yext-sand);
    }

/* Miniaturas */
.photo-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

    .photo-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.remove-photo {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(216, 27, 96, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

    .remove-photo:hover {
        transform: scale(1.1);
        background: #b0154b;
    }