* {
    font-family: sans-serif;
    padding: 0;
    margin: 0;
}

/* MENU DE NAVEGACIÓN */
nav {
    background-color: #f4f4f4;
}

/* PORTADA */

.nav-link {
    color: #444444; /* Color del texto */
    font-weight: bold; /* Negrita */
    font-size: 16px; /* Tamaño del texto */
    padding: 10px 20px; /* Más separación interna */
    margin: 0 10px; /* Más espacio entre enlaces */
    text-transform: uppercase; /* Mayúsculas */
    transition: color 0.3s ease, background-color 0.3s ease; /* Transición suave */
    border-radius: 4px; /* Bordes redondeados */
    text-decoration: none; /* Quitar subrayado */
}

/* Hover Effect */
.nav-link:hover {
    color: #ffffff; /* Color del texto al pasar el mouse */
    background-color: #2eca48; /* Fondo azul */
}

#portada {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../img/fondo_portada.jpg');
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: inherit;
}

#portada h2 {
    color: #00d73a;
    font-family: Arial, Helvetica, sans-serif;
}

#portada #parent_contenido {
    background-color: rgba(255, 255, 255, 0.842);
    padding: 5px;
    border-radius: 20px;
}

form {
    background-color: #00d73a;
}

form p {
    font-size: 11px;
    text-align: justify;
}

form input {
    font-size: 14px !important;
}

#section_caracteristicas {
    background-color: #f8f5f6;
}

#section_caracteristicas p {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}


/* PRODUCTOS */
.productos_img {
    width: 230px;
    border-radius: 25px;
}

.productos .productos_contenido {
    border-radius: 25px;
    top: -40px;
}

.btn_comprar,
.btn_comprar:hover {
    background-color: #00d73a;
    color: white;
    font-weight: bolder;
}

/* MATERIA PRIMA */
#section_materiaPrima {
    background-color: #00d73a;
}

.caja_num {
    background-color: black;
    color: white;
    font-size: 30px;
    border-radius: 10px;
    padding: 5px 20px;
}

#section_materiaPrima p {
    text-align: justify;
}

.caña {
    height: 45rem;
}

/* BENEFICIOS */

.img_beneficio {
    width: 70%;
}

.num_beneficio {
    font-size: 5rem;
    color: #00d73a;
    font-weight: bolder;
}

#section_beneficios {
    background-color: #ececec !important;
}

#section_beneficios p {
    text-align: justify;
}

#section_beneficios h2 {
    color: #00d73a;
}

/* CERTIFICACIONES */
#section_certificados i {
    font-size: 3rem;
}

#section_certificados h3,
h5,
span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* CONTACTO */
#section_contacto {
    background-color: #3d3d3d;
}

#section_contacto h2,
p,
strong {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


#btn_whatsAdpp {
    position: fixed;
    z-index: 99;
    bottom: 20px;
    right: 20px;
    height: 52px;
    border: none;
    border-radius: 30px;
    background-color: #00bb2d;
    padding: 0 30px;
    color: white;
    animation: lock 1s ease-in-out infinite;
    box-shadow: 5px 9px 10px rgba(0, 0, 0, 0.3);
}

@keyframes lock {
    0% {
        transform: scale(1.1) translateY(0);
    }

    20% {
        transform: scale(1.1) translateY(-3px);
    }

    30% {
        transform: scale(1.1) translateY(3px);
    }

    50% {
        transform: scale(1.1) translateY(-3px);
    }

    60% {
        transform: scale(1.1) translateY(3px);
    }

    100% {
        transform: scale(1.1) translateY(0);
    }
}

/* prueba */
.productos_contenido{
    height: 230px !important; /* Alto fijo */
}

.productos_contenido> h5 {
    color: #4de61e;
}
@media(max-width:900px){
    .productos_contenido{
        height: 320px !important; /* Alto fijo */
    } 
}