/* ========================================
   RESET E CONFIGURAÇÕES GERAIS
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --laranja-primario: #f5a42d;
    --laranja-claro: #f4cb91;
    --azul-escuro: #127abd;
    --azul-claro: #95b7d9;
    --cinza-claro: #f4f4f4;
    --branco: #ffffff;
    --preto: #000000;
    --font-principal: 'Montserrat', 'Trap', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-principal);
    line-height: 1.6;
    color: var(--preto);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--branco);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--preto);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--azul-escuro);
}

.cta-btn-nav {
    background: var(--azul-escuro);
    color: var(--branco);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn-nav:hover {
    background: var(--azul-claro);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 122, 189, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--preto);
    transition: 0.3s;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--azul-claro) 0%, var(--branco) 100%);
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--preto);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
}

.hero-offer {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--azul-escuro);
}

.cta-btn {
    display: inline-block;
    background: var(--laranja-primario);
    color: var(--branco);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(245, 164, 45, 0.3);
}

.cta-btn:hover {
    background: #e89620;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 164, 45, 0.5);
}

.hero-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* ========================================
   QUEM SOMOS
   ======================================== */

.quem-somos {
    padding: 80px 0;
    background: var(--branco);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--azul-escuro);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #333;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.area-item {
    background: var(--cinza-claro);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.area-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.area-item h3 {
    font-size: 1.1rem;
    color: var(--azul-escuro);
    font-weight: 600;
}

.destaque-text {
    text-align: center;
    font-size: 1.1rem;
    background: var(--laranja-claro);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

/* ========================================
   PROVA SOCIAL (LOGOS)
   ======================================== */

.prova-social {
    padding: 80px 0;
    background: var(--cinza-claro);
}

.logos-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.logos-strip {
    background: var(--branco);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}

.logos-strip:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.logos-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* ========================================
   SERVIÇOS
   ======================================== */

.servicos {
    padding: 80px 0;
    background: var(--branco);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.servico-card {
    background: var(--cinza-claro);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s;
    border-top: 5px solid var(--laranja-primario);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.servico-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.servico-card h3 {
    font-size: 1.4rem;
    color: var(--azul-escuro);
    margin-bottom: 20px;
    font-weight: 700;
}

.servico-card ul {
    list-style: none;
}

.servico-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
}

.servico-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--laranja-primario);
    font-weight: bold;
}

.studio-highlight {
    background: var(--azul-claro);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 30px;
}

/* ========================================
   MÉTODO
   ======================================== */

.metodo {
    padding: 80px 0;
    background: var(--cinza-claro);
}

.metodo-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 200px;
    background: var(--branco);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--laranja-primario);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--azul-escuro);
    margin-bottom: 15px;
    font-weight: 700;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--azul-escuro);
    font-weight: bold;
}

/* ========================================
   PRESENTE
   ======================================== */

.presente {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--laranja-claro) 0%, var(--laranja-primario) 100%);
}

.presente-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.presente-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.presente-content h2 {
    font-size: 2.5rem;
    color: var(--branco);
    margin-bottom: 20px;
    font-weight: 700;
}

.presente-text {
    font-size: 1.2rem;
    color: var(--branco);
    margin-bottom: 30px;
}

/* ========================================
   FORMULÁRIO
   ======================================== */

.formulario {
    padding: 80px 0;
    background: var(--branco);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
}

.cta-btn-large {
    font-size: 1.3rem;
    padding: 20px 50px;
}

.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* ========================================
   AUTORIDADE
   ======================================== */

.autoridade {
    padding: 80px 0;
    background: var(--azul-escuro);
    color: var(--branco);
}

.autoridade-content {
    text-align: center;
}

.autoridade-content h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--laranja-primario);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--branco);
}

/* ========================================
   CTA FINAL
   ======================================== */

.cta-final {
    padding: 100px 0;
    background: var(--preto);
    color: var(--branco);
    text-align: center;
}

.cta-final h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--cinza-claro);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--preto);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--branco);
}

.footer-social a:hover {
    color: var(--branco);
    transform: translateY(-3px);
}

.footer-social a i {
    font-size: 1.5rem;
}

.footer-social a:nth-child(1):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social a:nth-child(2):hover {
    background: #25D366;
}

.footer-social a:nth-child(3):hover {
    background: #0077B5;
}

.footer-copy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    width: 100%;
}

.footer-copy p {
    color: #666;
    font-size: 0.9rem;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--branco);
        width: 100%;
        padding: 30px;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .cta-btn-nav {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .metodo-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .cta-final h2 {
        font-size: 2rem;
    }

    .footer-social {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .servico-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 3rem;
    }
}
