@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700;800&display=swap');

/* Typography - Prestigue Branding */
@font-face {
    font-family: 'Garet';
    src: url('../../../fonts/Garet-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Color Palette - Aureus Prestige */
    --bg-warm-white: #f8f7f2;
    --green-dark: #1a3a2d; /* Más profundo */
    --green-forest: #225e47; 
    --green-medium: #568c75;
    --green-light: #aabe5c;
    --gold-subtle: #d4af37; /* Toque dorado para prestigio */
    
    /* Gradients */
    --grad-prestige: linear-gradient(135deg, #1a3a2d 0%, #225e47 100%);
    --grad-glow: linear-gradient(145deg, rgba(170, 190, 92, 0.2), rgba(34, 94, 71, 0.05));
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);

    /* Semantic Colors */
    --text-primary: #1a3a2d;
    --text-secondary: #4a5568;
    --text-muted: #718096;

    /* Spacing & Borders */
    --radius-sm: 0.75rem; /* Bordes más redondeados */
    --radius-md: 1.25rem;
    --radius-lg: 2rem;
    --radius-xl: 4rem;

    /* Shadows - Deep layered shadows */
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 12px 40px rgba(26, 58, 45, 0.08);
    --shadow-heavy: 0 25px 80px rgba(26, 58, 45, 0.12);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-warm-white);
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif; /* Fallback to Outfit, will use Garet for headings */
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.fira-sans,
.prestige-title {
    font-family: 'Garet', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Fira Sans', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeIn 0.6s ease forwards;
}