/* ============================================================
   RESET E CONFIGURAÇÕES GERAIS (Identidade Click Kong)
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-white: #ffffff;
    --primary-black: #1a1a1a;
    --accent-yellow: #f9dc02;
    --light-yellow: #fffed4;
    --text-black: #1a1a1a;
    --text-grey: #666666;
    --bg-light: #fffed4;
    --border-grey: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-black);
    line-height: 1.7;
    background-color: var(--primary-white);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

strong {
    font-weight: 700;
}

/* Títulos com fonte de impacto substituindo Square Chunks */
h1, h2, h3, h4 {
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Divisores */
.divider-theme {
    width: 60px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin-bottom: 30px;
}

.divider-theme-short {
    width: 40px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin: 0 auto 30px auto;
}

.divider-black {
    width: 60px;
    height: 4px;
    background-color: var(--primary-black);
    margin: 0 auto 30px auto;
}

/* ============================================================
   BARRA DE TOPO
   ============================================================ */
.top-bar {
    background-color: var(--light-yellow);
    padding: 10px 0;
    font-size: 13px;
    color: var(--primary-black);
    border-bottom: 1px solid var(--accent-yellow);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    font-weight: 600;
}

.contact-info i {
    color: var(--accent-yellow);
    margin-right: 8px;
    text-shadow: 1px 1px 1px #000;
}

.social-links a {
    color: var(--primary-black);
    margin-left: 20px;
    font-size: 15px;
}

.social-links a:hover {
    color: var(--accent-yellow);
}

/* ============================================================
   NAVEGAÇÃO PRINCIPAL
   ============================================================ */
.main-nav {
    background: var(--primary-black);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-yellow);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%; /* Faz o menu ocupar toda a largura da tela */
    padding: 0 50px; /* Dá um respiro nas laterais para não encostar totalmente na borda */
}

.main-nav .logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-actions {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.main-nav .logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
}

.nav-links li a {
    color: var(--primary-white);
    font-weight: 600;
    font-size: 14px;
    margin: 0 18px;
}

.nav-links li a:hover {
    color: var(--accent-yellow);
}

.btn-budget {
    background-color: var(--accent-yellow);
    color: var(--primary-black);
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-budget:hover {
    background-color: var(--light-yellow);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 600px;
    background-color: var(--primary-black);
}

.hero .swiper-wrapper { height: 100%; }
.swiper-slide { display: flex; align-items: center; }

.hero-slide-1, .hero-slide-2 {
    background: linear-gradient(45deg, #1a1a1a, #333333);
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(249,220,2,0.1) 0%, rgba(26,26,26,0.9) 80%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    color: var(--primary-white);
    display: flex;
    justify-content: center;
    align-items: center; /* Centra o conteúdo no eixo vertical */
    width: 100%;
    height: 100%; /* Garante que o contentor ocupa toda a altura do banner */
}

.hero-content {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-content { max-width: 700px; }
.hero-content h1 { font-size: 56px; line-height: 1.1; margin-bottom: 25px; color: var(--accent-yellow); }
.hero-content p { font-size: 20px; font-weight: 300; margin-bottom: 40px; font-family: 'Inter', sans-serif; }

.btn-more {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: var(--primary-black);
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}
.btn-more:hover { background-color: var(--primary-white); }

/* ============================================================
   DESTAQUES
   ============================================================ */
.features {
    background-color: var(--primary-black);
    padding: 80px 0;
    border-bottom: 1px solid #333;
}

.features .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.feature-item {
    background: #222;
    padding: 35px 25px;
    border-radius: 8px;
    border-bottom: 4px solid var(--accent-yellow);
    transition: var(--transition);
}
.feature-item:hover { transform: translateY(-5px); background: #2a2a2a; }

.feature-item i {
    font-size: 26px; color: var(--primary-black); background: var(--accent-yellow);
    width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
    border-radius: 4px; margin-bottom: 20px;
}

.feature-item h3 { font-size: 17px; color: var(--primary-white); margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: #aaa; margin: 0; }

/* ============================================================
   A AGÊNCIA
   ============================================================ */
.about-section { padding: 120px 0; background-color: var(--primary-white); }
.about-section .container { display: flex; align-items: center; gap: 70px; }

.image-frame {
    background-color: transparent; 
    padding: 0; 
    border: none;
}

.image-frame img { 
    width: 100%; 
    height: auto; 
    display: block; 
}

.about-content { flex: 1.2; }
.about-content .subtitle { color: var(--primary-black); font-size: 15px; font-weight: 700; display: block; margin-bottom: 12px; }
.about-content h2 { font-size: 42px; margin-bottom: 15px; }
.about-content p { color: var(--text-grey); font-size: 16px; margin-bottom: 25px; }
.about-image {
    flex: 0.8; /* Reduz a proporção do container da imagem */
    max-width: 400px; /* Trava o tamanho máximo para não crescer demais em telas grandes */
    margin: 0 auto; /* Ajuda a centralizar caso a tela diminua */
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.services-section { background-color: var(--accent-yellow); padding: 120px 0; text-align: center; }
.services-header { max-width: 800px; margin: 0 auto 80px auto; }
.services-header h2 { font-size: 42px; margin-bottom: 15px; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.service-card {
    background: var(--primary-black); color: var(--primary-white);
    padding: 60px 30px; text-align: left; position: relative; border-radius: 4px;
    min-height: 380px; display: flex; flex-direction: column; transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); }

.service-icon { font-size: 40px; margin-bottom: 30px; color: var(--accent-yellow); }
.service-card h3 { font-size: 22px; margin-bottom: 20px; color: var(--accent-yellow); }
.service-card p { font-size: 15px; color: #ccc; font-family: 'Inter', sans-serif; }

.service-number {
    font-size: 70px; font-weight: 800; position: absolute; bottom: 20px; right: 20px;
    opacity: 0.1; font-family: 'Russo One', sans-serif; color: var(--primary-white);
}

/* ============================================================
   CONTATO
   ============================================================ */
.contact-section { padding: 120px 0; text-align: center; }
.contact-form-wrapper { max-width: 800px; margin: 0 auto; }
.contact-form-wrapper h2 { font-size: 42px; margin: 15px 0; }

form .form-row { display: flex; gap: 20px; margin-bottom: 25px; }
.form-control { flex: 1; text-align: left; }
.form-control label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 10px; }

.form-control input, .form-control select, .form-control textarea {
    width: 100%; padding: 18px 20px; border: 2px solid var(--border-grey);
    border-radius: 4px; background-color: var(--bg-light); font-family: 'Inter', sans-serif;
}
.form-control input:focus, .form-control select:focus, .form-control textarea:focus {
    outline: none; border-color: var(--primary-black);
}

.btn-whatsapp {
    background-color: var(--primary-black); 
    color: var(--accent-yellow);
    border: none; 
    padding: 18px 45px; 
    border-radius: 4px; 
    font-family: 'Russo One', sans-serif;
    font-size: 16px; 
    cursor: pointer; 
    display: inline-flex; 
    align-items: center; 
    gap: 12px;
    margin-top: 20px; /* Esse é o espaço adicionado */
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.main-footer { background-color: var(--primary-black); color: var(--primary-white); padding-top: 60px; }
.footer-content { display: flex; justify-content: space-between; padding-bottom: 40px; }
.footer-bottom { background-color: #0a0a0a; padding: 20px 0; text-align: center; font-size: 13px; color: #666; }

@media (max-width: 768px) {
    .features .container, .services-grid, form .form-row { 
        grid-template-columns: 1fr; 
        flex-direction: column; }

    .about-section .container { 
        flex-direction: column; }
    
    .hero { 
        height: 500px; }

    /* Ajustes do Menu para Celular */
    .main-nav .container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 15px;
    }

    .main-nav .logo {
        flex: unset;
    }

    .main-nav .logo img {
        height: 35px; /* Reduz a logo proporcionalmente */
    }

    .nav-links {
        display: none; /* Oculta os links em texto para liberar espaço */
    }

    .nav-actions {
        flex: unset;
    }

    .btn-budget {
        padding: 10px 15px;
        font-size: 11px; /* Reduz o botão para não quebrar a linha */
        white-space: nowrap; /* Impede que o texto do botão caia para a linha de baixo */
    }
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.main-footer { 
    background-color: var(--primary-black); 
    color: var(--primary-white); 
    padding-top: 80px; 
}

.footer-content { 
    display: flex; 
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente entre as colunas */
    gap: 120px; /* Cria o espaçamento entre a coluna da marca e a do contato */
    padding-bottom: 80px; 
    max-width: 900px; /* Limita a largura para manter o bloco no centro da tela */
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--primary-white);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-white);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-black);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--accent-yellow);
    margin-right: 15px;
    font-size: 14px;
    width: 15px;
    text-align: center;
}

.footer-divider-small {
    width: 100%;
    max-width: 300px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer-bottom { 
    background-color: #0a0a0a; 
    padding: 25px 0; 
    font-size: 13px; 
    color: rgba(255, 255, 255, 0.5); 
}

.bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}