﻿body{
    background: #eee;
    background: white;
    font-family: "Roboto", sans-serif;
    font-family: "Intel One Mono", monospace;
}



.cabecera-ayuda{
    height: 182px;
}

.cabecera{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #eee;
    background: #006948;
    color: white;
    padding-top: 12px;
    padding-bottom: 12px;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* sombra suave hacia abajo */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 
            0 1px 3px rgba(0, 0, 0, 0.1);
}

.logotipo img{
    width: 100%;
}


.leyenda{
    font-family: "Playwrite VN Guides", cursive;
    font-size: 43px;
    font-weight: bold;
}


.datos{
    text-align: center;
    font-size: 22px;
}
.datos a{
    color: white;
}
.datos img{
    width: 30px;
}
.datos strong{
    /* color: red; */
}

.btn-verde{
    background: #009c00;
    color: white;
}
.btn-verde:hover{
    background: #009c00;
    font-weight: bold;
    color: white;
}


.efecto-efecto{
    padding: 0;
}


.texto-efecto{
    background: #000;
    background: linear-gradient(140deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 55%, rgba(227, 204, 93, 1) 96%, rgba(227, 204, 93, 1) 100%);
    background: white;
    color: black;
    font-size: 22px;
    padding: 50px;
}
.texto-efecto strong{
    font-size: 30px;
    color: red;
}
.texto-efecto img{
    width: 26%;
    margin: 40px 2% 0;
}
.video-efecto iframe{
    width: 100% !important;
    height: 600px;
}



.paquetes{
    text-align: center;
    font-size: 32px;
}
.paquetes iframe{
    width: 100%;
}



.precios strong{
    width: 100%;
    text-align: center;
    color: red;
    font-size: 30px;
    display: inline-block;
}
.precios span{
    width: 100%;
    text-align: center;
    color: #006948;
    display: inline-block;
    margin-bottom: 20px;
}


table{
    width: 100%;
    font-size: 20px;
    text-align: center;
}

.rojo td{
    background: red !important;
    color: white !important;
}
.verde td{
    background: #006948;
    color: white;
}

.sinPadding{
    padding: 0 !important;
}
.sinPadding table{
    margin-bottom: 0 !important;
}



.metodos{
    background: white;
    background: #006948;
    color: white;
    text-align: center;
    font-size: 22px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.metodos strong{
    width: 100%;
    display: inline-block;
}
.metodos b{
    font-size: 40px;
}
.color{
    color: #b6a349;
    color: white;
    font-size: 50px;
    line-height: 50px;
}


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


.titulo{
    color: red;
    text-align: center;
    font-size: 33px;
    font-weight: bold;
    margin-bottom: 40px;
}


.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: auto;
}
.galeria img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
}
.galeria img:hover {
    transform: scale(1.05);
}


.imagen img{
    width: 100%;
}






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

}

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

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

}

@media screen and (max-width:768px){
    .texto-efecto{
        padding: 20px;
    }
}

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


.tel{
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 1000;
    background: blue;
    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;
}

.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
}
