:root {
    /* Brand Color Palette - Extracted from Logo */
    --color-primary: #0F7691;
    /* Azul Petróleo - Primary actions & highlights */
    --color-primary-dark: #203C59;
    /* Azul Oscuro - Headers, footers, dark sections */
    --color-primary-light: #92A8B8;
    /* Gris Azulado - Secondary elements */
    --color-accent: #E2A439;
    /* Amarillo Mostaza - CTAs, important highlights */
    --color-background: #F7F1EC;
    /* Blanco Crema - Light backgrounds */
    --color-white: #ffffff;
    /* Pure white for contrast */

    /* Semantic Colors */
    --color-text-dark: #203C59;
    --color-text-light: #92A8B8;
    --color-border: rgba(146, 168, 184, 0.2);

    /* Feminine & Empowered Palette Extensions */
    --color-rose: #D4838F;
    /* Rosa suave para acentos femeninos */
    --color-coral: #F4A261;
    /* Coral cálido */
    --color-lavender: #A8BCCE;
    /* Lavanda suave */
    --color-peach: #F9DCC4;
    /* Durazno claro */
    --color-gold: #F2CC8F;
    /* Dorado suave */

    /* Hover States */
    --color-primary-hover: #0d5f75;
    --color-accent-hover: #F2CC8F;
    /* Dorado en hover */

    /* Gradient Definitions - Feminine & Powerful */
    --gradient-sunset: linear-gradient(135deg, #F4A261 0%, #E2A439 50%, #D4838F 100%);
    --gradient-ocean: linear-gradient(135deg, #0F7691 0%, #92A8B8 100%);
    --gradient-empowered: linear-gradient(135deg, #203C59 0%, #0F7691 50%, #E2A439 100%);
    --gradient-soft: linear-gradient(135deg, #F7F1EC 0%, #F9DCC4 100%);
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(to bottom, #F7F1EC 0%, #ffffff 100%);
}

html {
    scroll-behavior: smooth;
}

/* Softer, more organic shapes */
* {
    --border-radius-soft: 1.5rem;
    --border-radius-round: 2rem;
    --border-radius-pill: 3rem;
}


/* Hide scrollbar for horizontal scroll sections */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

/* Smooth page transitions */
#app {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes carousel {

    0%,
    20% {
        transform: translateX(0);
    }

    25%,
    45% {
        transform: translateX(-25%);
    }

    50%,
    70% {
        transform: translateX(-50%);
    }

    75%,
    95% {
        transform: translateX(-75%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Staggered Animation Delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

/* Initial state for animations */
.animate-on-scroll {
    opacity: 0;
}

/* Loading spinner animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

/* Pulse animation for CTAs */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ============================================
   SKELETON LOADERS
   ============================================ */

.skeleton {
    background: linear-gradient(90deg,
            var(--color-primary-light) 0%,
            rgba(146, 168, 184, 0.4) 50%,
            var(--color-primary-light) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: 0.5rem;
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.skeleton-title {
    height: 2rem;
    width: 60%;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

.skeleton-image {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 1rem;
}

.skeleton-card {
    width: 100%;
    height: 300px;
    border-radius: 1rem;
}

/* ============================================
   PREMIUM HOVER EFFECTS
   ============================================ */

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(32, 60, 89, 0.15);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(226, 164, 57, 0.4);
}

.hover-scale {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Line clamp utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Smooth scrolling */
.smooth-scroll {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Glass effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================ */

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* Smooth transitions for interactive elements */
a,
button,
input,
select,
textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}