@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F4F7FA;
    --bg-dark: #1C2541;
    --bg-dark-2: #141B30;

    --color-primary: #0B91CE;
    --color-primary-dark: #0873A8;
    --color-accent: #FFC153;
    --color-text: #1A1A2E;
    --color-text-muted: #6B7280;
    --color-white: #FFFFFF;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.06);

    /* Compatibilidad con variables antiguas */
    --background1: #FFFFFF;
    --background2: #F4F7FA;
    --color1: #0B91CE;
    --color2: #FFFFFF;
    --color3: #FFC153;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--bg-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 3rem;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
    margin-top: 0.75rem;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
}

.page-section {
    padding: 5rem 0;
}

.page-section--dark {
    background-color: var(--bg-secondary);
}

p, li {
    margin: 0;
}

.icon {
    height: 1rem;
}

/* Botones globales */
.btn-primary-scout {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background-color: var(--color-primary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary-scout:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-outline-scout {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background-color: transparent;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-outline-scout:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
}
