/* POMT — Site institucional (domínio principal) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@600;700;800&display=swap');

:root {
    --navy: #0C1C34;
    --navy-light: #152C52;
    --gold: #D0A747;
    --gold-dark: #B27D2D;
    --white: #FFFFFF;
    --off-white: #F7F5F0;
    --text: #4A4A4A;
    --text-muted: #6B7280;
    --line: #E8E2D3;
    --radius: 10px;
    --shadow: 0 8px 30px rgba(12, 28, 52, 0.08);
    --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: Inter, 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
    font-family: Sora, Inter, sans-serif;
    color: var(--navy);
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }

.section { padding: 88px 0; }
.section.alt { background: var(--off-white); }
.section-title { font-size: clamp(1.75rem, 3vw, 2rem); margin-bottom: 12px; }
.section-lead { color: var(--text-muted); max-width: 640px; margin-bottom: 40px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold-dark); color: var(--white); box-shadow: 0 8px 20px rgba(178, 125, 45, 0.25); }
.btn-primary:hover { background: #9a6d28; }
.btn-outline { background: transparent; border-color: var(--line); color: var(--navy); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-link { padding: 0; background: none; border: none; color: var(--navy-light); font-weight: 600; }
.btn-link:hover { color: var(--gold-dark); }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}
.site-logo img { height: 36px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.site-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.site-nav a:hover, .site-nav a.active { color: var(--navy); }
.site-nav .btn-primary { padding: 10px 18px; font-size: 14px; color: var(--white); }
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 18px;
    cursor: pointer;
    color: var(--navy);
}

/* Hero */
.hero {
    padding: 72px 0 88px;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 18px; }
.hero p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 28px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Stats bar */
.stats-bar { background: var(--off-white); padding: 36px 0; border-block: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item b {
    display: block;
    font-family: Sora, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold-dark);
    margin-bottom: 4px;
}
.stat-item span { font-size: 14px; color: var(--text-muted); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow);
}
.step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: var(--gold-dark);
    margin-bottom: 12px;
    font-size: 14px;
}
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }

/* Feature cards */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.feature-card .icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.testi-card.placeholder { border-style: dashed; border-color: rgba(208, 167, 71, 0.45); }
.testi-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--off-white);
    border: 2px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
    overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-quote { font-style: italic; color: var(--text); margin-bottom: 12px; font-size: 15px; }
.testi-name { font-weight: 700; color: var(--navy); font-size: 14px; }
.placeholder-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--gold-dark);
    background: rgba(208, 167, 71, 0.12);
    padding: 3px 8px;
    border-radius: 999px;
    margin-bottom: 10px;
}

/* CTA navy block */
.cta-navy {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 72px 24px;
}
.cta-navy h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 12px; }
.cta-navy p { color: rgba(255,255,255,.75); margin-bottom: 24px; max-width: 520px; margin-inline: auto; }

/* Image placeholders */
.img-slot {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, #eef2f7, #f7f5f0);
    box-shadow: var(--shadow);
}
.feature-block.events-home-block {
    padding: 0;
    border-bottom: none;
}
.img-slot.events-showcase {
    background: linear-gradient(145deg, #eef2f7 0%, #f7f5f0 100%);
    border: 1px solid var(--line);
}
.img-slot.events-showcase svg {
    display: block;
    width: 100%;
    height: auto;
}
.img-slot.events-showcase img {
    object-fit: contain;
    padding: 8px;
}

.img-placeholder {
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px;
    text-align: center;
    background: repeating-linear-gradient(-45deg, #f7f5f0, #f7f5f0 10px, #efeae0 10px, #efeae0 20px);
    color: var(--navy-light);
}
.img-placeholder.tall { aspect-ratio: 10/14; }
.img-placeholder.square { aspect-ratio: 1; }
.img-placeholder span { font-family: Sora, sans-serif; font-weight: 800; font-size: 18px; }
.img-placeholder small { font-size: 11px; color: var(--text-muted); max-width: 220px; }

/* Page hero (inner pages) */
.page-hero {
    padding: 56px 0 40px;
    background: var(--off-white);
    border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 10px; }
.page-hero p { color: var(--text-muted); max-width: 640px; font-size: 1.05rem; }

/* Feature blocks (funcionalidades page) */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid var(--line);
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-block h2 { font-size: 1.6rem; margin-bottom: 10px; }
.feature-block p { color: var(--text-muted); margin-bottom: 14px; }
.feature-list { list-style: none; }
.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
}
.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: 800;
}
.category-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

/* Pricing */
.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 18px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
}
.pricing-card .price {
    font-family: Sora, sans-serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin: 16px 0 8px;
}
.pricing-card .price small { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.pricing-includes { text-align: left; margin: 24px 0; }
.pricing-includes li { padding: 8px 0 8px 24px; position: relative; list-style: none; }
.pricing-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-dark); font-weight: 800; }
.faq { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item h3 { font-size: 1rem; margin-bottom: 6px; }
.faq-item p { font-size: 14px; color: var(--text-muted); }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
    background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-msg { padding: 12px 14px; border-radius: var(--radius); margin-bottom: 16px; font-size: 14px; }
.form-msg.ok { background: #ecfdf5; border: 1px solid #6ee7b7; color: #047857; }
.form-msg.err { background: #fef2f2; border: 1px solid #fca5a5; color: #b91c1c; }

/* Legal pages */
.legal-page { padding: 48px 0 80px; }
.legal-page .container { max-width: 780px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-meta { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.15rem; margin: 28px 0 10px; }
.legal-page p, .legal-page li { margin-bottom: 12px; color: var(--text); }
.legal-page ul { padding-left: 20px; margin-bottom: 16px; }

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    padding: 56px 0 28px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
.footer-grid h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.footer-grid a { display: block; margin-bottom: 8px; color: rgba(255,255,255,.7); }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.footer-logo img { height: 32px; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 12px; }

@media (max-width: 960px) {
    .hero-grid, .feature-block, .feature-block.reverse, .contact-grid { grid-template-columns: 1fr; }
    .feature-block.reverse { direction: ltr; }
    .steps-grid, .cards-grid, .testi-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .nav-toggle { display: block; }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 12px;
    }
    .site-nav.open { display: flex; }
    .site-header-inner { position: relative; }
    .stats-grid, .steps-grid, .cards-grid, .testi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
