/* Estilos personalizados para detalles finos */
.accordion-content { transition: max-height 0.3s ease-out, padding 0.3s ease; }
.sticky-atc { box-shadow: 0 -4px 10px rgba(0,0,0,0.1); }
.bundle-card.selected { border: 2px solid #2D5A27; background-color: #F0FDF4; }

/* Animaciones */
.fade-in-section { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; will-change: opacity, visibility; }
.fade-in-section.is-visible { opacity: 1; transform: none; }
.whatsapp-bubble { background-color: #DCF8C6; border-radius: 7.5px; position: relative; }

/* Notificación de Ventas Recientes */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 40;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
    border-left: 4px solid #2D5A27;
    font-size: 0.85rem;
}
.sales-notification.active { transform: translateX(0); }
.sales-notification img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

@media (max-width: 768px) {
    .sales-notification {
        bottom: 90px; /* Encima del Sticky ATC */
        left: 10px;
        right: auto;
        max-width: 90%;
    }
}

/* Botón Flotante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
@media (max-width: 768px) {
    .whatsapp-float { bottom: 100px; right: 15px; }
}

/* Estilos Formulario High-Conversion */
.input-group label { font-size: 0.85rem; font-weight: 700; color: #374151; margin-bottom: 0.25rem; display: block; }
.input-group input, .input-group select { width: 100%; padding: 0.75rem; border: 1px solid #D1D5DB; border-radius: 0.5rem; outline: none; transition: all 0.2s; }
.input-group input:focus, .input-group select:focus { border-color: #2D5A27; box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1); }
.summary-box { background-color: #F3F4F6; border-left: 4px solid #2D5A27; padding: 1rem; border-radius: 0.5rem; margin-bottom: 1.5rem; }
.checkbox-wrapper { display: flex; align-items: start; gap: 0.75rem; font-size: 0.85rem; color: #4B5563; margin-bottom: 1.5rem; }
.checkbox-wrapper input { margin-top: 0.25rem; width: 1.25rem; height: 1.25rem; accent-color: #2D5A27; }