/* ══════════════════════════════════════════════════
   TL Marketing Digital
   Design Premium para Gastronomia
   ══════════════════════════════════════════════════ */

:root {
    --bg-primary: #0c0c0c;
    --bg-section: #111111;
    --bg-card: #181818;
    --bg-card-hover: #1e1e1e;
    --text-primary: #f5f5f5;
    --text-secondary: #a8a8a8;
    --text-muted: #6b6b6b;
    --accent: #f97316;
    --accent-hover: #ea580c;
    --accent-soft: rgba(249, 115, 22, 0.12);
    --green: #22c55e;
    --green-soft: rgba(34, 197, 94, 0.12);
    --warn: #d97706;
    --warn-soft: rgba(217, 119, 6, 0.10);
    --border: rgba(255,255,255,0.07);
    --border-accent: rgba(249, 115, 22, 0.25);
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 4px 30px rgba(0,0,0,0.4);
    --shadow-accent: 0 8px 30px rgba(249, 115, 22, 0.2);
    --font: 'Inter', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

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

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

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-warm {
    0%, 100% { box-shadow: 0 0 20px rgba(249,115,22,0.25); }
    50% { box-shadow: 0 0 40px rgba(249,115,22,0.4); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── GRADIENT TEXT ── */
.highlight-warn { color: var(--warn); }

.gradient-text {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #f59e0b 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    background: rgba(12,12,12,0.88);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}
.nav-brand {
    display: flex; align-items: center; gap: 12px;
}
.nav-logo {
    width: 38px; height: 38px;
    background: var(--accent);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700; font-size: 15px;
    color: white;
}
.nav-name {
    font-family: var(--font-display);
    font-weight: 600; font-size: 17px;
}
.nav-links {
    display: flex; align-items: center; gap: 28px;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none; font-size: 14px; font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
    background: var(--accent) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
}
.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}
.nav-mobile-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px;
}
.nav-mobile-toggle span {
    width: 22px; height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}
.hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(249,115,22,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249,115,22,0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 100%);
}
.hero-glow {
    position: absolute;
    top: -180px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, rgba(251,146,60,0.03) 50%, transparent 80%);
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 780px;
}
.hero-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative; z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    text-align: left;
}
.hero-columns .hero-content {
    text-align: left;
}
.hero-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-accent);
}
.hero-visual img {
    width: 100%;
    display: block;
}
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-soft);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    font-size: 13px; font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5.5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 600px; margin-left: auto; margin-right: auto;
    line-height: 1.75;
}
.hero-subtitle strong {
    color: var(--text-primary);
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700; font-size: 16px;
    transition: all 0.3s;
    cursor: pointer; border: none;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}
.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 14px;
}
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600; font-size: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.hero-ctas {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-columns .hero-ctas {
    justify-content: flex-start;
}

.hero-proof-context {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ── SCARCITY ── */
.hero-scarcity {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    font-size: 13px;
    color: var(--text-secondary);
}
.hero-columns .hero-scarcity {
    justify-content: flex-start;
}
.hero-scarcity svg { flex-shrink: 0; }
.hero-scarcity strong { color: var(--green); }

/* ── PROOF BAR ── */
.hero-proof {
    display: flex; align-items: center; justify-content: center; gap: 40px;
    padding: 24px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.proof-item { text-align: center; }
.proof-number {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 700;
    color: var(--accent);
}
.proof-number small { font-size: 20px; }
.proof-label {
    display: block;
    font-size: 12px; color: var(--text-muted);
    margin-top: 4px;
}
.proof-divider {
    width: 1px; height: 40px;
    background: var(--border);
}

/* ── SECTIONS ── */
.section {
    padding: 100px 0;
}
.section-dark {
    background: var(--bg-section);
}
.section-tag {
    display: inline-block;
    font-size: 13px; font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800; line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 560px;
    line-height: 1.7;
}

/* ── PROBLEM ── */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.problem-text h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800; line-height: 1.2;
    margin-bottom: 16px;
}
.highlight-red { color: var(--red); }
.highlight-green { color: var(--green); }
.problem-text p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.75; }
.problem-list { list-style: none; }
.problem-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 8px 0;
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.6;
}
.problem-list li svg { flex-shrink: 0; margin-top: 3px; }

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.comparison-bad, .comparison-good {
    padding: 28px;
}
.comparison-bad { background: var(--warn-soft); }
.comparison-good { background: var(--green-soft); }
.comparison-vs {
    text-align: center; padding: 10px;
    font-weight: 800; font-size: 13px;
    color: var(--text-muted);
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    letter-spacing: 2px;
}
.comp-tag {
    display: inline-block;
    padding: 4px 12px; border-radius: 100px;
    font-size: 11px; font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tag-warn { background: rgba(217,119,6,0.15); color: var(--warn); }
.tag-green { background: rgba(34,197,94,0.15); color: var(--green); }
.comp-metric {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 800;
    margin-bottom: 4px;
}
.comparison-bad .comp-metric { color: var(--warn); }
.comparison-good .comp-metric { color: var(--green); }
.comp-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── RESULTS ── */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}
.result-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(249,115,22,0.08);
}
.result-card.featured {
    border-color: var(--border-accent);
}
.result-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.result-card-body {
    padding: 28px;
}
.featured-badge {
    position: absolute; top: 12px; right: 12px;
    padding: 6px 14px;
    background: var(--accent);
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.result-card h3 {
    font-family: var(--font-display);
    font-size: 19px; font-weight: 700;
    margin-bottom: 4px;
}
.result-city { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.result-quote {
    background: rgba(255,255,255,0.03);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
    font-style: italic;
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
}
.result-metrics {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.rm-value {
    display: block;
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700;
    color: var(--accent);
}
.rm-label {
    display: block;
    font-size: 12px; color: var(--text-muted);
    margin-top: 2px;
    line-height: 1.4;
}
.result-context {
    grid-column: 1 / -1;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 4px;
}

/* ── SERVICES ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.service-mockup {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top;
    border-bottom: 1px solid var(--border);
}
.service-card-body {
    padding: 32px;
    flex-grow: 1;
}
.service-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}
.service-icon {
    width: 48px; height: 48px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 19px; font-weight: 700;
    margin-bottom: 12px;
}
.service-card-body p {
    font-size: 15px; color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}
.service-features {
    list-style: none;
}
.service-features li {
    padding: 5px 0;
    font-size: 14px; color: var(--text-muted);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.service-features li::before {
    content: "→";
    position: absolute; left: 0;
    color: var(--accent);
}

/* ── PROCESS ── */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 48px;
}
.process-timeline::before {
    content: "";
    position: absolute;
    top: 30px; left: 40px; right: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(249,115,22,0.2));
}
.process-step {
    text-align: center;
    position: relative;
    padding: 0 12px;
}
.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px;
    background: var(--bg-primary);
    border: 2px solid var(--accent);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 18px; font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative; z-index: 2;
}
.step-content h3 {
    font-family: var(--font-display);
    font-size: 16px; font-weight: 700;
    margin-bottom: 8px;
}
.step-content p {
    font-size: 14px; color: var(--text-muted);
    line-height: 1.6;
}
.process-cta { text-align: center; }

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px; align-items: center;
}
.about-text h2 {
    font-family: var(--font-display);
    font-size: 34px; font-weight: 800;
    margin-bottom: 4px;
}
.about-role {
    font-size: 15px; color: var(--accent);
    margin-bottom: 20px;
    font-weight: 500;
}
.about-text p {
    color: var(--text-secondary); margin-bottom: 16px;
    line-height: 1.75;
}
.about-credentials {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-top: 24px;
}
.credential {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 500;
}
.credential-icon { font-size: 16px; }
.about-photo-placeholder {
    width: 280px; height: 340px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    position: relative;
}
.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius);
    display: block;
}
#foto-tiago {
    position: relative;
    overflow: hidden;
}
.initials-fallback {
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
}
.initials-large {
    font-family: var(--font-display);
    font-size: 72px; font-weight: 800;
    color: var(--accent);
}

/* ── SOBRE / QUEM CUIDA DO SEU DIGITAL ── */
.secao-digital-tiago {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.secao-digital-tiago p {
    color: var(--text-primary);
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.6;
}
.palavra-gatilho-verde { color: var(--green) !important; font-weight: bold; }
.palavra-gatilho-laranja { color: var(--accent) !important; font-weight: bold; }
.palavra-gatilho-azul { color: #3b82f6 !important; font-weight: bold; }


/* ── FAQ ── */
.faq-list {
    max-width: 720px; margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 22px 0;
    background: none; border: none; cursor: pointer;
    color: var(--text-primary);
    font-size: 16px; font-weight: 600;
    text-align: left;
    font-family: var(--font);
    transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--text-muted);
}
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 22px;
}
.faq-answer p {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.75;
}

/* ── CTA FINAL ── */
.section-cta {
    text-align: center;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
    background: var(--bg-section);
}
.cta-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; height: 350px;
    background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
}
.section-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800; margin-bottom: 16px;
    position: relative; z-index: 2;
}
.section-cta p {
    font-size: 16px; color: var(--text-secondary);
    max-width: 520px; margin: 0 auto 36px;
    position: relative; z-index: 2;
    line-height: 1.7;
}
.section-cta .btn-primary {
    position: relative; z-index: 2;
    animation: pulse-warm 3s infinite;
}
.cta-micro {
    font-size: 13px !important; color: var(--text-muted) !important;
    margin-top: 16px !important;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    z-index: 999;
    display: flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600; font-size: 14px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    transition: all 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37,211,102,0.4);
}

/* ── FOOTER ── */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-weight: 600; font-size: 17px;
    margin-bottom: 12px;
}
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.footer h4 {
    font-size: 13px; font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}
.footer a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }
    .nav-links.active {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(12,12,12,0.96);
        backdrop-filter: blur(20px);
        padding: 20px 24px; gap: 14px;
        border-bottom: 1px solid var(--border);
    }
    .hero-columns { grid-template-columns: 1fr; gap: 40px; }
    .hero-columns .hero-content { text-align: center; }
    .hero-columns .hero-ctas { justify-content: center; }
    .hero-columns .hero-scarcity { justify-content: center; }
    .hero-title { font-size: 30px; }
    .hero-subtitle { font-size: 15px; }
    .hero-proof { flex-direction: column; gap: 16px; padding: 20px; }
    .proof-divider { width: 40px; height: 1px; }
    .problem-grid { grid-template-columns: 1fr; gap: 36px; }
    .results-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; gap: 28px; }
    .process-timeline::before { display: none; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-photo-placeholder { margin: 0 auto; }
    .about-credentials { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 16px; border-radius: 50%; }
    .result-card-img { height: 140px; }
}
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .funnel-container {
        padding: 0 10px !important;
    }
    .funnel-step {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
        padding: 20px 15px !important;
    }
}
