/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#ffffff;
    color:#111;
}

/* ===========================
   HEADER
=========================== */

.site-header{

    position:sticky;
    top:0;
    z-index:9999;

    width:100%;

    background:#2c2c2c;

    box-shadow:0 2px 8px rgba(0,0,0,.20);

}

.header-inner{

    width:1100px;
    margin:auto;

    display:grid;
    grid-template-columns:130px 1fr 180px;

    align-items:center;

    height:92px;

}

.brand{

    text-decoration:none;

}

.brand-mark{

    width:64px;
    height:64px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(45deg,#ffb000,#ff4444,#2d8cff);

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:white;

    font-size:12px;
    font-weight:bold;

}

.main-nav{

    display:flex;
    flex-direction:column;
    align-items:center;

}

.nav-main{

    display:flex;
    gap:28px;

}

.nav-main a{

    color:white;
    text-decoration:none;

    font-size:15px;

}

.nav-main a:hover{

    color:#f3b357;

}

.nav-secondary{

    margin-top:18px;

}

.nav-secondary a{

    color:white;
    text-decoration:none;

}

.header-actions{

    display:flex;

    justify-content:flex-end;

    gap:16px;

}

.header-actions a{

    color:white;
    text-decoration:none;
    font-size:18px;

}

/* ===========================
   HERO
=========================== */

.hero{

    width:1100px;

    margin:auto;

    display:grid;

    grid-template-columns:50% 50%;

}

.hero-image{

    background:#ececec;

    min-height:560px;

}

.placeholder-image{

    margin:16px;

    height:528px;

    border:2px solid #333;

    background:linear-gradient(135deg,#d7e5ee,#f0e2d6,#d6e7ee);

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;
    color:#333;

}

.hero-panel{

    background:#080808;

    color:white;

    padding:80px 70px;

}

.hero-kicker{

    font-size:26px;

    margin-bottom:18px;

}

.hero-panel h1{

    font-size:62px;

    font-weight:300;

    line-height:1.15;

}

.hero-subtitle{

    margin-top:55px;

    font-size:21px;

}

.primary-button{

    display:inline-block;

    margin-top:45px;

    padding:14px 34px;

    background:#f3b357;

    color:#111;

    text-decoration:none;

    border-radius:4px;

}

/* ===========================
   CONTENIDO
=========================== */

.content-section{

    width:1100px;

    margin:60px auto;

}

.content-section article{

    margin-bottom:55px;

}

.content-section h2{

    font-size:60px;

    font-weight:300;

    margin-bottom:14px;

}

.content-section p{

    font-size:22px;

    line-height:1.8;

}

/* ===========================
   FOOTER
=========================== */

.site-footer{

    background:#2d2d2d;

    color:white;

    padding:60px 0 25px;

}

.footer-grid{

    width:1100px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr 1fr;

}

.footer-menu{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-menu a{

    color:white;
    text-decoration:none;

}

.footer-contact{

    text-align:center;

    font-size:22px;

    line-height:2;

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:35px;

    font-size:42px;

}

.footer-bottom{

    width:1100px;

    margin:60px auto 30px;

    display:flex;

    justify-content:space-around;

    text-align:center;

}

.footer-bottom strong{

    font-size:26px;

}

.footer-bottom p{

    margin-top:12px;

    font-size:30px;

}

.footer-legal{

    text-align:center;

    font-size:17px;

}

/* ===========================
   WHATSAPP
=========================== */

.whatsapp-floating{

    position:fixed;

    right:28px;
    bottom:28px;

    width:68px;
    height:68px;

    border-radius:50%;

    background:#25D366;

    color:white;

    text-decoration:none;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:34px;

    box-shadow:0 0 15px rgba(0,0,0,.25);

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1150px){

    .header-inner,
    .hero,
    .content-section,
    .footer-grid,
    .footer-bottom{

        width:94%;

    }

}

@media(max-width:900px){

    .hero{

        grid-template-columns:1fr;

    }

    .header-inner{

        grid-template-columns:1fr;

        height:auto;

        padding:25px;

        row-gap:20px;

    }

    .nav-main{

        flex-wrap:wrap;

        justify-content:center;

    }

}

.hero-main-image{
    width:100%;
    height:auto;
    display:block;
    border-radius:0;
    object-fit:cover;
}