/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- HEADER & NAVEGAÇÃO --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
    height: 90px;
}

/* Configuração da Logo */
.logo-img {
    max-width: 250px;
    max-height: 150px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ESTILOS DESKTOP (Padrão) */
.desktop-nav {
    display: block;
}

.hamburger-menu {
    display: none;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav a {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-nav {
    background-color: #000;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-nav:hover {
    background-color: #333;
}

/* --- MENU MOBILE OVERLAY (Fixo e Escondido) --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mobile-logo-text {
    font-weight: 900;
    font-size: 24px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 22px;
    font-weight: 700;
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 100px 7%;
}

.hero-content {
    flex: 1;
    max-width: 640px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 0 30px 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
}

.btn-primary {
    background-color: #000;
    color: #fff;
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #000;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.hero-image-container {
    flex: 1;
    max-width: 520px;
    width: 100%;
    height: 420px;
    background-image: url("assets/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

/* --- DEMAIS SEÇÕES --- */
.quem-somos {
    text-align: center;
    padding: 80px 5%;
    max-width: 800px;
    margin: 0 auto;
}

.tagline {
    font-size: 12px;
    font-weight: 800;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-headline {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-paragraph {
    font-size: 16px;
    color: #444;
}

.values-section {
    padding: 0 5% 60px;
    background: #fff;
}

.values-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-pill {
    background: #f4f4f4;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid #e5e5e5;

    /* Transição suave */
    transition: all 0.25s ease;

    /* Relevo inicial sutil */
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.05),
        inset 0 -1px 0 rgba(255, 255, 255, 0.7);
}

.value-pill:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 4px 8px rgba(0, 0, 0, 0.05),
        inset 0 -1px 0 rgba(255, 255, 255, 0.9);

    background: #ffffff;
}

.value-pill:active {
    transform: translateY(-1px);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 2px 4px rgba(0, 0, 0, 0.05);
}


/* --- SERVICES --- */
.services-section {
    text-align: center;
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.small-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.service-item {
    padding: 40px 0;
}

.service-item h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/*
  ✅ IMAGENS DOS SERVIÇOS (ajustadas para seus arquivos)
  - desenvolvimento.png: 2048x868 (bem wide) → banner grande
  - Produção.png: 2048x2048 (quadrada) → tamanho quadrado grande
  - Posicionamento.png: 2048x2048 (quadrada) → tamanho quadrado grande

  IMPORTANTE:
  Isso assume que seu HTML está na ordem:
  1) Desenvolvimento Web & Performance
  2) Produção Audiovisual
  3) Posicionamento de Marca
*/
.service-icon {
    width: 100%;
    margin: 18px auto 22px;
    border-radius: 0;
    /* sem bordas arredondadas */
    overflow: hidden;
    /* garante corte limpo se usar object-fit */
    background: transparent;
    box-shadow: none;
}

/* Base da imagem */
.service-icon img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
    /* garante que não arredonde */
    object-fit: cover;
    /* preenche mantendo estética */
}

/* 1) Desenvolvimento (wide 2048x868 ≈ 2.36:1) */
.services-list .service-item:nth-of-type(1) .service-icon {
    max-width: 900px;
    /* ocupa bem a largura da seção */
    aspect-ratio: 2048 / 868;
    /* mantém proporção perfeita */
}

/* 2) Produção (quadrada 1:1) */
.services-list .service-item:nth-of-type(2) .service-icon {
    max-width: 900px;
    /* quadrado grande e elegante */
    aspect-ratio: 2048 / 868;
}

/* 3) Posicionamento (quadrada 1:1) */
.services-list .service-item:nth-of-type(3) .service-icon {
    max-width: 900px;
    aspect-ratio: 2048 / 868;
}

.service-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
}

.divider {
    border: 0;
    border-top: 1px solid #eee;
    width: 100%;
    margin: 0;
}

/* --- PROCESS --- */
.process-section {
    padding: 60px 5%;
    background-color: #f9f9f9;
}

.process-box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-list {
    text-align: left;
    margin: 30px auto;
    max-width: 400px;
    display: inline-block;
}

.process-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-weight: 500;
}

.process-list li::before {
    content: "•";
    color: #000;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.btn-large {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
}

/* --- FOOTER --- */
.site-footer {
    padding: 60px 5%;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-text strong {
    font-size: 18px;
}

.footer-subtext {
    color: #777;
    font-size: 14px;
    margin-top: 5px;
}

.footer-squares {
    display: flex;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.whatsapp {
    background-color: #25D366;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- RESPONSIVIDADE (MOBILE - 768px ou menos) --- */
@media (max-width: 768px) {

    /* Esconde o menu desktop e mostra o hamburger */
    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
        cursor: pointer;
    }

    /* HERO */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-image-container {
        max-width: 100%;
        height: 260px;
    }

    /* SERVICES: ajustes mobile (mantém proporção perfeita via aspect-ratio) */
    .services-list .service-item:nth-of-type(1) .service-icon {
        max-width: 100%;
    }

    .services-list .service-item:nth-of-type(2) .service-icon,
    .services-list .service-item:nth-of-type(3) .service-icon {
        max-width: 360px;
        /* quadrado ainda grande no mobile, sem estourar */
    }

    /* Logo um pouco menor no mobile */
    .logo-img {
        max-width: 200px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}