﻿body{
    font-family: "Montserrat", sans-serif;
}

.cintillo-ayuda{
    height: 44px;
}

.cintillo{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: black;
    color: white;
    font-size: 18px;
    text-align: center;
    padding-top: 8px;
    padding-bottom:8px;
}



.cabecera{
    padding-top: 12px;
    padding-bottom: 12px;
}


.logotipo img{
    width: 100%;
}

.leyenda{
    font-size: 37px;
    font-weight: bold;
}

nav a{
    color: white;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 31.33%;
    float: left;
    margin: 0 1%;
}

.menu{
    background: #21408a;
    text-align: center;
    color: white;
    padding: 12px 0;

    border-radius: 10px;
}
.menu:hover{
    font-weight: bold;
}


.titulo{
    text-align: center;
    font-size: 33px;
    font-weight: bold;
}


.gris{
    background: #21408a;
    color: white;
    font-size: 18px;
    padding: 20px 0;

    border-radius: 20px;
}




.nosotros{
    margin: 60px 0;
}

.seccion{
    background: #f7f7f7;
    font-size: 18px;
    padding: 30px;
}
.seccion strong{
    width: 100%;
    font-size: 27px;
    line-height: 30px;
    color: #21408a;
    display: inline-block;
    margin-bottom: 20px;
}


.img1{
    background: url(../images//1.jpg) no-repeat center center;
    background-size: cover;
}


.productos{
    padding-top: 60px;
    padding-bottom: 60px;
}


.titulo{
    text-align: center;
    margin-bottom: 50px;
}


.producto{
    text-align: center;
    margin-bottom: 50px;
}
.producto img{
    width: 90%;
}

.producto strong{
    background: #21408a;
    width: 100%;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
}


/* --- Ajustes visuales de las tarjetas --- */
.producto-card {
    transition: transform .15s ease, box-shadow .15s ease;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    overflow: hidden;
    padding: 20px;
}
.producto-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.08);
}
/* Imagen cuadrada (1:1) que cubre el contenedor */
.producto-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
/* Limitar a 2 líneas el título si es muy largo */
.producto-titulo {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.2rem; /* mantiene altura uniforme */
    font-weight: 600;
}
.producto-body {
    padding: 0.9rem 1rem 1.1rem;
}



footer{
    background: #21408a;
    background: black;
    color: white;
    font-size: 18px;
    padding-top: 12px;
    padding-bottom: 12px;
}
footer strong{
    width: 100%;
    font-size: 23px;
    display: inline-block;
    margin-bottom: 20px;
}

.importante{
    text-align: center;
}
.importante strong{
    font-size: 33px;
}
.importante span{
    font-size: 25px;
}




@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){
    .cintillo-ayuda{
        display: none;
    }
    .cintillo{
        position: relative;
    }
}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){

}

@media screen and (max-width:576px){
    
}


.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: bold;
    font-size: 20px;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;

    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-iteration-count: 100;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }
}

.pulse {
    animation-name: pulse
}