*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
}

/* ===========================
   HEADER
=========================== */

header{
    position:relative;
    background:#151d3b;
    color:white;
    text-align:center;
    padding:70px 40px;
}

.header-content{
    max-width:1200px;
    margin:auto;
}

.logo{
    font-size:64px;
    font-weight:700;
}

.logo span{
    color:#ffdb15;
}

header p{
    margin-top:15px;
    font-size:22px;
    opacity:.85;
}

/* WhatsApp Button */

.whatsapp-btn{
    position:absolute;
    top:30px;
    right:40px;

    display:flex;
    align-items:center;
    gap:10px;

    background:#25D366;
    color:#fff;
    text-decoration:none;

    padding:14px 24px;
    border-radius:50px;

    font-size:16px;
    font-weight:600;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s ease;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(0,0,0,.35);
}

.whatsapp-btn i{
    font-size:22px;
}

/* ===========================
   MENU
=========================== */

.menu{
    max-width:1100px;
    margin:60px auto;
    padding:0 20px;
}

.menu h2{
    color:#151d3b;
    margin-bottom:30px;
    border-left:6px solid #ffdb15;
    padding-left:15px;
    font-size:30px;
}

.menu-card{
    background:#fff;
    display:flex;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:25px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;
}

.menu-card:hover{
    transform:translateY(-8px);
}

.menu-card img{
    width:250px;
    object-fit:cover;
}

.content{
    flex:1;
    padding:25px;
}

.top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.top h3{
    font-size:24px;
}

.top span{
    background:#ffdb15;
    padding:8px 16px;
    border-radius:30px;
    font-weight:600;
}

.content p{
    color:#666;
    line-height:1.7;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#151d3b;
    color:white;
    text-align:center;
    padding:60px 20px;
}

footer h2{
    margin-bottom:30px;
}

.socials{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:30px;
}

.socials a{
    width:60px;
    height:60px;

    border-radius:50%;

    background:#ffdb15;
    color:#151d3b;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
    text-decoration:none;

    transition:.3s;
}

.socials a:hover{
    transform:scale(1.15);
}

footer p{
    opacity:.8;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    header{
        padding:90px 20px 50px;
    }

    .logo{
        font-size:42px;
    }

    header p{
        font-size:18px;
    }

    .whatsapp-btn{
        top:15px;
        right:15px;
        padding:10px 16px;
        font-size:14px;
    }

    .whatsapp-btn i{
        font-size:18px;
    }

    .menu-card{
        flex-direction:column;
    }

    .menu-card img{
        width:100%;
        height:220px;
    }

    .top{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .menu h2{
        font-size:26px;
    }

}
.location-btn{
    position:absolute;
    top:30px;
    right:260px;

    display:flex;
    align-items:center;
    gap:10px;

    background:#ffdb15;
    color:#151d3b !important;

    text-decoration:none;

    padding:14px 24px;
    border-radius:50px;

    font-size:16px;
    font-weight:600;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s ease;
}

.location-btn:hover{
    background:#ffd000;
    transform:translateY(-3px);
}

.location-btn i{
    font-size:20px;
}