:root{
    --blanco:#ffffff;
    --gris:#f7f7f7;
    --negro:#111111;
    --gris_texto:#666666;
    --gris_claro:#ececec;

    /* TONOS ELEGANTES */
    --dorado:#b89b84;
    --beige:#f3ece5;
}

/* ================================= */
/* RESET */
/* ================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--gris);
    color:var(--negro);
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
}

/* ================================= */
/* HEADER */
/* ================================= */

.header{
    width:100%;
    background:white;
    padding:20px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid var(--gris_claro);
}

.logo{
    text-decoration:none;
}

.header_logo{
    width:300px;
    height:auto;
    object-fit:contain;
}

/* ================================= */
/* MENU HAMBURGUESA */
/* ================================= */

.menu-toggle{
    display:none;
    font-size:32px;
    background:none;
    border:none;
    cursor:pointer;
    color:var(--negro);
}

/* ================================= */
/* NAV */
/* ================================= */

.navegacion{
    display:flex;
    gap:30px;
}

.navegacion a{
    text-decoration:none;
    color:var(--negro);
    font-size:15px;
    transition:.3s;
    font-weight:500;
}

.navegacion a:hover{
    color:var(--dorado);
}

/* ================================= */
/* BOTONES */
/* ================================= */

.btn{
    background:black;
    color:white;
    padding:14px 28px;
    border-radius:40px;
    text-decoration:none;
    transition:.3s;
    font-size:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn:hover{
    background:var(--dorado);
}

.btn-outline{
    border:1px solid black;
    color:black;
    padding:14px 28px;
    border-radius:40px;
    text-decoration:none;
    transition:.3s;
    font-size:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-outline:hover{
    background:black;
    color:white;
}

/* ================================= */
/* BOTÓN SERVICIOS */
/* ================================= */

.boton-servicios{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:50px;
    margin-bottom:40px;
}

.boton-servicios a{
    background:black;
    color:white;
    text-decoration:none;
    padding:16px 40px;
    border-radius:50px;
    font-size:16px;
    font-weight:500;
    transition:.3s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.boton-servicios a:hover{
    background:var(--dorado);
    transform:translateY(-3px);
}

/* ================================= */
/* HERO */
/* ================================= */

.hero{
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-left:8%;

    background-image:
    linear-gradient(
        to right,
        rgba(247,245,243,0.98) 20%,
        rgba(247,245,243,0.92) 35%,
        rgba(247,245,243,0.75) 50%,
        rgba(247,245,243,0.15) 70%
    ),
    url("../img/grafico_1.png");

    background-size:cover;
    background-position:right center;
    background-repeat:no-repeat;
}

.hero_contenido{
    max-width:520px;
}

.hero-text{
    max-width:650px;
    position:relative;
    z-index:2;
}

.hero-text span{
    letter-spacing:3px;
    color:var(--dorado);
    font-size:12px;
    font-weight:600;
}

.hero-text h2{
    font-family:'Cormorant Garamond',serif;
    font-size:88px;
    line-height:1;
    margin:24px 0;
    font-weight:500;
}

.hero-text p{
    color:#555;
    line-height:1.9;
    margin-bottom:35px;
    max-width:520px;
    font-size:18px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* ================================= */
/* SECCIONES */
/* ================================= */

.section{
    padding:110px 7%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h3{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    font-weight:500;
}

/* ================================= */
/* CARDS */
/* ================================= */

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:white;
    padding:45px;
    border-radius:24px;
    transition:.4s;
    box-shadow:0 5px 15px rgba(0,0,0,.03);
    text-decoration:none;
    color:#111;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.card-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:30px;
}

.card-header img{
    width:58px;
    height:58px;
    object-fit:contain;
}

.card h4{
    font-size:24px;
    margin-bottom:10px;
}

.card p{
    color:var(--gris_texto);
    line-height:1.8;
}

/* ================================= */
/* GALERÍA */
/* ================================= */

#galeria{
    background:#ffffff;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.gallery img{
    width:100%;
    height:380px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
}

.gallery img:hover{
    transform:scale(1.02);
}

/* ================================= */
/* ABOUT */
/* ================================= */

.about{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:70px;
    flex-wrap:wrap;
}

.about img{
    width:100%;
    max-width:430px;
    border-radius:24px;
}

.about-text{
    flex:1;
    min-width:300px;
}

.about-text h3{
    font-family:'Cormorant Garamond',serif;
    font-size:62px;
    margin-bottom:24px;
}

.about-text p{
    color:#666;
    line-height:2;
    margin-bottom:35px;
}


/* ================================= */
/* UBICACIÓN */
/* ================================= */

.ubicacion{
    padding:100px 7%;
    background:#ffffff;
}

.ubicacion-contenido{
    text-align:center;
    margin-bottom:40px;
}

.ubicacion-contenido h2{
    font-size:52px;
    margin-bottom:20px;
    font-family:'Cormorant Garamond', serif;
}

.ubicacion-contenido p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.mapa{
    width:100%;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* ================================= */
/* FOOTER */
/* ================================= */

footer{
    background:black;
    color:white;
    text-align:center;
    padding:35px 20px;
    margin-top:80px;
    font-size:14px;
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media (max-width:1200px){

    .hero-text h2{
        font-size:65px;
    }

    .cards{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:900px){

    .header{
        padding:20px 5%;
        position:relative;
    }

    .menu-toggle{
        display:block;
    }

    .navegacion{
        display:none;
        flex-direction:column;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:white;
        padding:25px;
        gap:20px;
        text-align:center;
        border-bottom:1px solid var(--gris_claro);
    }

    .navegacion.active{
        display:flex;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        padding:70px 5%;
        justify-content:center;
    }

    .hero-text h2{
        font-size:56px;
    }

    .hero-text p{
        margin:auto;
        margin-bottom:35px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .gallery{
        grid-template-columns:1fr 1fr;
    }

    .about{
        flex-direction:column;
        text-align:center;
    }

    .about-text h3{
        font-size:50px;
    }

    .header .btn{
        display:none;
    }

}

@media (max-width:600px){

    .header{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        gap:20px;
    }

    .header_logo{
        width:200px;
    }

    .hero{
        padding:50px 5%;
        min-height:auto;
        background-position:center;
    }

    .hero-text h2{
        font-size:42px;
    }

    .hero-text p{
        font-size:14px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons a{
        width:100%;
    }

    .btn,
    .btn-outline{
        width:100%;
    }

    .section{
        padding:70px 5%;
    }

    .section-title h3{
        font-size:42px;
    }

    .gallery{
        grid-template-columns:1fr;
    }

    .gallery img{
        height:320px;
    }

    .about-text h3{
        font-size:42px;
    }

    .ubicacion-contenido h2{
        font-size:38px;
    }

    footer{
        font-size:12px;
    }

}

@media (max-width:380px){

    .hero-text h2{
        font-size:34px;
    }

    .section-title h3{
        font-size:34px;
    }

    .about-text h3{
        font-size:34px;
    }

    .card{
        padding:28px;
    }

}