html,body, div, header, h1{
    margin: 0;
    padding: 0;
}

body{
    font-family: "Roboto Condensed", sans-serif;
    background-color: #f2ca2c;
}

a{
    text-decoration: none;
}

.redes{
    position: fixed;
    top: 150px;
    left: 0;
    z-index: 9;
}

#whatsapp a{
    background-color: #2ab13e;
    padding: 15px 25px;
    color: #ffffff;
    font-size: 1.3em;
    text-decoration: none;
    box-sizing: border-box;
    transition: all .6s;
}

#whatsapp a:hover{
    background-color: #ffffff;
    color: #2ab13e;
}

header{
    background-color: #161513;
    width: 100%;
    height: 70px;
    position: fixed;
    z-index: 10;
}

.top{
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
}

.logo{
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    max-height: 100px; 
    width: auto;
}


.logo h2 a{
    color: #dfba31;
    text-decoration: none;
}

.menuTop{
    width: 80%;
    height: 100%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menuTop div a{
    color: #ffffff;
    text-decoration: none;
    padding: 0 15px;
    text-transform: uppercase;
    font-size: 1em;
    font-family: "Oswald", sans-serif;
}

.menuTop div a:hover{
    color: #f2ca2c;
}

/* Banner */

.banner{
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url(../img/suzuki_banner1.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-color: #dfba29;
    overflow: hidden;
}

/* Overlay */

.banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

/* Contenedor del texto */

.letras{
    position: relative;
    z-index: 2;
    top: 200px;
    text-align: center;
    width: 28%;
}

/* Texto animado */

.letrasAnimadas h2{
    color: #ffffff;
    font-size: 3em;
    margin: 40px 0 0;
}

.letrasAnimadas p{
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 0;
    background-color: #f2ca2c;
}

.centrar{
    width: 80%;
    margin: 20px auto; 
}

.bienvenido{
    margin: 50px 0 20px 0;
    text-align: justify;
    color: #2c2a26;
}

.bienvenido h2{
    text-align: center;
    color:#161513;
    font-size: 5em;
}

.bienvenido h3{
    text-align: justify;
    line-height: 2.5;
    color: #2c2a26;
    font-family: "Roboto Condensed", sans-serif;
}

.pata{
    background-color: #161513;
    width: 100%;
    color: #ffffff;
    font-family: "Roboto Condensed", sans-serif;
    padding: 10px 0;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo-pata{
    height: 100px;
    width: auto;
}


/*Estilos Contacto */

.titContacto{
    padding-top: 50px;
    text-align: center;
    color: #000000;
    font-size: 3em;
    font-family: "Oswald", sans-serif;
}

.centrar{
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.8em;
}

.dosColumnas{
    display: flex;
}

.formulario{
    width: 100%;
}

.form{
    width: 85%;
    height: 30px;
    padding: 5px;
    border-radius: 5px;
    border: none;
    background-color: #dfba29;
}

.form2{
    height: 200px;
}

.textoformulario{
    margin-top: 65px;
    color: #ffffff;
    font-size: 1.6em;
}

/* Estilo Servicios*/

.servicios{
    padding: 60px 20px;
    background-color: #f2ca2c;
    font-family: "Oswald", sans-serif;
}


.servicios-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.servicio{
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio:hover{
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.servicio img{
    max-width: 80px;
    margin-bottom: 20px;
}

.servicio h2{
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #333;
}

.servicios h4{
    font-family: "Roboto Condensed", sans-serif;
}

.servicio p{
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
}

/* Responsivo */

@media (max-width: 768px) {
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 1x Fila */
@media (max-width: 480px) {
    .servicios-grid {
        grid-template-columns: 1fr;
    }
}


/* Estilo Favoritos*/

.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.galeria .item {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.galeria .item .img-container {
  width: 100%;
  aspect-ratio: 4 / 3; 
  overflow: hidden;
  border-radius: 10px;
}

.galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.galeria p {
  margin-top: 10px;
  text-align: justify;
  max-width: 90%;
}

/* GENERAL (pantallas grandes) */
.banner {
    height: 600px;
}

.letras {
    top: 180px;
    width: 50%;
}

.letrasAnimadas h2 {
    font-size: 2.5em;
}

.letrasAnimadas p {
    font-size: 1em;
}

/* Tablet y laptop */
@media (max-width: 1024px) {
    .banner {
        height: 500px;
    }

    .letras {
        top: 150px;
        width: 60%;
    }

    .letrasAnimadas h2 {
        font-size: 2.2em;
    }

    .letrasAnimadas p {
        font-size: 0.9em;
    }
}

/* Tablets pequeñas */
@media (max-width: 768px) {
    .banner {
        height: 450px;
    }

    .letras {
        top: 130px;
        width: 80%;
    }

    .letrasAnimadas h2 {
        font-size: 1.8em;
    }

    .letrasAnimadas p {
        font-size: 0.85em;
    }

    .top {
        flex-direction: column;
    }

    .logo, .menuTop {
        width: 100%;
        justify-content: center;
        padding: 15px 0;
    }

    .columnas {
        display: block;
    }

    .col3 {
        width: 100%;
    }

    .parallax {
        background-attachment: scroll;
        background-position: center;
    }

    .parallax h3 {
        text-align: center;
        font-size: 2.5em;
        background-color: blueviolet;
        color: rgb(179, 114, 240);
    }

    .redes {
        display: none;
    }
}

/* Celulares */
@media (max-width: 480px) {
    .banner {
        height: 400px;
        background-position: center top;
    }

    .letras {
        top: 110px;
        width: 90%;
    }

    .letrasAnimadas h2 {
        font-size: 1.4em;
        color: #f49c04;
        background-color: #f0d098;
    }

    .letrasAnimadas p {
        font-size: 0.8em;
    }
}
