header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 100px 0 100px; 
}

/* Cambiado a .logo-marca */
.logo-marca {
    display: flex;
    align-items: center;
    gap: 15px; 
}

.logo {
    width: 50px; 
    height: 50px;
    object-fit: contain;
}

/* Cambiado a .nombre */
.nombre {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.menu-hamb {
    display: none;
}

nav {
    padding-top: 0; 
}

.menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 90px;
    padding-right: 0;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #FBBE28;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
}

body {
    background-image: url("fondo.jpeg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
}

.hero-texto {
    margin-top: 10vw;
    margin-left: 8vw;
    padding-bottom: 8vw;
}

.hero-texto h1 {
    color: white;
    font-family: Arial, sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: bold;
    line-height: 1.1;
}

.hero-texto p {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 24px;
    margin-top: 30px;
    line-height: 1.4;
}

.boton {
    display: inline-block;
    margin-top: 40px;
    background-color: #FBBE28;
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 15px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
}

.que-hacemos {
    width: 100%;
    background-color: #161121;
    color: white;
    padding: 80px 100px;
    box-sizing: border-box;
    margin-top: 0px;
}

.que-hacemos h2 {
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: bold;
    text-align: center;
}

.subtitulo {
    font-family: Arial, sans-serif;
    font-size: 20px;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 60px;
}

/* Cambiado a .cajas */
.cajas {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

/* Cambiado a .caja */
.caja {
    width: 30%;
}

.caja h3 {
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: left;
    min-height: 60px;
}

.caja p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
}

.circulo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 25px auto;
}

.la-diferencia {
    width: 100%;
    height: 450px;
    background-image: url("fondo2.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.la-diferencia-contenido {
    text-align: center;
}

.la-diferencia h2 {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 25px;
}

.la-diferencia p {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.6;
}

.sumate {
    background-color: #161121;
    color: white;
    padding: 60px 100px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
}

.info-recorrida {
    width: 35%;
    padding-right: 60px;
    border-right: 1px solid rgba(255,255,255,0.4);
}

.info-recorrida h2 {
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 40px;
}

.info-recorrida p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
}

.formulario {
    width: 35%;
}

.texto-formulario {
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 25px;
}

.formulario label {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 13px;
    margin-bottom: 5px;
}

.formulario input {
    width: 100%;
    height: 35px;
    margin-bottom: 15px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    padding-left: 10px;
    box-sizing: border-box;
}

.formulario button {
    width: 100%;
    height: 35px;
    background-color: #d4c6e6;
    border: none;
    border-radius: 6px;
    color: #161121;
    font-weight: bold;
    cursor: pointer;
}

.footer {
    width: 100%;
    background-color: #F2E9DC;
    padding: 35px 100px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer .logo {
    width: 70px;
    height: 70px;
}

.footer h3 {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #161121;
    margin-bottom: 8px;
}

.footer p {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #161121;
    margin: 3px 0;
}

.footer-contacto {
    text-align: left;
}

/* ==========================================================================
   RESPONSIVE / MEDIA QUERY
   ========================================================================== */

@media (max-width:800px) {

    header {
        padding: 20px 25px 0 25px; 
    }

    header .logo {
        width: 40px; 
        height: 40px;
    }

    /* Cambiado a .nombre */
    .nombre {
        font-size: 16px; 
    }

    .menu-hamb {
        display: block;
        color: #FBBE28;
        font-size: 35px;
        text-align: right;
        margin-right: 0; 
    }

    body {
        background-size: cover;
    }

    .menu {
        display: none;
    }

    .hero-texto {
        margin-top: 100px;
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
    }

    .hero-texto h1 {
        font-size: 42px;
    }

    .hero-texto p {
        font-size: 18px;
    }

    .que-hacemos {
        padding: 50px 20px;
    }

    /* Cambiado a .cajas */
    .cajas {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    /* Cambiado a .caja */
    .caja {
        width: 100%;
    }

    .caja h3 {
        text-align: center;
        min-height: auto;
        margin-bottom: 10px;
        font-size: 28px;
    }

    .caja p {
        text-align: center;
        font-size: 16px;
        line-height: 1.6;
        max-width: 300px;
        margin: auto;
    }

    .circulo {
        width: 170px;
        height: 170px;
        margin-bottom: 20px;
    }

    .la-diferencia {
        height: auto;
        padding: 80px 20px;
    }

    .la-diferencia h2 {
        font-size: 35px;
    }

    .la-diferencia p {
        font-size: 16px;
    }

    .sumate {
        flex-direction: column;
        padding: 50px 20px;
        gap: 50px;
    }

    .info-recorrida {
        width: 100%;
        border-right: none;
        padding-right: 0;
    }

    .formulario {
        width: 100%;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .footer-logo {
        flex-direction: column;
    }
}