/* ========== GENERAL STYLES ========== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    padding-top: 80px;
    flex: 1;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-button img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* ------------------INDEX-------------------------- */
/* ========== HEADER ========== */
/* Estilos generales para el menú */
header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 5px 20px;
    border-bottom: 1px solid #444;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    height: 120px;
    width: auto;
    max-width: 150px;
    margin-right: 50px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

/* Estilos para el menú en dispositivos móviles */
.menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
}

.menu li a.active {
    position: relative;
    color: #fff;
    font-weight: bold;
}

.menu li a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    bottom: -5px;
    left: 0;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.menu li a:hover {
    background-color: rgba(68, 68, 68, 0.8);
    transform: scale(1.05);
    color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../img/fondo.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    backdrop-filter: blur(5px);
}

.hero-content {
    position: relative;
    color: white;
    padding: 20px;
    z-index: 1;
    max-width: 800px;
    animation: fadeIn 2s ease-in-out;
}

.hero-content h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    font-weight: bold;
    animation: fadeInUp 1.5s ease-in-out;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #3becb7, #fad0c4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.8em;
    margin-bottom: 40px;
    animation: fadeInUp 1.5s ease-in-out 0.5s;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    color: #f0f0f0;
}

.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.hero-image-container {
    width: 220px !important;
    height: 220px !important;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-image-container.floating {
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.5);
    filter: brightness(1.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* ========== PRODUCT PRESENTATION ========== */
.product-presentation {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    margin: 4rem auto;
    position: relative;
    overflow: hidden;
}

.presentation-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
}

.section-main-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.highlight-bar {
    width: 80px;
    height: 4px;
    background: #5dc1b9;
    margin: 1.5rem 0;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.4rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.wellness-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(93, 193, 185, 0.08);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #5dc1b9;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-text h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-text p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 1rem;
}

.presentation-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ========== IMAGE SLIDER ========== */
.image-slider {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    background-color: transparent; /* Fondo transparente */
}

.slider-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
    background-color: transparent;
    animation: imageFlow 12s infinite;
}

@keyframes imageFlow {
    0% { opacity: 1; transform: scale(1); }
    25% { opacity: 1; transform: scale(1); }
    30% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(1.1); }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    mix-blend-mode: multiply;
}

/* Sección de Beneficios */
.benefits {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5em;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: #5dc1b9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    text-align: center;
    margin-bottom: 20px;
}

.benefit-icon img {
    width: 80px;
    height: auto;
}

.benefit-card h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
}

.scientific-info {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 10px;
}

.scientific-info ul {
    list-style-type: none;
    padding-left: 20px;
}

.scientific-info li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    line-height: 1.6;
}

.scientific-info li::before {
    content: "▸";
    color: #5dc1b9;
    position: absolute;
    left: 0;
}

/* Sección de Ventas */
.sales-info {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sales-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 20px auto;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #5dc1b9;
}

.info-icon {
    text-align: center;
    margin-bottom: 15px;
}

.info-icon img {
    width: 60px;
    height: auto;
}

.info-card h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
}

.info-card ul {
    list-style-type: none;
    padding-left: 20px;
}

.info-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.info-card li::before {
    content: "•";
    color: #5dc1b9;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta-button {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    padding: 12px 25px;
    background: #5dc1b9;
    color: white;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #4aa89f;
}

.additional-info {
    max-width: 800px;
    margin: 30px auto 0;
    padding: 15px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 5px solid #ffc107;
    text-align: center;
    color: #856404;
}
/* ========== CAROUSEL ========== */
/* ========== CAROUSEL ========== */
.carousel {
    position: relative;
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 33.33%; /* 3 imágenes visibles en desktop */
    box-sizing: border-box;
    padding: 0 10px;
    transition: transform 0.3s ease;
}

/* Botones de navegación del carrusel */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-slide img {
    width: 100%;
    height: 300px; /* Altura base en desktop */
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Efecto Zoom */
.zoom-active {
    overflow: hidden;
}

.zoomed-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    z-index: 10001;
    animation: smoothZoom 0.3s ease-out;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    cursor: zoom-out;
}

@keyframes smoothZoom {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.carousel-slide {
    transition: transform 0.3s ease;
}



@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


/* ------------------INDEX-------------------------- */



/* ------------------NUESTROS PRODUCTOS-------------------------- */

/* ESTILOS ESPECÍFICOS PARA SERVICIOS */
main {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 4rem 0;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    max-width: 1200px;
    overflow: hidden; /* Aseguramos que el contenedor corte cualquier exceso */
    width: 100%; /* Garantizamos que ocupe el ancho disponible */
    box-sizing: border-box; /* Incluimos padding en el cálculo del ancho */
}

.product:hover {
    transform: translateY(-5px);
}


.description {
    flex: 1;
    min-height: 300px; /* Asegura que ambas descripciones tengan la misma altura */
    padding: 1.5rem;
}

.description h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.description h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #5dc1b9;
}
/* Estilos para la nueva sección de características incluidas */
.included-features {
    margin-top: 2rem;
    background: #fff !important;
    border: 2px solid #5dc1b9;
}

.included-features .type-description {
    padding-right: 2rem;
}
/* Estilos para el nuevo título */
.tinaja-types-title {
    font-size: 2rem;
    color: #2c3e50;
    margin: 3rem 0 2rem;
    position: relative;
    text-align: center;
}

.tinaja-types-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #5dc1b9;
}

.delivery-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-weight: 600;
    color: #2c3e50;
    border-left: 4px solid #5dc1b9;
}


.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Espacio entre el ícono y el texto */
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}


.product-features li::before {
    content: "✓";
    color: #5dc1b9;
    font-weight: bold;
}

.product img {
    width: 100%; /* La imagen siempre ocupa el ancho disponible */
    max-width: 500px; /* Límite en desktop */
    height: auto; /* Respetamos proporciones */
    max-height: 350px; /* Límite de altura */
    object-fit: cover; /* Mantenemos cover para recortar si es necesario */
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    flex: 0 1 auto; /* Cambiamos flex para priorizar ancho controlado */
    display: block; /* Aseguramos que sea un elemento de bloque */
}

.product img:hover {
    transform: scale(1.03);
}

/* NUEVOS ESTILOS PARA LAS SECCIONES AMPLIADAS */

.product-category {
    margin: 4rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-category h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
}

.product-category h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #5dc1b9;
}

.product-type {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.product-type:nth-child(even) {
    flex-direction: row-reverse;
}

.product-type img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.type-description {
    flex: 1;
}

.type-description h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.accessories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.accessory {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.accessory:hover {
    transform: translateY(-5px);
}

.accessory img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.accessory-info {
    padding: 1.5rem;
    text-align: center;
}

.accessory-info h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.accessory-info p {
    font-size: 0.9rem;
    color: #6c757d;
}



/* ------------------NUESTROS PRODUCTOS-------------------------- */

/* ------------------NOSOTROS-------------------------- */
/* Estilos mejorados para la sección "Sobre Nosotros" */
.about-section {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 50px;
    /* Quitamos la imagen de fondo de aquí */
    background: none;
}

/* Capa de fondo con blur */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/foto\ fondo.jpg'); /* Movemos la imagen aquí */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px); /* Ajusta el valor (en px) para más o menos desenfoque */
    z-index: -1; /* Coloca la imagen detrás de todo */
}

/* Capa de superposición para oscurecer (opcional) */
.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Capa gris semitransparente */
    z-index: 0; /* Encima de la imagen, debajo del contenido */
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    background: none; /* Fondo transparente */
    border-radius: 15px;
    box-shadow: none;
    padding: 40px;
    position: relative;
    z-index: 1; /* Sobre las capas de fondo */
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 2px solid #5dc1b9;
    border-radius: 20px;
    z-index: -1;
    box-sizing: border-box; /* Incluye el borde en las dimensiones */
}

.about-info {
    flex: 1;
    max-width: 60%;
}

.about-title {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #5dc1b9;
}

.about-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-image-container {
    flex: 1;
    max-width: 40%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    border: 3px solid #5dc1b9; /* Marco simple de 3px en turquesa */
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: 1;
}

.about-image-container video {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}



/* ========== MISSION/VISION SECTION ========== */
.mission-vision-section {
    padding: 4rem 2rem;
    background: var(--background-light);
}

.mission-vision-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-box, .vision-box, .values-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.mission-icon, .vision-icon, .values-icon {
    font-size: 2.5rem;
    color: #5dc1b9; /* Color de los iconos */
    margin-bottom: 1rem;
}

.values-box ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.values-box li {
    margin: 1rem 0;
    display: flex;
    justify-content: center; /* Centramos horizontalmente los elementos dentro del li */
    align-items: center; /* Centramos verticalmente */
    gap: 0.5rem;
}

.values-box li i {
    color: #5dc1b9; /* Color de los iconos */
    font-size: 1.2rem;
}

/* ========== PROCESS SECTION ========== */
.process-section {
    padding: 5rem 2rem;
    background: #fff;
}

.process-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.step-container:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #5dc1b9; /* Color de los números */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.step-content {
    text-align: center;
}

.step-image {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.step-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.step-container:hover .step-image img {
    transform: scale(1.05);
}

.step-header {
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    margin-bottom: 30px;
}

.step-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========== DEDICATION SECTION ========== */
.dedication-section {
    padding: 50px 20px;
    background-color: #fff;
}

.dedication-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.dedication-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.dedication-video {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.dedication-video video {
    width: 100%;
    height: auto;
}

/* ========== ANIMATIONS ========== */
.animate__animated {
    animation-duration: 1s;
}

.animate__fadeIn { animation-name: fadeIn; }
.animate__fadeInLeft { animation-name: fadeInLeft; }
.animate__fadeInRight { animation-name: fadeInRight; }
.animate__fadeInUp { animation-name: fadeInUp; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ========== ABOUT SECTION ========== */


/* ------------------------------Contacto------------------------------ */
/* Contact Section */
.contact-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-in-out;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.contact-images {
    display: flex;
    gap: 15px;
    animation: fadeInLeft 1s ease-in-out;
}

.contact-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.1);
}

.contact-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 1s ease-in-out;
}

.contact-details {
    margin-bottom: 20px;
}

.contact-details h3 {
    font-size: 1.5em;
    color: #5dc1b9;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 1.1em;
    color: #666;
    margin: 5px 0;
}

.contact-social {
    text-align: center;
}

.contact-social h3 {
    font-size: 1.5em;
    color: #5dc1b9;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}
/* ------------------------------Contacto------------------------------ */


/* ------------------------------Sucursales---------------------- */


/* Sucursales */
.sucursal {
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
}

.sucursal-title {
    font-size: 2em;
    color: #5dc1b9;
    margin-bottom: 20px;
    text-align: center;
}

.sucursal-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.sucursal-info {
    flex: 1;
    min-width: 300px;
}

.sucursal-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.sucursal-map {
    position: relative;
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.map-button-container {
    text-align: center;
    margin-top: 10px;
}

.map-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5dc1b9;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    text-align: center;
    transition: background-color 0.3s ease;
}

.map-button:hover {
    background-color: #4aa8a1;
}
/* ------------------------------Sucursales---------------------- */
/* ------------------------------Sucursales---------------------- */
.sucursal {
    margin: 80px auto;
    max-width: 1300px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 30%, #ffffff 100%);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(19, 20, 20, 0.3);
    overflow: hidden;
    position: relative;
    border: 2px solid #000000;
    transition: transform 0.5s ease;
}

.sucursal:hover {
    transform: scale(1.02);
}

.sucursal-title {
    font-size: 3em;
    color: #000000; /* Letras negras */
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 6px rgba(93, 193, 185, 0.5); /* Sombra ajustada para contraste */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background: rgba(93, 193, 185, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
}

.sucursal-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.sucursal-info {
    flex: 1;
    min-width: 320px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sucursal-info:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(93, 193, 185, 0.3);
}

.sucursal-description {
    font-size: 1.3em;
    line-height: 1.7;
    color: #000000; /* Letras negras */
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: justify;
}

.sucursal-highlight {
    font-size: 1.2em;
    color: #000000; /* Letras negras */
    font-weight: 600;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(93, 193, 185, 0.2), rgba(255, 255, 255, 0.8));
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s ease;
}

.sucursal-highlight i {
    color: #5dc1b9; /* Mantengo el ícono en el color base */
}

.sucursal-highlight:hover {
    background: linear-gradient(90deg, rgba(93, 193, 185, 0.4), rgba(255, 255, 255, 1));
}

.sucursal-map {
    flex: 1;
    min-width: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.sucursal-map:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 40px rgba(93, 193, 185, 0.4);
}

.map-button-container {
    text-align: center;
    margin-top: 20px;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: #5dc1b9;
    color: #000000; /* Letras negras */
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(93, 193, 185, 0.5);
    font-family: 'Montserrat', sans-serif;
}

.map-button i {
    color: #000000; /* Ícono negro para consistencia */
}

.map-button:hover {
    background: #4aa8a1;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(93, 193, 185, 0.7);
}

/* ------------------------------FOOTER---------------------- */
/* Mantengo el footer original, pero ajusto algunos detalles para cohesión */
footer {
    background-color: #000;
    color: white;
    padding: 40px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #5dc1b9; /* Cambio a color base para consistencia */
}

.footer-section p {
    margin: 8px 0;
    font-size: 0.9em;
    color: #ccc;
}

.footer-section i {
    margin-right: 10px;
    color: #5dc1b9; /* Cambio a color base */
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links img {
    width: 30px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9em;
    color: #888;
}

.animated-logo {
    text-align: center;
    margin-bottom: 20px;
}

.floating {
    width: 80px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(93, 193, 185, 0.4));
}

@keyframes float {
    0% { transform: translateY(0px); filter: drop-shadow(0 5px 15px rgba(93, 193, 185, 0.4)); }
    50% { transform: translateY(-20px); filter: drop-shadow(0 15px 25px rgba(93, 193, 185, 0.6)); }
    100% { transform: translateY(0px); filter: drop-shadow(0 5px 15px rgba(93, 193, 185, 0.4)); }
}

.floating:hover {
    animation-play-state: paused;
    cursor: pointer;
}

/* ------------------------------FOOTER---------------------- */

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
/* ========== MEDIA QUERIES ========== */
@media (max-width: 1200px) {
    /* Ajustes generales para tablets grandes */
    .hero-content h1 {
        font-size: 3.5em;
    }
    
    .product-presentation {
        padding: 3rem 0;
    }
}

@media (max-width: 992px) {
    /* Tablets medianas */
    .presentation-content,
    .mission-vision-content,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .product-type {
        flex-direction: column;
    }
}

/* Responsive styles for Contact Section */
@media (max-width: 992px) {
    .contact-section {
        padding: 40px 15px;
    }

    .contact-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .contact-content {
        flex-direction: column;
        gap: 20px;
    }

    .contact-images {
        justify-content: center;
    }

    .contact-image {
        width: 150px;
        height: 150px;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-details h3 {
        font-size: 1.3em;
    }

    .contact-details p {
        font-size: 1em;
    }

    .contact-social h3 {
        font-size: 1.3em;
    }

    .social-icons img {
        width: 35px;
        height: 35px;
    }
}

/* Responsive para "Sobre Nosotros" */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 15px 30px;
    }

    .about-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .about-info {
        max-width: 100%;
        text-align: center;
    }

    .about-title {
        font-size: 2em;
    }

    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-description {
        font-size: 1em;
    }

    .about-image-container {
        max-width: 100%;
        border: 2px solid #5dc1b9;
    }

    .about-image-container video {
        width: 100%; /* Asegura que el video ocupe todo el ancho del contenedor */
        max-height: 300px; /* Ajusta la altura máxima para pantallas medianas */
        object-fit: cover; /* Recorta el contenido si es necesario */
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 10px 20px;
    }

    .about-content {
        padding: 15px;
        gap: 15px;
    }

    .about-title {
        font-size: 1.8em;
    }

    .about-description {
        font-size: 0.95em;
    }

    .about-image-container video {
        width: 100%; /* Asegura que el video ocupe todo el ancho del contenedor */
        max-height: 250px; /* Ajusta la altura máxima para pantallas pequeñas */
        object-fit: cover; /* Recorta el contenido si es necesario */
    }

    .about-content::before {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 2px solid #5dc1b9;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.5em;
    }

    .about-description {
        font-size: 0.9em;
    }

    .about-image-container video {
        max-height: 400px;
    }
}

@media (max-width: 360px) {
    .about-image-container video {
        width: 100%; /* Asegura que el video ocupe todo el ancho del contenedor */
        max-height: 200px; /* Ajusta la altura máxima para pantallas muy pequeñas */
        object-fit: cover; /* Recorta el contenido si es necesario */
    }
}
/* Responsive styles for "Nuestros Productos" Section */
@media (max-width: 992px) {
    .product-type {
        flex-direction: column;
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .product-type:nth-child(even) {
        flex-direction: column;
    }

    .product-type img {
        width: 100%;
        height: auto;
    }

    .type-description {
        padding: 1rem;
    }

    .type-description h3 {
        font-size: 1.8rem;
    }

    .included-features {
        margin-top: 1.5rem;
    }

    .tinaja-types-title {
        font-size: 1.8rem;
    }

    .delivery-info {
        margin-top: 1rem;
        padding: 0.5rem;
    }

    .product-features li {
        padding-left: 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .product-type {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .product-type img {
        height: 200px;
    }
    .product img {
        width: 100%;
        height: auto;
        max-height: 250px; /* Límite máximo */
        object-fit: cover;
    }

    .type-description h3 {
        font-size: 1.6rem;
    }

    .included-features {
        margin-top: 1rem;
    }

    .tinaja-types-title {
        font-size: 1.6rem;
    }

    .delivery-info {
        padding: 0.5rem;
    }

    .product-features li {
        padding-left: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .product-type {
        padding: 0.5rem;
        margin: 1rem 0;
    }

    .product-type img {
        height: 300px;
    }

    .type-description h3 {
        font-size: 1.4rem;
    }

    .included-features {
        margin-top: 0.5rem;
    }

    .tinaja-types-title {
        font-size: 1.4rem;
    }

    .delivery-info {
        padding: 0.5rem;
    }

    .product-features li {
        padding-left: 0.5rem;
        font-size: 0.8rem;
    }
}

/* CONTACTO MEDIA QUERY RESPONSIVE */
@media (max-width: 768px) {
    .contact-section {
        padding: 30px 10px;
    }

    .contact-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .contact-image {
        width: 120px;
        height: 120px;
    }

    .contact-info {
        padding: 10px;
    }

    .contact-details h3 {
        font-size: 1.2em;
    }

    .contact-details p {
        font-size: 0.9em;
    }

    .contact-social h3 {
        font-size: 1.2em;
    }

    .social-icons img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 20px 5px;
    }

    .contact-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .contact-image {
        width: 100px;
        height: 100px;
    }

    .contact-info {
        padding: 5px;
    }

    .contact-details h3 {
        font-size: 1em;
    }

    .contact-details p {
        font-size: 0.8em;
    }

    .contact-social h3 {
        font-size: 1em;
    }

    .social-icons img {
        width: 25px;
        height: 25px;
    }
}

/* SECTION SUCURSAL */

@media (max-width: 768px) {
    .sucursal-content {
        flex-direction: column; /* Apila los elementos verticalmente */
        gap: 20px; /* Espaciado entre los elementos */
    }

    .sucursal-info {
        text-align: center; /* Centra el texto */
        padding: 15px; /* Reduce el padding */
    }

    .sucursal-map {
        width: 100%; /* Asegura que el mapa ocupe todo el ancho */
        height: 250px; /* Ajusta la altura del mapa */
    }
}
@media (max-width: 576px) {
    .sucursal-map {
        height: 200px; /* Reduce la altura del mapa para pantallas más pequeñas */
    }

    .sucursal-info {
        font-size: 0.9rem; /* Reduce el tamaño del texto */
    }

    .sucursal-title {
        font-size: 1.8rem; /* Reduce el tamaño del título */
    }

    .sucursal-description {
        font-size: 0.85rem; /* Reduce el tamaño del texto descriptivo */
        line-height: 1.4; /* Mejora la legibilidad */
    }
}
@media (max-width: 480px) {
    .sucursal {
        margin: 20px auto; /* Reduce el margen superior e inferior */
        padding: 15px; /* Reduce el padding interno */
    }

    .sucursal-title {
        font-size: 1.5rem; /* Ajusta el tamaño del título */
    }

    .sucursal-description {
        margin-bottom: 10px; /* Reduce el margen inferior */
    }

    .map-button {
        padding: 10px 15px; /* Reduce el tamaño del botón */
        font-size: 0.9rem; /* Ajusta el tamaño del texto del botón */
    }
}

@media (max-width: 360px) {
    .sucursal-content {
        align-items: center; /* Centra los elementos horizontalmente */
    }

    .sucursal-map {
        height: 180px; /* Reduce aún más la altura del mapa */
    }

    .map-button {
        width: 100%; /* Asegura que el botón ocupe todo el ancho disponible */
        text-align: center;
    }
}



@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    header {
        height: var(--header-height);
        padding: 5px 15px;
        position: fixed;
        z-index: 1100; /* Asegura que el header quede sobre el overlay si es necesario */
    }

    .logo {
        height: 50px;
    }

    /* Oculta el menú por defecto usando transform */
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1100;
    }

    /* Cuando se activa, se desliza hacia abajo */
    .menu.active {
        transform: translateY(0);
    }

    .menu ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .menu li {
        margin: 1rem 0;
    }

    .menu li a {
        font-size: 24px;
        padding: 10px 20px;
        border-radius: 30px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .menu li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;      /* Ancho suficiente para mostrar el icono */
        height: 50px;     /* Alto suficiente */
        background: transparent;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
        position: relative;
        z-index: 1200;
        /* Opcional: ajustar márgenes para centrar el botón dentro del contenedor */
        margin: 0 10px;
    }
      
    

    /* Hero Section */
    .hero {
        height: auto;
        padding: 100px 0 50px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .hero-images {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-image-container {
        width: 180px;
        height: 300px;
    }

    .carousel-slide {
        flex: 0 0 50%; /* 2 imágenes visibles */
    }

    .carousel-slide img {
        height: 25vh; /* Altura dinámica basada en la pantalla */
        min-height: 200px; /* Altura mínima para no perder calidad */
    }

    .carousel {
        padding: 15px; /* Menos padding en pantallas más pequeñas */
    }

    /* Productos */
    .product {
        flex-direction: column;
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .product img {
        width: 100%;
        height: auto;
        max-height: 250px; /* Límite máximo */
        object-fit: cover; /* Recorta la imagen si es necesario */
    }

    .benefits-grid,
    .sales-content {
        grid-template-columns: 1fr;
    }
    .step-image {
        height: 200px; /* Aumenta la altura para pantallas medianas */
    }
}

@media (max-width: 576px) {
    /* Móviles medianos */
    :root {
        --header-height: 50px;
    }

    .logo {
        height: 60px;
        margin-right: 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image-container {
        width: 150px;
        height: 150px;
    }

    .carousel {
        padding: 10px;
    }

    .carousel-slide {
        flex: 0 0 100%; /* 1 imagen visible por slide */
        padding: 0 5px;
    }

    .carousel-slide img {
        height: 30vh; /* Aumentamos un poco la altura relativa */
        min-height: 500px; /* Altura mínima razonable */
        max-height: 250px; /* Límite superior para no exagerar */
    }

    /* Proceso */
    .process-steps {
        gap: 1rem;
    }

    .step-container {
        padding: 1rem;
    }

    .step-image {
        height: 250px; /* Aumenta aún más la altura para pantallas pequeñas */
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px; /* Espaciado entre las secciones */
    }

    .footer-section {
        min-width: 100%;
    }

    .social-links {
        display: flex; /* Activa Flexbox */
        justify-content: center; /* Centra horizontalmente */
        align-items: center; /* Centra verticalmente */
        gap: 15px; /* Espaciado entre los íconos */
    }
    
    .social-links img {
        width: 25px; /* Tamaño fijo para íconos sociales */
        height: 25px;
        display: block; /* Asegura que las imágenes sean elementos de bloque */
    }
    footer {
        padding: 20px 10px; /* Reduce el padding en pantallas pequeñas */
    }
}

@media (max-width: 480px) {
    /* Móviles pequeños */
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .carousel-slide img {
        height: 28vh; /* Ligeramente menor para pantallas muy pequeñas */
        min-height: 400px;
        max-height: 400px;
    }

    .product img {
        width: 100%;
        height: auto;
        max-height: 250px; /* Límite máximo */
        object-fit: cover; /* Recorta la imagen si es necesario */
    }

    .step-image {
        height: 300px; /* Altura máxima para pantallas muy pequeñas */
    }

    .map-button {
        width: 100%;
    }

    .footer-title {
        font-size: 1rem; /* Tamaño más pequeño para pantallas pequeñas */
    }

    .footer-section p {
        font-size: 0.8rem; /* Ajusta el tamaño del texto general */
    }
}

@media (max-width: 360px) {
    /* Dispositivos muy pequeños */
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .carousel-slide img {
        height: 150px;
    }

    .product img {
        height: 180px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    /* Ajustes generales */
    body {
        font-size: 14px; /* Reduce el tamaño de fuente general */
    }

    .hero-content h1 {
        font-size: 1.5rem; /* Reduce el tamaño del título */
    }

    .hero-content p {
        font-size: 0.9rem; /* Reduce el tamaño del texto */
    }

    .hero-image-container {
        width: 120px; /* Reduce el tamaño de las imágenes */
        height: 120px;
    }

    .carousel-slide img {
        height: 150px; /* Ajusta la altura de las imágenes del carrusel */
    }

    .product img {
        height: 180px; /* Ajusta la altura de las imágenes de productos */
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem; /* Reduce el tamaño de los números */
    }

    .footer-title {
        font-size: 0.9rem; /* Reduce el tamaño del título del footer */
    }

    .footer-section p {
        font-size: 0.75rem; /* Reduce el tamaño del texto del footer */
    }

    .social-links img {
        width: 20px; /* Reduce el tamaño de los íconos sociales */
        height: 20px;
    }
}

@media (max-width: 320px) {
    /* Ajustes generales */
    body {
        font-size: 12px; /* Reduce aún más el tamaño de fuente general */
    }

    .hero-content h1 {
        font-size: 1.3rem; /* Reduce el tamaño del título */
    }

    .hero-content p {
        font-size: 0.8rem; /* Reduce el tamaño del texto */
    }

    .hero-image-container {
        width: 100px; /* Reduce el tamaño de las imágenes */
        height: 100px;
    }

    .carousel-slide img {
        height: 300x; /* Ajusta la altura de las imágenes del carrusel */
    }

    .product img {
        height: 150px; /* Ajusta la altura de las imágenes de productos */
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem; /* Reduce el tamaño de los números */
    }

    .footer-title {
        font-size: 0.8rem; /* Reduce el tamaño del título del footer */
    }

    .footer-section p {
        font-size: 0.7rem; /* Reduce el tamaño del texto del footer */
    }

    .social-links img {
        width: 18px; /* Reduce el tamaño de los íconos sociales */
        height: 18px;
    }
}
