/* =========================================
   VARIÁVEIS GERAIS
   ========================================= */
:root {
    --bg-dark: #0d0d0d;
    --bg-light-dark: #1a1a1a;
    --bg-card: #222222;
    --gold: #d4a96a;
    --gold-hover: #b88d4d;
    --text-main: #f1f1f1;
    --text-muted: #a1a1a1;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

/* =========================================
   RESET E BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

/* =========================================
   TIPOGRAFIA E TÍTULOS
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.center {
    text-align: center;
}

.highlight {
    color: var(--gold);
    font-style: italic;
}

.mt-2 {
    margin-top: 2rem;
}

/* =========================================
   BOTÕES
   ========================================= */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-dark);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.full-width {
    width: 100%;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* =========================================
   HEADER & NAVEGAÇÃO
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-dark);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0)), url('../img/background1.jpg') center/cover no-repeat;
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: 800px;
    margin: 0;
    padding: 100px 5% 0 5%;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid rgba(212, 169, 106, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.subtext {
    font-size: 0.875rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================================
   MARQUEE (LETREIRO)
   ========================================= */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 15px 0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.marquee-track span {
    padding: 0 20px;
}

.dot {
    opacity: 0.5;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   O DESAFIO (PROBLEM)
   ========================================= */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--bg-light-dark);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 169, 106, 0.3);
}

.card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   SPLIT LAYOUTS (A SOLUÇÃO / SOBRE)
   ========================================= */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dark-bg {
    background-color: var(--bg-light-dark);
}

.image-wrapper {
    width: 100%;
    height: 500px;
    background-color: var(--bg-card);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

#solution-img {
    background: url('../img/estrategia-bg-antunes.png') center/cover;
}

#about-img {
    background: url('../img/about-bg-antunes.png') center/cover;
}

.text-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.benefits-list {
    margin-top: 30px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.benefits-list i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* =========================================
   O PROCESSO
   ========================================= */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step {
    position: relative;
    padding-top: 30px;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(212, 169, 106, 0.1);
    line-height: 1;
    position: absolute;
    top: -20px;
    right: 0;
    font-weight: 700;
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   STATS
   ========================================= */
.gold-bg {
    background-color: var(--gold);
    color: var(--bg-dark);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-light-dark);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    gap: 2px;
}

.quote {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    /* Substituir por fotos nos inline styles via JS ou HTML se necessário, mantendo placeholder no CSS */
}

.client strong {
    display: block;
    font-family: var(--font-heading);
}

.client span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================================
   CERTIFICADOS (SOBRE)
   ========================================= */
.certificates {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cert {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
    border-radius: 4px;
    border-left: 2px solid var(--gold);
}

.cert i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* =========================================
   INVESTIMENTO / PRICING
   ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 50px auto 0;
}

.pricing-card {
    background: var(--bg-light-dark);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.highlight-card {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 169, 106, 0.1);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price {
    font-family: var(--font-heading);
    color: var(--gold);
}

.currency {
    font-size: 1.2rem;
    vertical-align: super;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body ul {
    margin-bottom: 40px;
    flex: 1;
}

.card-body li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.card-body li i {
    color: var(--gold);
    margin-top: 3px;
}

.card-body li.disabled {
    color: rgba(255, 255, 255, 0.3);
}

.card-body li.disabled i {
    color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   FAQ
   ========================================= */
.accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: var(--bg-light-dark);
    border: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: var(--bg-dark);
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0 25px 25px;
    color: var(--text-muted);
}

/* =========================================
   FOOTER CTA & FOOTER
   ========================================= */
.footer-cta {
    background: var(--bg-light-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.site-footer {
    padding: 60px 0 40px;
    background: var(--bg-dark);
}

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

.footer-brand h3 {
    color: var(--gold);
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-legal {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.legal-links a:hover {
    color: var(--gold);
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    color: #fff;
}

/* =========================================
   RESPONSIVO
   ========================================= */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

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

    .split-layout-alt .split-layout {
        grid-template-areas: "img" "text";
    }

    .split-layout-alt .text-box {
        grid-area: text;
    }

    .split-layout-alt .image-box {
        grid-area: img;
    }

    .process-steps,
    .problem-grid,
    .stats-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .highlight-card {
        transform: scale(1);
    }

    /* Navbar encolhida */
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .navbar .btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

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

    /* Navbar ainda mais encolhida para celular */
    .navbar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 10px 5%;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 12px;
        margin-top: 5px;
    }

    .nav-links a {
        font-size: 0.75rem;
        letter-spacing: 0;
    }

    .navbar .btn {
        display: none;
    }

    /* Oculta botão agendar no navbar do celular para economizar espaço */

    .hero-image-overlay {
        background: linear-gradient(rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0)), url('../img/background1.jpg') -1030px center/cover no-repeat;
    }
}