/* GLOBALES */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
    font-size: 16px; /* Esto hace que 1 REM sea igual a 10PX*/
    width: 100%;
}

*:before, *:after {
    box-sizing: inherit;
}

body {
    font-size: 16px;
    line-height: 1.5; /*Esto es el interlineado*/
    background-color: #000000;
    box-sizing: border-box;
    width: 100%;
}

h1, h2, h3 {
    font-family: 'Aladin', cursive;
    padding: 20px 0;
    line-height: 1.3;
    color: #fff;
}

h2, h3 {
    color: #f3a600;
}

h1 {
    font-size: 80px;
}
h2 {
    font-size: 60px;
}
h3 {
    font-size: 40px;
}

h4 {
    color: #ffc400;
    font-size: 30px;
    font-family: 'Aladin', cursive;
}

a {
    text-decoration: none;
}
ul li {
    text-decoration: none;
}

img {
    width: 100%;
}

/* -------------------------------------- */

/*UTILIDADES*/

.text-center {
    text-align: center;
}
p {
    color: #fff;
}

.contenedor {
    width: 80%;
    margin: auto;
}



/* -------------------------------------- */

/*NAVEGADOR*/

header {
    width: 100%;
}

.logo {
    margin: auto;
    width: 15%;
}

.navegador {
    background-image: linear-gradient(45deg, #f3a600 0%, #8d6f2e 100%);
}

.menu {
    display: flex;
    justify-content: center;
}

.menu a {
    color: #fff;
    font-size: 20px;
    background-image: linear-gradient(180deg, #f3a600 0%, #8d6f2e 100%);
    padding: 10px 20px;
    margin: 0px 5px;
    border-radius: 0px;
}

.menu a:hover {
    color: #fff;
    font-size: 20px;
    background-image: linear-gradient(180deg, #f3a600 0%, #8d6f2e 100%);
    padding: 10px 20px;
    margin: 0px 5px;
    border-radius: 0px;
}

.banners-principal {
    width: 100%;
    height: auto;
}

.banners-celulares {
    display: none;
    height: auto;
}

.frase-central {
    height: auto;
    background-color: #000000;
}

.contenedor-formulario {
    margin: auto;
    width: 70%;
}

form {
    width: 100%;
    overflow: hidden;
}

input, textarea {
    width: 100%; /* Asegura que el input no sobrepase el ancho del formulario */
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 5px;
}

input[type="submit"] {
    font-size: 1.2rem;
    color: #fff;
    background-color: #f3a600;
    border: 0;
}

input::placeholder, textarea::placeholder {
    color: #3e3e3e;
    font-size: 14px;
}


.parrafos1 {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    width: 100%;
}

.seccion-parrafos {
    height: auto;
    padding: 50px 0;
}

.seccion-galeria {
    height: auto;
    background-image: url(../img/fondo-1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 0 0;
}

.galeria {
    margin: 80px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.cta-whatsapp {
    display: flex;
    justify-content: center;
    padding: 0;
}

.cta-parrafo-cta {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
    width: 100%;
}

.fondo-videos {
    height: auto;
    background-image: url(../img/fondo-2.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 50px 0;
}

.videos {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    width: 100%;
}

.seccion-parrafos {
    height: auto;
    padding: 50px 0;
}

.testimonios{
    background-color: #000000;
    padding: 50px 0;
}

.grid-testimonios {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.texto-testimonio {
    padding: 10px;
}

.servicios {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
    width: 100%;
}

.banner2 {
    display: none;
}

.piedepagina {
    padding: 50px 0;
    /*background-color: #2C04BF;*/
    background-image: url(../img/fondo1.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.legal {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.516);
}

#titulolegal {
    color: #ffbb00;
}

/*Boton whatsap*/

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:40px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
    background-color:#fff;
}

.my-float{
    padding: 12px;
	margin-top:0px;
}

/*SECCION*/

#titulo-seccion {
    color: #ffbb00;
    font-size: 60px;
}
.contenido-seccion {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    padding: 50px 0;
}

/*--------------RESPONSIVE----------------*/

/*TABLETS*/
@media screen and (max-width: 900px) {
    .contenedor{
        width: 95%;
    }
    .logo {
        margin: auto;
        width: 100%;
    }
    .navegador {
        display: none;
    }
    .banners-principal {
        display: none;
        height: auto;
    }
    .banners-celulares { 
        display: inline !important; 

    }
    .frase-central {
        height: auto;
        background-color: #000000;
        padding: 20px !important;
    }

    .contenedor-formulario {
        margin: auto;
        width: 100%;
    }


    .frase-central h2 {
        font-size: 35px !important;
    }
    .parrafos1 {
        margin: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
        width: 100%;
    }
    
    .seccion-parrafos {
        height: auto;
        padding: 30px 0;
    }
    .grid-testimonios {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .banner2 {
        display: inline !important;
    }
    .banner1 {
        display: none;
    }
    .galeria {
        margin: 50px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #titulo-seccion {
        color: #fff;
        font-size: 40px ;
    }
    .contenido-seccion {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px !important;
        padding: 50px 0;
    }

    .cta-parrafo-cta {
        margin: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        width: 100%;
    }

    .videos {
        margin: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }
    .servicios {
        margin: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
        width: 100%;
    }

 
}

