/*===============Propiedades Globales================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Botón de whatsapp */
.whatsapp-btn{
    position: fixed;
    right: 20px;
    margin: 10px;
    background-color: #25d366;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px #000(0,0,0,0.2);
    z-index: 100;
}
.whatsapp-btn i{
    font-size: 50px;
}
.whatsapp-btn:hover{
    background-color: #188741;
    color: #fff;
}

/*===================MENU==========================*/
a{
    text-decoration: none;
}
#menu li > a,
button {
    font-size: 18px !important;
    font-weight: 600;
}

#menu form > button{
    color:#3f3f3f;  
}
/*===================SLIDER DE IMAGENES==========================*/

.carousel-item{
    max-height: 39rem;
}
/*=========================aqui van las CARD CON EFECTO 3D================================*/
.card-img{
    height: 300px;
    background-position: center;
    background-size: cover;
}

.card{
    width: 300px;
    height: 300px;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    background: transparent;
    border: none;
}

.box{
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: 2s ease;
}

.card-img{
    position: absolute;
    transform-style: preserve-3d;
}
.card-body{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0px !important;
    display: flex;
    align-items: center;
    transform-style: preserve-3d;
    transform: rotateY(180deg);
}

.card-body #description{
    background-color: rgb(43, 135, 135);
    color: azure;
    width: 100%;
    height: 80%;
    transform-style: preserve-3d;
    transform: translateZ(100px);
    padding: 20px;
}

.card:hover .box{
    transform: rotateY(180deg);
}

.colofor{
    background-color: #1445a011;
}
.plantilla{
    margin: auto;
    max-width: 850px;
    border: 3px solid green;
    overflow-x: auto;
}
.plantilla-img{
    width: 850px;
    
}


/*=========================MEDIA QUERIES PANTALLA SM================================*/

@media (max-width: 768px) {
    #intro {
        width: 90% !important;
    }
    .servicio-fila {
        width: 100% !important;
        text-align: center;
}
.formu-ancho{
    width: 80% !important;
}
}

/*=========================MEDIA QUERIES PANTALLA EXTRA-SM================================*/

@media (max-width: 576px) {
    .icono-wrap {
        flex-wrap: wrap;
        justify-content: center !important;
    }
    .formu-ancho{
        width: 80% !important;
    }
}