﻿body{
    background: url(../images/fondo.jpg) no-repeat center center fixed;
    background-size: cover;
    font-family: "Montserrat", sans-serif;
}

header{
    background: white;
    padding-top: 12px;
    padding-bottom: 12px;
}


.logotipo{
    text-align: center;
    font-size: 33px;
    line-height: 43px;
}
.logotipo strong{
    width: 100%;
    display: inline-block;
}


nav a{
    text-decoration: none;
    color: black;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 33.33%;
    float: left;
}

.menu{
    text-align: center;
    color: blue;
    font-size: 26px;
}
.menu:hover{
    font-weight: bold;
}


.datos{
    text-align: center;
    font-size: 22px;
}
.datos img{
    width: 30px;
}


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

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

.titulo span{
    background: white;
    font-size: 33px;
    font-weight: bold;
}



.texto{
    background: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    padding: 30px;
}

.texto strong{
    width: 100%;
    font-size: 33px;
    line-height: 36px;
    display: inline-block;
    margin-bottom: 30px;
}


.efecto img{
    width: auto;
    height: 500px;
    max-width: 100%;
    margin: 0 auto;        /* centra horizontal */
    display: block;
    object-fit: contain;  /* no recorta la imagen */
}

.video{
    text-align: center;
}
.video video{
    width: auto;
    height: 500px;

    object-fit: cover;
}


.producto{
    margin-top: 160px !important;
}




.footer-white{
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-brand{
    text-align: left;
    font-size: 28px;
    line-height: 36px;
}

.footer-brand strong{
    width: 100%;
    display: inline-block;
}

.footer-brand span{
    display: inline-block;
    width: 100%;
}

.footer-desc{
    font-size: 15px;
    color: rgba(0,0,0,0.75);
    line-height: 22px;
}

.footer-title{
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 8px;
}

.footer-links a{
    color: black;
    text-decoration: none;
    font-size: 15px;
}

.footer-links a:hover{
    text-decoration: underline;
    font-weight: 600;
}

.footer-contact .item{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact b{
    font-size: 18px;
}

.footer-contact a{
    color: black;
    text-decoration: none;
    font-size: 15px;
}

.footer-contact a:hover{
    text-decoration: underline;
}

.footer-bottom{
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-bottom a{
    color: black;
    text-decoration: none;
}

.footer-bottom a:hover{
    text-decoration: underline;
}

/* Responsive */
@media screen and (max-width:576px){
    .footer-brand{
        text-align: center;
    }
}


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

}

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

}

@media screen and (max-width:992px){
    nav{
        margin: 25px 0 !important;
    }

    .primerProducto{
        margin-top: 0 !important;
    }

    .video{
        margin-top: 20px;
    }
}

@media screen and (max-width:768px){
    nav{
        display: none;
    }
}

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





.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: normal;
    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
}