body {
  background-color: #00643F; /* Verde suave */
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
.imagens {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px; /* Más razonable en pantallas medianas */
    flex-wrap: wrap;
    padding: 20px;
}

/* Estilos base para ambos elementos */
.Letra-N,
.Logo {
    height: 700px;           /* Altura base más flexible */
    object-fit: contain;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Letra-N img,
.Logo img {
    max-width: 100%;
    max-height: 100%;
}

/* Tamaños base (pantallas grandes) */
.Letra-N {
    width: 200px;
}

.Logo {
    width: 500px;
}

.Texto {
    font-family: 'Antonio', sans-serif;
    font-weight: 700; /* Negrita */
    color: white;
    font-size: 2rem;
    max-width: 1100px;
    margin: 40px auto;
    line-height: 1.6;
    padding: 0 20px;
    text-align: justify;
}

.Texto p {
    margin-bottom: 20px;
}

.imagen-2 {
    display: flex;
    align-items: center;
    justify-content: center; /* Centra ambas columnas horizontalmente */
    width: 100%;
    gap: 40px; /* Espacio opcional entre las dos imágenes */
}

.Agave, .Agave-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Agave {
    width: auto; /* o fija si lo necesitas */
}

.Agave-2 {
    width: auto;
}

.Agave img {
    max-width: 100%;
    height: auto;
    width: 350px;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease;
}

.Agave-2 img {
    max-width: 100%;
    height: auto;
    width: 250px;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease;
}




/* Tablets */
@media (max-width: 1024px) {
    .imagens {
        gap: 60px;
    }

    .Letra-N {
        width: 180px;
        height: 400px;
    }

    .Logo {
        width: 400px;
        height: 400px;
    }
        .Texto {
        font-size: 1.6rem;
        padding: 0 15px;
        max-width: 800px;
    }
}

/* Móviles grandes */
@media (max-width: 768px) {
    .imagens {
        gap: 40px;
    }

    .Letra-N {
        width: 150px;
        height: 300px;
    }

    .Logo {
        width: 300px;
        height: 300px;
    }
        .Texto {
        font-size: 1.4rem;
        padding: 0 15px;
        max-width: 600px;
    }

}

/* Móviles pequeños */
@media (max-width: 480px) {
    .imagens {
        gap: 20px;
        flex-direction: row; /* 🔄 Se mantiene en fila */
        flex-wrap: wrap;     /* Por si se requiere envolver */
    }

    .Letra-N,
    .Logo {
        width: 45%;      /* Usa porcentaje para que quepan lado a lado */
        height: auto;
    }

    .Letra-N img {
        width: 50%;
        height: auto;
    }
        .Texto {
        font-size: 1.1rem;
        padding: 0 10px;
        max-width: 350px;
    }
}


