﻿html {
    scroll-behavior: smooth; 
    scroll-padding-top: 100px; /* altura del header fijo */
}

body{
    background-size: cover;
    font-family: "Montserrat", sans-serif;
}

.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #CA468D;
    color: white;
    font-weight: bold;
    font-size: 22px;
    padding: 4px 20px;
    cursor: pointer;

    border-radius: 20px;

    transition:all 0.2s;
}
.chat:hover{
    font-size: 25px;
}

.cabecera-ayuda{
    height: 98px;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #CA468D;
    padding-top: 12px;
    padding-bottom: 12px;
}


.logotipo{
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 50px;
}
.logotipo span{
    color: white;
}
.logotipo a{
    color: white;
}

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

.menuR{
    display: none;
    font-size: 22px;
}

.menu, .menuR{
    text-align: center;
    color: white;
    font-weight: lighter;
    cursor: pointer;
}
.menu:hover{
    font-weight: bold;
}


.datos{
    text-align: center;
    color: white;
}
.datos img{
    width: 20px;
}


.efecto{
    background: url(../images/fondo-efecto.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 30px;
}

.efecto img{
    width: 100%;
}
.efecto strong{
    width: 100%;
    font-size: 30px;
    font-weight: normal;
    display: inline-block;
    margin-bottom: 20px;
}

.textoEfecto{
    text-align: center;
    font-size: 20px;
}
.textoEfecto b{
    width: 100%;
    color: #CA468D;
    font-size: 32px;
    display: inline-block;
}
.textoEfecto img{
    width: 200px;
}


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


.titulo{
    text-align: center;
    font-family: "Playfair Display", serif;
    color: #CA468D;
    font-size: 37px;
    font-weight: normal;
    margin-bottom: 40px;
}

.subtitulo{
    background: #CA468D;
    color: white;
    font-size: 22px;
}


.pro{
    background: white;
    background: url(../images/fondo.jpg) no-repeat center center;
    background-size: cover;
    text-align: center;
    border-radius: 20px;
    padding: 20px 0;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.pro img{
    height: 300px;
}
.pro strong{
    width: 100%;
    color: #CA468D;
    font-size: 22px;
    display: inline-block;
}
.pro div{
    padding: 9px 0;
}
.pro span{
    font-size: 22px;
    font-weight: bold;
}



.texto{
    background: black;
    background: #ddd;
    font-weight: 300;
    font-size: 20px;
    padding: 40px;

    border-radius: 20px;
}
.texto strong{
    width: 100%;
    font-size: 37px;
    color: #CA468D;
    font-family: "Playfair Display", serif;
    display: inline-block;
    margin-bottom: 20px;
}

.imagenes{
    text-align: center;
}
.imagenes img{
    /* border:1px solid blue; */
}

.i1 img{
    width: 100%;
}
.i2 img{
    width: 48%;
}
.i3 img{
    width: 32%;
}


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

.imgr{
    border-left: 30px solid white;
    /* border-radius: 100px 30px 240px 200px; */
    border-radius: 30px !important;
}


.ver{
    text-align: center;
    font-size: 24px;
}


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

.galeria video{
    width: 100%;
    height: 450px;
}

.galeria img{
    width: 100%;
    margin-bottom: 30px;
}


.imagenC img{
    width: 100%;
}


footer{
    background: black;
    font-size: 18px;
    color: white;
    margin-top: 30px;
}
footer h5, footer h4{
    width: 100%;
    font-family: "Playfair Display", serif;
    display: inline-block;
    margin-bottom: 20px;
}
footer a:hover{
    color: #CA468D !important;
}
footer a{
    color: white;
}


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

}

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

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

@media screen and (max-width:768px){
    .menuR{
        display: block;
    }
    nav ul{
        display: none;
    }
    nav ul li{
        width: 100%;
    }
    .menu{
        padding: 12px 0;
    }
    .img{
        border-left: 0;
        width: 100%;
        height: 500px;

        border-radius: 0;
    }
}

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