/* ---------------------- Estilos generales ---------------------- */
body {
    font-family: 'Poppins', sans-serif;
}

p {
    font-size: 14px;
}

a {
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #727175;
}

.nav-link {
    font-size: 14px;
}

.color-text {
    color:#042A00;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

.navbar-dark .navbar-nav .active>.nav-link {
    color: #727175;
}

.btn {
    font-size: 13px;
    border-radius: 0;
    padding: 7px 18px;
}

.gris1 {
    background-color: #ecedef;
}

.gris2 {
    background-color: #f6f6f7;
}

h3 {
    font-weight: 900;
    color: #aeaeb3;
}

:focus-visible {
    outline: none;
}

button:focus {
    outline: none;
}

.fondoClaro {
    background-color: #fAfAfA;
}

.fondoBlanco {
    background-color: #fAfAfA;
}

.altProducto {
    height: 250px;
}

.grisMedio {
    background-color: #ecedef;
}

h6 {
    font-weight: 700;
    font-size: 13px;
}

.btn-primary {
    background-color: #f6f5f5;
    border: solid 1px #000;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    line-height: 35px;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 6px 12px;
}

.btn-primary:hover {
    background-color: #211915;
    border-color: #211915;
}

.btn-secondary {
    border: none;
    width: 30px;
    height: 30px;
    padding: 0;
}

.btn-dark {
    padding: 8px 25px;
    font-weight: 700;    
    background-color: #000;
}

label {
    font-weight: 700;
    font-size: 13px;
}

.form-control {
    background-color: #f6f5f5;
    border-color: #783233;
}

.form-control:focus {
    box-shadow: none;
    background-color: #f6f5f5;
    border-color: #000;
}

.trece {
    font-size: 13px;
}

.catorce {
    font-size: 14px;
}

.logo {
    width: 70px;
    height: auto;
}

.top {
    font-size: 35px;
}

.mascara:hover .escala {
    transform: scale(1.02);
    opacity: 70%;
}

.mascara .escala {
    transition: all ease-in .2s;
}

.mascara h3 {
    opacity: 0%;
}

.mascara:hover h3 {
    opacity: 100%;
}

footer {
    background-color: #042A00;
}

footer a {
    color: #fff;
    font-size: 14px;
}

footer .form-control {
    background-color: #042A00;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 0;
}

.navbar-toggler {
    border: none;
    font-size: 20px;
}

.transparencia {
    opacity: 15%;
}

h1 {
    font-size: 45px;
}

h1, h2 {
    font-weight: bold;
}

/* Animación de entrada desde arriba */
@keyframes slideInTop {
    0% {
        transform: translateY(-130%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animacion3 {
    animation: slideInTop 1.2s ease-out forwards;
    will-change: transform;    
}

.animacion5 {
    animation: fadeIn 3.0s ease-out forwards;
    will-change: opacity;
}

.animacion1 {
    animation: fadeIn 1.8s ease-out forwards;
    will-change: opacity;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Clases de utilidad */
.z-1 {
    z-index: 1;
}
.z-2 {
    z-index: 2;
}
.z-100 {
    z-index: 100;
}

@keyframes movimientoCuerpo {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

footer .form-control::placeholder {
    color: white;
    opacity: 1;
}

.btn-custom {
    background-color: #042A00;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #064d00;
    color: #fff;
}

.navbar-brand img {
    max-height: 18px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* ---------------------- Efecto para logos de sponsors ---------------------- */
.sponsor-logo {
    width: 100px;           /* ajusta según el tamaño que quieras */
    height: auto;
    transition: transform 0.3s ease; /* animación suave */
    cursor: pointer;         /* muestra cursor en forma de mano */
}

.sponsor-logo:hover {
    transform: scale(1.1);   /* agranda el logo */
}


