/* Variables CSS para colores */
:root {
    --text-color: #333333;
    --button-color: #0474b4; /* Color Azul Principal del archivo Estetica.html */
    --discount-color: #e53e3e; /* Rojo para el descuento */
    --price-color: #38a169; /* Verde Vistoso para el precio principal */
    --link-color: #0474b4; /* Azul para enlaces y correo */
}

/* Estilos generales y fuente principal */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: white;
    min-height: 100vh;
    /* Usamos padding-bottom para asegurar espacio debajo del contenido y evitar que el footer fijo lo cubra */
    padding-bottom: 4rem; 
    overflow-x: hidden;
    display: flex;
    flex-direction: column; /* Asegura que el contenido fluya verticalmente */
    align-items: center;
}

/* Animación de desvanecido para la página */
.fade-in-page {
    animation: fadeIn 0.9s ease-out forwards;
    opacity: 0;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Estilo para el botón de CTA (Comprar Ahora) */
.btn-primary {
    background-color: var(--button-color);
    color: white;
    border-radius: 0; /* Sin esquinas redondeadas */
    transition: all 0.3s ease-in-out;
    border: 2px solid var(--button-color);
    font-weight: 900;
}
.btn-primary:hover {
    background-color: white;
    color: var(--button-color);
    border-color: var(--button-color);
}

/* Estilos para el carrusel de testimonios */
.testimonial-container {
    position: relative;
    height: 150px; /* Altura fija para el contenedor del carrusel */
    overflow: hidden;
}
.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding: 1rem;
}
.testimonial-card.active {
    opacity: 1;
}

/* Estilo para el contenido desplegable (inicialmente oculto) */
.content-hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}
.content-visible {
    max-height: 500px; /* Suficiente para mostrar el contenido */
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Estilo para el icono de la flecha de contenido */
.chevron-icon {
    transition: transform 0.3s ease-in-out;
}
.chevron-up {
    transform: rotate(180deg);
}