/* Dynamic theme-ready version generated for configuracion_negocio colors. */
/* =========================================================
   BASE - Variables, reset y estilos globales
========================================================= */
:root {
    --pink: var(--theme-primary, #E8B7C0);
    --cream: var(--theme-bg, #F6EFE9);
    --gold: var(--theme-accent, #C9A46C);
    --brown: var(--theme-text, #5A3E2B);
    --white: var(--theme-card, #FFFFFF);
    --danger: #B91C1C;
    --success: #15803D;
    --warning: #B45309;
    --info: #2563EB;
    --text-muted: rgba(var(--brown-rgb), .72);
    --border: rgba(var(--brown-rgb), .12);
    --shadow: 0 24px 70px rgba(var(--brown-rgb), .14);
    --shadow-soft: 0 14px 34px rgba(var(--brown-rgb), .09);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --topbar-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    color: var(--brown);
    background:
        radial-gradient(circle at top left, rgba(var(--pink-rgb), .35), transparent 35%),
        linear-gradient(180deg, #fffaf7 0%, var(--cream) 100%);
}

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

button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }

.app-shell { min-height: 100vh; padding-bottom: 0; }
.page-content { min-height: calc(100vh - var(--topbar-h)); }

.container,
.section {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.section { padding: 42px 0; }

.section-heading { text-align: center; margin-bottom: 26px; }
.section-heading h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 46px);
}
.section-heading p { color: var(--text-muted); margin: 10px 0 0; }
.section-heading-split {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: #C26A80;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.muted-text { color: var(--text-muted); }
.inline-form { display: inline; margin: 0; }
.center-actions { display: flex; justify-content: center; margin-top: 30px; }

hr {
    border: 0;
    border-top: 1px solid rgba(var(--brown-rgb), .10);
    margin: 24px 0;
}
