/* ============================================
   Mapa Inicial de Autoridade Descomplica
   Landing Page - Tema Claro Profissional
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-bg-warn: #fff8f0;
    --color-text: #1a1a2e;
    --color-text-secondary: #6c757d;
    --color-gold: #c9a84c;
    --color-gold-dark: #b8973e;
    --color-gold-light: #e0c878;
    --color-border: #e5e5e5;
    --color-border-light: #f0f0f0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.10);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ---- Typography ---- */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.text-gold { color: var(--color-gold); }
.text-muted { color: var(--color-text-secondary); }
.italic { font-style: italic; }
.center { text-align: center; }

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Section Base ---- */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-warn {
    background: var(--color-bg-warn);
    border-top: 1px solid #ffe0b2;
    border-bottom: 1px solid #ffe0b2;
}

.section-cta {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f0f7ff 100%);
    padding: 100px 0;
    overflow: hidden;
}

.section-final-cta {
    background: var(--color-bg-alt);
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-top: 12px;
}

.section-text {
    color: var(--color-text-secondary);
    font-size: 17px;
    line-height: 1.7;
    margin-top: 16px;
}

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

/* ---- Label ---- */
.label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.label-muted {
    color: var(--color-text-secondary);
    background: rgba(0,0,0,0.05);
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    text-align: center;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 18px;
    width: 100%;
    max-width: 420px;
}

/* ---- Header ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border-light);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-placeholder {
    
    
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
}

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

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-bottom: 1px solid var(--color-border);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border-light);
    transition: color 0.2s ease;
}

.mobile-link:hover {
    color: var(--color-gold);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: #b3b097;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/mapa-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.72);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    min-height:100vh;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-top: 20px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
}

.hero-title .text-gold {
    color: var(--color-gold-light);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 24px;
    line-height: 1.7;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero .label {
    background: rgba(201, 168, 76, 0.2);
    color: var(--color-gold-light);
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

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

/* ---- Grid Layouts ---- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- Quote ---- */
.quote {
    font-style: italic;
    color: var(--color-gold);
    border-left: 3px solid var(--color-gold);
    padding-left: 24px;
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.7;
}

/* ---- Image ---- */
.image-right img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* ---- Cards ---- */
.card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold-light);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.card h3 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.card-featured {
    padding: 40px 32px;
}

.card-highlight {
    border-color: var(--color-gold-light);
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
}

/* ---- Tags ---- */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 400;
    transition: all 0.2s ease;
}

.tag:hover {
    border-color: var(--color-gold-light);
    color: var(--color-text);
}

.tag-warn {
    background: #fff;
    border-color: #f0d9b8;
}

/* ---- Hero subdescription ---- */
.hero-subdesc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 560px;
}

/* ---- Pain points section ---- */
.section-pain {
    background: var(--color-bg);
}

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

.pain-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
}

.pain-item:hover {
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
}

.pain-marker {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.4;
}

.pain-item p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.pain-closing {
    font-size: 18px;
    color: var(--color-text);
    max-width: 720px;
    margin: 0 auto;
}

/* ---- Checklist inside cards ---- */
.checklist {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold);
    font-weight: 700;
}

/* ---- Mockup placeholders ---- */
.mockup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.mockup-card {
    text-align: center;
}

.mockup-card h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin-top: 14px;
    color: var(--color-text);
}

.mockup-placeholder {
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.25s ease;
}

.mockup-placeholder span {
    font-size: 13px;
    color: var(--color-text-secondary);
    text-align: center;
    line-height: 1.5;
}

.mockup-card:hover .mockup-placeholder {
    border-color: var(--color-gold-light);
    background: linear-gradient(135deg, #f0f0f0 0%, #fafafa 100%);
}

/* ---- Timeline ---- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
    border-radius: 2px;
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: var(--color-gold);
    border-radius: 2px;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.1s linear;
    height: 100%;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-node {
    position: absolute;
    left: -60px;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gold);
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-item.active .timeline-node {
    background: var(--color-gold);
    color: #fff;
    transform: scale(1.1);
}

.timeline-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    box-shadow: var(--shadow-sm);
}

.timeline-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ---- Deliverables ---- */
.deliverables-list {
    max-width: 900px;
    margin: 0 auto;
}

.deliverable {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid var(--color-border);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.deliverable.visible {
    opacity: 1;
    transform: translateY(0);
}

.deliverable:first-child {
    padding-top: 0;
}

.deliverable:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.deliverable-num {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.35;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.deliverable:hover .deliverable-num {
    opacity: 0.7;
}

.deliverable-content h3 {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}

.deliverable-content p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* ---- Price Box ---- */
.price-box {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.price-main {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.price-sub {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 8px;
    letter-spacing: 0.04em;
}

.price-parcelado {
    font-size: 17px;
    color: var(--color-text-secondary);
    margin-top: 10px;
}

.buy-form {
    margin-top: 32px;
}

.security-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.security-badges span {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.guarantee-box {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-top: 28px;
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.guarantee-box strong {
    color: var(--color-text);
}

/* ---- Closing Quote ---- */
.closing-quote {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 500;
    font-style: italic;
    color: var(--color-gold);
    text-align: center;
    margin-top: 60px;
    line-height: 1.4;
}

/* ---- Accordion ---- */
.accordion {
    max-width: 720px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    transition: color 0.2s ease;
}

.accordion-header:hover {
    color: var(--color-gold);
}

.accordion-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--color-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.accordion-item.active .accordion-body {
    max-height: 300px;
    padding-bottom: 22px;
}

.accordion-body p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.65;
    padding-right: 40px;
}

/* ---- Footer ---- */
.footer {
    background: #f0f0f0;
    padding: 64px 0 32px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-col-logo {
        display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text-secondary);
}

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

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .section {
        padding: 64px 0;
    }
    
    .hero {
        padding: 120px 0 64px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .content-left {
        order: -1;
    }
    
    .timeline {
        padding-left: 50px;
    }
    
    .timeline-line {
        left: 16px;
    }
    
    .timeline-node {
        left: -51px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
    
    .deliverable {
        grid-template-columns: 50px 1fr;
        gap: 16px;
        padding: 28px 0;
    }
    
    .deliverable-num {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .btn-lg, .btn-xl {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .mockup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .mockup-placeholder {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col .logo-placeholder {
        margin: 0 auto 16px;
    }
    
    .tag-list {
        gap: 8px;
    }
    
    .tag {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .card, .card-featured {
        padding: 28px 20px;
    }
    
    .mockup-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}
