





body{
	background: #FFFFFF;
}

.nav1{
	background: #264935;
	color: #C9FF6F;

}

.nav1 a{
	color: #C9FF6F;
	text-decoration: none;
}

.inf1{
	height: 80px;
}

.bor{
	border-bottom: solid 1px #C8FF6F;
}



.bac{
		background: #264935;
	color: #C9FF6F;
}


.bac a{
	color: #C9FF6F;
}

.bac a:hover{
	color: #FF9628;
}

.t2{
	color: #C9FF6F;
}

.textos-grandes {
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 157.9%;
    letter-spacing: 5%;
}

.buton {
	background: #FF9628;
	color: white;
	padding: 10px 20px;
	text-decoration: none;
	border: none;
	border-radius: 8px;
	transition: all 0.3s ease; /* 👈 Aquí está la magia de la animación */
	cursor: pointer;
	display: inline-block;
}

.buton:hover {
	background: #C8FF6F;
	color: white;
	transform: scale(1.05); /* 👈 Le da un pequeño zoom */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* 👈 Sombra al pasar el mouse */
}





.b1{
	background: #264935;
}

.b2{
	background: #22B573;
}


.p1{

	height: 400px;
}


.texto1 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.05em; /* en lugar de porcentaje */
    color: #5EC27A;
}

/* Ajustes para pantallas pequeñas (celulares) */
@media (max-width: 576px) {
    .texto1 {
        font-size: 20px;
        letter-spacing: 0.03em;
        text-align: center; /* opcional: para centrar en móviles */
        padding: 0 10px;     /* opcional: espacio a los lados */
    }
}









    .card {
        border: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 30px;
    }

    .cuadro1,
    .cuadro2,
    .cuadro3,
    .cuadro4 {
        width: 100%;
        height: 197px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: 8px solid #BAB7B5;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Imágenes */
  .cuadro1 { background-image: url("../img/producto/5.png"); }
    .cuadro2 { background-image: url("../img/producto/7.png"); }
    .cuadro3 { background-image: url("../img/producto/4.png"); }
    .cuadro4 { background-image: url("../img/producto/6.png"); }

    /* Hover */
    .cuadro1:hover,
    .cuadro2:hover,
    .cuadro3:hover,
    .cuadro4:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        
    }

    .tituloc {
        color: #264935;
        text-transform: uppercase;
        font-weight: bold;
        margin-top: 40px;
        margin-bottom: 10px;
        animation: fadeInDown 0.8s ease both;
    }

    .subtitulo {
        margin-bottom: 40px;
        animation: fadeIn 1s ease both;
    }

    .card-title {
        text-align: center;
        font-weight: bold;
        text-transform: uppercase;
        color: #333;
        font-size: 1.1rem;
    }

    /* Animaciones */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Botón */
    .btn-productos {
        background-color: #264935;
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        display: inline-block;
        margin-top: 20px;
        animation: fadeIn 1.5s ease both;
    }

    .btn-productos:hover {
        background-color: #3b6e56;
        transform: scale(1.05);
    }



















/********VIDEO**********/

    .video {
    	background-color: #264935;
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .video video {
        position: absolute;
       
        object-fit: cover;
        z-index: 1;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        
        z-index: 2;
    }

    .content {
        position: relative;
        z-index: 3;
        padding: 2rem;
    }


    /********VIDEO**********/