/* ============================================================
   VACACERDO — /catering-agencias/ — Estilos exclusivos
   ============================================================
   Mismos tokens de marca que desayuno-ejecutivo (fondo negro,
   rojo #c43822, Inter) — acento propio en azul acero: es la
   landing más "B2B puro" del sitio, pensada para quien lee esto
   comparando proveedores, no para el cliente final emocional.
   ============================================================ */

:root {
    --brand-red: #c43822;
    --brand-steel: #5b8ba8;
    --bg-dark: #000000;
    --bg-surface: #0a0a0a;
    --bg-card: #141414;
    --border-thin: 1px solid rgba(255, 255, 255, 0.1);
    --text-muted: #888888;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* ─── HERO ─── */
.ca-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ca-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) saturate(0.9);
}
.ca-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 70%, #000 100%);
}
.ca-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.ca-hero__eyebrow {
    display: inline-block;
    color: var(--brand-steel);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.ca-hero__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 20px;
}
.ca-hero__sub {
    color: #ccc;
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 auto 34px;
}
.ca-hero__cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ca-hero__cta {
    display: inline-block;
    background: var(--brand-red);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 16px 32px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.ca-hero__cta:hover { background: #d64030; }
.ca-hero__cta--ghost {
    background: transparent;
    border: var(--border-thin);
    color: #fff;
}
.ca-hero__cta--ghost:hover { border-color: var(--brand-steel); }

/* ─── VALOR ─── */
.ca-valor { padding: 100px 24px; background: var(--bg-surface); }
.ca-valor__inner { max-width: 1100px; margin: 0 auto; }
.ca-valor__titulo { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; margin: 0 0 16px; text-align: center; }
.ca-valor__intro { color: var(--text-muted); font-size: 1.1rem; max-width: 620px; margin: 0 auto 60px; text-align: center; }
.ca-valor__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 720px) { .ca-valor__grid { grid-template-columns: 1fr; } }
.ca-valor__card {
    background: var(--bg-card);
    border: var(--border-thin);
    border-radius: 16px;
    padding: 32px;
}
.ca-valor__num { color: var(--brand-steel); font-weight: 900; font-size: 0.95rem; letter-spacing: 1px; }
.ca-valor__card h3 { font-size: 1.2rem; margin: 12px 0 10px; }
.ca-valor__card p { color: var(--text-muted); margin: 0; font-size: 0.98rem; }

/* ─── FAQ ─── */
.ca-faq { padding: 90px 24px; background: var(--bg-dark); }
.ca-faq__inner { max-width: 760px; margin: 0 auto; }
.ca-faq__titulo { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; margin: 0 0 36px; text-align: center; }
.ca-faq__item {
    border-bottom: var(--border-thin);
    padding: 20px 0;
}
.ca-faq__item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    list-style: none;
}
.ca-faq__item summary::-webkit-details-marker { display: none; }
.ca-faq__item summary::before { content: "+ "; color: var(--brand-steel); }
.ca-faq__item[open] summary::before { content: "− "; }
.ca-faq__item p { color: var(--text-muted); margin: 14px 0 0; }

/* ─── CTA FINAL ─── */
.ca-cta { padding: 90px 24px; background: var(--bg-surface); text-align: center; }
.ca-cta__inner { max-width: 560px; margin: 0 auto; }
.ca-cta__inner h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; margin: 0 0 14px; }
.ca-cta__inner p { color: var(--text-muted); margin: 0 0 30px; }
.ca-cta__btn {
    display: inline-block;
    background: var(--brand-red);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.ca-cta__btn:hover { background: #d64030; }
