/* AI Recepcionista — marketing landing (not the live dashboard) */
:root {
    --primary: #d4a373;
    --primary-dark: #bc8c5e;
    --primary-light: #e9d5c3;
    --secondary: #588157;
    --background: #faf8f5;
    --surface: #ffffff;
    --text: #2d2a26;
    --text-muted: #6b6560;
    --border: #e8e4df;
    --shadow: 0 8px 28px rgba(45, 42, 38, 0.08);
    --radius: 14px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
}

a {
    color: var(--primary-dark);
}

.mkt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.mkt-brand {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.mkt-brand-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.mkt-brand-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mkt-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.mkt-nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.mkt-nav .btn-panel {
    background: var(--text);
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
}

.mkt-nav .btn-panel:hover {
    opacity: 0.92;
}

.mkt-hero {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

.mkt-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.mkt-hero .lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.mkt-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.mkt-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff !important;
    text-decoration: none;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.mkt-btn-primary:hover {
    background: var(--primary-dark);
}

.mkt-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--border);
    color: var(--text) !important;
    text-decoration: none;
    padding: 0.8rem 1.35rem;
    border-radius: var(--radius);
    font-weight: 600;
}

.mkt-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mkt-features {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.mkt-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(45, 42, 38, 0.04);
}

.mkt-card h2 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

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

.mkt-card .icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.mkt-footer {
    text-align: center;
    padding: 2rem 1.5rem 3rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}

.mkt-footer a {
    font-weight: 500;
}
