/* ===========================================================
   UNIFORMES BOGOTÁ — Global Styles
   Mobile-First · Pastel Palette · Modern Typography
=========================================================== */

/* ─── Google Fonts (loaded via meta.php) ─────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Design Tokens ──────────────────────────────────── */
:root {
    /* Pastel Palette */
    --clr-bg: #F9F6F2;
    /* warm off-white */
    --clr-surface: #FFFFFF;
    --clr-pastel-blue: #C9E4F5;
    --clr-pastel-pink: #F5C9E4;
    --clr-pastel-mint: #C9F5E4;
    --clr-pastel-peach: #F5DFC9;
    --clr-pastel-lav: #DEC9F5;
    --clr-pastel-yellow: #F5F0C9;

    /* Text */
    --clr-ink: #1A1A2E;
    --clr-ink-muted: #6B6A7E;
    --clr-ink-light: #A8A7B8;

    /* Accent */
    --clr-accent: #5B4CE8;
    /* electric violet */
    --clr-accent-2: #E84C8B;
    /* hot pink */

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing scale */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-24: 6rem;

    /* Border radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2.5rem;
    --radius-full: 999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Reset ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-ink);
    line-height: 1.6;
    overflow-x: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

/* ─── Typography Scale (Mobile-first) ────────────────── */
.display-1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 12vw, 9rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.display-2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 8vw, 6rem);
    line-height: 1.0;
    letter-spacing: -0.025em;
}

.display-3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.heading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.2rem, 3.5vw, 2rem);
    line-height: 1.2;
}

.label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.body-lg {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
}

.body-sm {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ─── Layout ─────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
}

section {
    padding-block: var(--sp-16);
}

/* ─── Buttons ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-4) var(--sp-8);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-out);
}

.btn:active {
    transform: scale(0.96);
}

.btn-primary {
    background: var(--clr-accent);
    color: #fff;
    box-shadow: 0 4px 24px rgba(91, 76, 232, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 32px rgba(91, 76, 232, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--clr-ink);
    border: 2px solid var(--clr-ink);
}

.btn-outline:hover {
    background: var(--clr-ink);
    color: #fff;
    transform: translateY(-2px);
}

.btn-pill-pastel {
    padding: var(--sp-2) var(--sp-6);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s var(--ease-spring);
}

.btn-pill-pastel:hover {
    transform: scale(1.07);
}

/* ─── Card Base ──────────────────────────────────────── */
.card {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out);
}

.card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ─── Tag Chip ───────────────────────────────────────── */
.tag {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-display);
}

/* ─── Gradient text ──────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Section Title ──────────────────────────────────── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--clr-ink-muted);
    margin-bottom: var(--sp-3);
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

/* ─── Misc helpers ───────────────────────────────────── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--clr-ink-muted);
}

.mt-auto {
    margin-top: auto;
}