/* Sección de productos y servicios */
.services {
    background-color: #0b361c;
    padding: 40px 20px;
    color: #ff007f;
    text-align: center;
}

.services h2 {
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #e0ccac;
}

/* Contenedor horizontal */
.services-horizontal {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Imagen de la sección */
.services-image {
    width: 50%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Contenido de los servicios */
.services-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
}

.service-item {
    background-color: #383635;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #f1c994;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-number {
    display: inline-block;
    background-color: #e0ccac;
    color: #1c0b24;
    font-weight: bold;
    font-size: 1.5em;
    padding: 8px 12px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
    color: #e0ccac;
    display: inline-block;
}

.service-item p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #b3afaf;
    margin-left: 2.5em;
}

/* Responsividad para pantallas más pequeñas */
@media (max-width: 768px) {
    .services-horizontal {
        flex-direction: column;
    }
    
    .services-image, .services-content {
        width: 100%;
    }
}



/* CSS para la sección de procesos de fabricación */
.processes-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: #a8dfb5;
}

.timeline-container {
    background-color: #0b361c; /* Fondo oscuro para la sección de procesos */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 80%;
    max-width: 900px; /* Limita el ancho en pantallas grandes */
}

.timeline-container h2 {
    color: #e0ccac; /* Color de texto rosa claro */
    font-size: 2em;
    margin-bottom: 20px;
}

.timeline {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.timeline-step {
    text-align: center;
    color: #ffffff;
    max-width: 200px;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0ccac; /* Color de fondo para el círculo */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #030303;
    margin: 0 auto 10px;
}

.timeline-step h3 {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 5px;
    position: relative;
}

.timeline-step h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #e0ccac; /* Color de la línea debajo del título */
    margin: 5px auto 10px;
}

.timeline-step p {
    font-size: 0.9em;
    line-height: 1.5;
    color: #d1c6e0; /* Color de texto gris claro */
}

/* Estilos responsive para pantallas más pequeñas */
@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-container h2 {
        font-size: 1.8em;
    }

    .timeline-step {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .timeline-container {
        padding: 20px;
    }

    .timeline-container h2 {
        font-size: 1.6em;
    }

    .circle {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }

    .timeline-step h3 {
        font-size: 1.1em;
    }

    .timeline-step p {
        font-size: 0.85em;
    }
}

/* contenido de menu desplegable */ 



/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    padding-top: 60px; /* Evita que el menú tape el contenido */
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 50px; /* Altura fija */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333; /* Ajusta el color si es necesario */
    z-index: 1000; /* Asegura que el menú no interfiera con el contenido */


}

/* Logo */
.navbar .logo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

/* Menú */
.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

/* Links del menú */
.navbar ul li {
    margin: 0 10px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #007BFF;
}

/* Botón de menú hamburguesa */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* Diseño responsive con animación */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar ul {
        display: flex;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 50px;
        right: 0;
        width: 200px;
        padding: 10px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(-10px);
        transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, transform 0.3s ease-in-out;
    }

    /* Mostrar el menú con animación */
    .navbar ul.active {
        max-height: 300px; /* Ajusta según el contenido */
        opacity: 1;
        transform: translateY(0);
    }

    .navbar ul li {
        margin: 10px 0;
    }
}


    /* Asegurar que el contenido no quede oculto debajo del menú */




    /* diseño boton */

    .boton-descarga {
        display: inline;
        background: none;
        color: inherit !important; /* Fuerza el color del texto */
        font-size: inherit;
        text-decoration: none !important; /* Elimina el subrayado completamente */
        cursor: pointer;
        border: none;
        padding: 0;
    }
    


