:root {
    --color-principal: #1f1f1f;
    --color-secundario: #b88a75;
    --color-acento: #d8b4a0;
    --color-fondo: #f8f5f2;
    --color-blanco: #ffffff;
    --color-texto: #333333;
    --color-texto-suave: #777777;
    --color-borde: #e8e1dc;
    --color-exito: #4e9f6e;
    --color-alerta: #d6a646;
    --color-error: #c85c5c;
    --sidebar-width: 272px;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --shadow-soft: 0 16px 45px rgba(48, 34, 28, 0.08);
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-texto);
    background: var(--color-fondo);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--color-principal);
    line-height: 1.2;
}

.eyebrow {
    margin-bottom: 6px;
    color: var(--color-secundario);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 12px 22px;
    border: 0;
    border-radius: 14px;
    color: var(--color-blanco);
    background: var(--color-principal);
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.primary-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(31, 31, 31, 0.18);
    background: #000000;
}

.full-width {
    width: 100%;
}

.alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 16px;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 14px;
}

.alert-success {
    color: #2c6645;
    border-color: #cce7d6;
    background: #edf8f1;
}

.alert-error {
    color: #8b3838;
    border-color: #efcccc;
    background: #fff0f0;
}

.alert-warning {
    color: #7a5b1f;
    border-color: #ead9aa;
    background: #fff9e8;
}

.alert-close {
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.field-error {
    display: block;
    margin-top: 7px;
    color: var(--color-error);
    font-size: 12px;
    font-weight: 500;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #2e6645;
    background: #eaf7ef;
    font-size: 11px;
    font-weight: 600;
}

.status-pill.neutral {
    color: #6c625e;
    background: #f1ece9;
}

.icon-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-borde);
    border-radius: 12px;
    color: var(--color-principal);
    background: var(--color-blanco);
    cursor: pointer;
}
