/* CONFIGURAÇÃO DE SCROLL SUAVE */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #27ae60;    
    --secondary-color: #0467fb;  
    --bg-dark: #000000;          
    --bg-card: #161616;          
    --light-color: #f8f8f8;
    --text-gray: #b0b0b0;
}

* {
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all .3s linear;
}

body {
    background: var(--bg-dark);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 5rem 7%;
    margin: 0 auto;
    max-width: 1200px;
}

/* --- HEADER --- */
.header {
    background: rgba(10, 10, 10, 0.95);
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.header section {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 2rem;
}

.header .logo { font-size: 2.5rem; color: #fff; font-weight: 800; }
.header .logo span { color: var(--primary-color); }

.header .navbar { display: flex; align-items: center; }
.header .navbar a {
    color: var(--light-color);
    font-size: 1.6rem;
    margin-left: 2rem;
}

.header .navbar a:hover { color: var(--secondary-color); }
.nav-whatsapp img { width: 35px; transform: translateY(5px); }

/* --- HOME --- */
.home-container {
    background: linear-gradient(rgba(0,0,0,0.7), var(--bg-dark)), url("./img/img_home.png") center/cover;
    height: 100vh;
    display: flex; align-items: center;
    padding: 0 7%;
}

.home .content h3 { font-size: 4rem; color: #fff; line-height: 1.2; }
.home .content .highlight { color: var(--primary-color); }
.home .content .highlight-blue { color: var(--secondary-color); }
.home .content p { font-size: 1.6rem; color: var(--text-gray); margin: 2rem 0; max-width: 700px;}

/* --- BOTÕES --- */
.btn {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 1.2rem 2.8rem;
    border-radius: 0.5rem;
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

/* --- TÍTULOS --- */
.title {
    font-size: 3.5rem;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 3rem;
}
.title span { color: var(--primary-color); }

/* --- SOBRE (ABOUT - LARGO) --- */
.about { max-width: 1400px; }
.about .row {
    display: flex; align-items: center; gap: 4rem;
    background-color: var(--bg-card);
    border-radius: 1.5rem; padding: 4rem;
    flex-wrap: nowrap;
}
.about .row .container-image { flex: 0 0 45%; }
.about .row .container-image img { width: 100%; border-radius: 1rem; }
.about .row .content { flex: 0 0 55%; }
.about .row .content h3 { font-size: 2.8rem; color: #fff; margin-bottom: 1.5rem; }
.about .row .content p { font-size: 1.5rem; color: var(--text-gray); margin-bottom: 1rem; }

/* --- GRID DE CARDS (MKAUTH E SERVIÇOS) --- */
.menu .box-container, 
.servicos .box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Força 3 na linha e mais largos */
    gap: 2.5rem;
}

.menu .box-container .box,
.servicos .box-container .box {
    background: var(--bg-card);
    padding: 3.5rem 2rem;
    text-align: center;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column;
}

.menu .box-container .box:hover,
.servicos .box-container .box:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.menu .box-container .box img,
.servicos .box-container .box img {
    height: 12rem; margin-bottom: 1.5rem; object-fit: contain;
}

.title-wrapper { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-bottom: 1rem; }
.title-wrapper h3 { font-size: 2.2rem; color: #fff; margin: 0 !important; }
.box .title-wrapper img.verify-badge { height: 2.2rem !important; width: 2.2rem !important; margin: 0 !important; }

.price { font-size: 2.2rem; color: var(--primary-color); font-weight: 700; margin: 1rem 0; }
.box p { font-size: 1.4rem; color: var(--text-gray); text-align: left; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);}

/* --- FOOTER --- */
.footer { background: #050505; padding: 5rem 7%; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr)); gap: 3rem; }

.whatsapp-box { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.whatsapp-box img { width: 35px; transform: translateY(-5px); }

.footer-box h3 { font-size: 2.2rem; color: #fff; margin-bottom: 1.5rem; }
.footer-box h3 span { color: var(--secondary-color); }
.footer-box p, .footer-box a { font-size: 1.4rem; color: var(--text-gray); display: block; margin-bottom: 1rem; }

.share a {
    height: 4.5rem; width: 4.5rem; line-height: 4.5rem; font-size: 2rem;
    color: #fff; border: 1px solid rgba(255,255,255,0.1);
    margin-right: 1rem; text-align: center; display: inline-block;
}
.share a:hover { background: var(--primary-color); border-color: var(--primary-color); }

.credit { text-align: center; padding: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 1.6rem; margin-top: 2rem; }

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .menu .box-container, .servicos .box-container { grid-template-columns: repeat(2, 1fr); }
    .about .row { flex-wrap: wrap; }
    .about .row .container-image, .about .row .content { flex: 1 1 100%; }
}

@media (max-width: 768px) {
    .menu .box-container, .servicos .box-container { grid-template-columns: 1fr; }
    .header .navbar { display: none; }
    .title { font-size: 2.8rem; }
}