/* ========================================
   RESET E CONFIGURAÇÕES GLOBAIS
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #2A2B1F;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px; /* Espaço para o menu fixo */
}

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

/* ========================================
   MENU DE NAVEGAÇÃO
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(42, 43, 31, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
}

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

.nav-menu li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #FFD700;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #FFD700;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    min-height: 100vh;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%), url('../img/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 60px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-text {
    max-width: 600px;
    position: relative;
    padding: 40px;
}

/* Decorações de canto */
.corner-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #FFD700;
}

.corner-decoration.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner-decoration.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.corner-decoration.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner-decoration.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Decoração de pontos */
.dots-decoration {
    position: absolute;
    top: 20px;
    right: -80px;
    width: 60px;
    height: 80px;
    background-image: radial-gradient(circle, #FFD700 2px, transparent 2px);
    background-size: 10px 10px;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #B0B0B0;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background-color: #FFC700;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* ========================================
   SOBRE A PERSONAL SECTION
======================================== */
.sobre-section {
    background-color: #2A2B1F;
    padding: 80px 60px;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-text-left p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.8;
    text-align: left;
}

.sobre-text-right h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.sobre-text-right p {
    font-size: 16px;
    color: #B0B0B0;
    line-height: 1.8;
}

/* ========================================
   SERVIÇOS E BENEFÍCIOS SECTION
======================================== */
.servicos-section {
    background-color: #2A2B1F;
    padding: 80px 60px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Benefícios */
.beneficios-col h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.3;
}

.beneficios-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.beneficios-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.beneficios-list span {
    font-size: 15px;
    color: #FFFFFF;
    line-height: 1.4;
}

/* Serviços Cards */
.servicos-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-card {
    background-color: #3A3B2F;
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    font-size: 13px;
    color: #FFFFFF;
    line-height: 1.6;
}

/* ========================================
   NOVA SEÇÃO: METODOLOGIA
======================================== */
.metodologia-section {
    background-color: #2A2B1F;
    padding: 80px 60px;
}

.metodologia-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 15px;
}

.metodologia-intro {
    text-align: center;
    color: #B0B0B0;
    font-size: 16px;
    margin-bottom: 50px;
}

.metodologia-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.metodologia-step {
    background-color: #3A3B2F;
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.metodologia-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
}

.metodologia-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.metodologia-step p {
    font-size: 14px;
    color: #B0B0B0;
    line-height: 1.6;
}

/* ========================================
   NOVA SEÇÃO: FAQ
======================================== */
.faq-section {
    background-color: #2A2B1F;
    padding: 80px 60px;
}

.faq-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: #3A3B2F;
    border: 1px solid #FFD700;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    color: #FFD700;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #B0B0B0;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    background-color: #2A2B1F;
    padding: 80px 60px;
}

.testimonials-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #3A3B2F;
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #FFD700;
}

.testimonial-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 14px;
    color: #B0B0B0;
    line-height: 1.6;
    font-style: italic;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background-color: #2A2B1F;
    padding: 80px 60px 40px;
    text-align: center;
}

.btn-cta {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 60px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-bottom: 30px;
}

.btn-cta:hover {
    background-color: #FFC700;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.footer-links {
    margin: 20px 0;
    font-size: 14px;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-links span {
    color: #B0B0B0;
    margin: 0 10px;
}

.copyright {
    font-size: 12px;
    color: #808080;
    margin-top: 20px;
}

/* ========================================
   RESPONSIVIDADE - TABLET
======================================== */
@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 40px;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.4) 100%), url('../img/hero-mobile.jpg');
        background-position: center center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .sobre-section,
    .servicos-section,
    .metodologia-section,
    .faq-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 40px;
    }

    .sobre-grid,
    .servicos-grid {
        gap: 40px;
    }

    .metodologia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   RESPONSIVIDADE - MOBILE
======================================== */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    /* Menu Mobile */
    .nav-container {
        padding: 0 20px;
        height: 60px;
    }

    .nav-logo {
        font-size: 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(42, 43, 31, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        gap: 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }

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

    .nav-menu li {
        padding: 15px 0;
    }

    .nav-menu li a {
        font-size: 16px;
    }

    /* Hero Section - Banner Mobile Exclusivo */
    .hero-section {
        min-height: 100vh;
        padding: 0;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.85) 100%), url('../img/hero-mobile.jpg');
        background-position: center center;
        background-size: cover;
        justify-content: flex-start;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 80px 0 40px;
    }

    .hero-text {
        max-width: 100%;
        padding: 40px 20px 20px;
        text-align: center;
        position: relative;
    }

    .hero-text h1 {
        font-size: 28px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }

    .dots-decoration {
        display: none;
    }

    .sobre-section,
    .servicos-section,
    .metodologia-section,
    .faq-section,
    .testimonials-section,
    .cta-section {
        padding: 40px 20px;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sobre-text-right h2,
    .beneficios-col h2 {
        font-size: 26px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .beneficios-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .servicos-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .metodologia-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-cta {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
    }

    .footer-links {
        font-size: 12px;
    }

    .footer-links span {
        margin: 0 5px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .corner-decoration {
        width: 40px;
        height: 40px;
    }

    .sobre-text-right h2,
    .beneficios-col h2 {
        font-size: 22px;
    }

    .testimonials-section h2,
    .metodologia-section h2,
    .faq-section h2 {
        font-size: 28px;
    }
}
/* ===============================
   AJUSTE FINO HERO - MOBILE
   (não afeta desktop)
================================ */

@media (max-width: 768px) {

    .hero-text h1 {
        margin-top: -70px;
    }

    .hero-text .hero-subtitle {
        margin-top: -18px;
    }

    .hero-text .btn-primary {
        display: inline-block;   /* 👈 ISSO É O SEGREDO */
        margin-top: 180px;        /* 👈 AGORA FUNCIONA */
    }

}



