@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Variables CSS para colores personalizados */
:root {
    --primary: #8B5CF6;
    --secondary: #06B6D4;
    --accent: #F97316;
    --warm: #FEF3C7;
    --mint: #34D399;
    --coral: #FB7185;
}

/* Base styles */
html {
    line-height: 1.5;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f9fafb 0%, #e0e7ff 50%, #e0f2fe 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Layout Classes */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.static { position: static; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-1\/2 { top: 50%; }
.top-2\/3 { top: 66.6667%; }
.top-16 { top: 4rem; }
.top-20 { top: 5rem; }
.top-24 { top: 6rem; }
.top-28 { top: 7rem; }
.top-32 { top: 8rem; }
.top-40 { top: 10rem; }
.top-56 { top: 14rem; }
.bottom-20 { bottom: 5rem; }
.bottom-24 { bottom: 6rem; }
.bottom-28 { bottom: 7rem; }
.bottom-32 { bottom: 8rem; }
.bottom-40 { bottom: 10rem; }
.bottom-48 { bottom: 12rem; }
.bottom-56 { bottom: 14rem; }
.left-8 { left: 2rem; }
.left-12 { left: 3rem; }
.left-16 { left: 4rem; }
.left-20 { left: 5rem; }
.left-24 { left: 6rem; }
.left-1\/3 { left: 33.3333%; }
.left-1\/4 { left: 25%; }
.right-8 { right: 2rem; }
.right-12 { right: 3rem; }
.right-16 { right: 4rem; }
.right-20 { right: 5rem; }
.right-24 { right: 6rem; }
.right-1\/3 { right: 33.3333%; }
.right-1\/4 { right: 25%; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Flexbox */
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Spacing - Width */
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-\[11\.111\%\] { width: 11.111%; }
.w-\[900\%\] { width: 900%; }

/* Max Width */
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[500px\] { max-width: 500px; }

/* Height */
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-\[550px\] { height: 550px; }

/* Min Height */
.min-h-screen { min-height: 100vh; }
.min-h-\[90vh\] { min-height: 90vh; }

/* Max Height */
.max-h-\[450px\] { max-height: 450px; }

/* Padding */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-20 { padding-top: 5rem; }
.pb-16 { padding-bottom: 4rem; }

/* Margin */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }
.mr-4 { margin-right: 1rem; }

/* Space Between */
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }

/* Gap */
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Colors - Background */
.bg-white { background-color: #ffffff; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }
.bg-purple-50 { background-color: #faf5ff; }
.bg-purple-500 { background-color: #8b5cf6; }
.bg-purple-600 { background-color: #7c3aed; }
.bg-purple-900 { background-color: #581c87; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-900 { background-color: #1e3a8a; }
.bg-indigo-100 { background-color: #e0e7ff; }
.bg-yellow-300 { background-color: #fde047; }
.bg-yellow-400 { background-color: #facc15; }
.bg-yellow-500 { background-color: #eab308; }
.bg-orange-400 { background-color: #fb923c; }
.bg-orange-500 { background-color: #f97316; }
.bg-pink-400 { background-color: #f472b6; }
.bg-green-300 { background-color: #86efac; }
.bg-cyan-400 { background-color: #22d3ee; }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-mint { background-color: var(--mint); }



/* Background with opacity */
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }

/* GRADIENTES CORREGIDOS - LA CLAVE DEL PROBLEMA */

/* Clases de gradiente base */
.bg-gradient-to-r { 
    background-image: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
}

/* Gradiente específico para el texto principal */
.from-primary.to-secondary {
    background-image: linear-gradient(to right, var(--primary), var(--secondary));
}

.from-primary.via-secondary.to-accent,
.from-primary.to-accent {
    background-image: linear-gradient(to right, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}

/* Otros gradientes necesarios */
.from-purple-50.via-blue-50.to-indigo-100 {
    background-image: linear-gradient(135deg, #faf5ff 0%, #eff6ff 50%, #e0e7ff 100%);
}

.from-primary.to-secondary.via-secondary {
    background-image: linear-gradient(to right, var(--primary), var(--secondary), var(--secondary));
}

.from-purple-50.to-blue-50 {
    background-image: linear-gradient(to right, #faf5ff, #eff6ff);
}

.from-primary { --tw-gradient-from: var(--primary); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); }
.from-secondary { --tw-gradient-from: var(--secondary); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 182, 212, 0)); }
.from-accent { --tw-gradient-from: var(--accent); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 115, 22, 0)); }
.from-purple-50 { --tw-gradient-from: #faf5ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0)); }
.from-purple-400 { --tw-gradient-from: #a855f7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); }
.from-purple-500 { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); }
.from-purple-600 { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); }
.from-purple-900 { --tw-gradient-from: #581c87; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(88, 28, 135, 0)); }
.from-yellow-400 { --tw-gradient-from: #facc15; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 204, 21, 0)); }
.from-orange-400 { --tw-gradient-from: #fb923c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 146, 60, 0)); }
.from-indigo-100 { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); }
.to-secondary { --tw-gradient-to: var(--secondary); }
.to-accent { --tw-gradient-to: var(--accent); }
.to-purple-600 { --tw-gradient-to: #7c3aed; }
.to-blue-50 { --tw-gradient-to: #eff6ff; }
.to-blue-500 { --tw-gradient-to: #3b82f6; }
.to-blue-900 { --tw-gradient-to: #1e3a8a; }
.to-indigo-100 { --tw-gradient-to: #e0e7ff; }
.to-pink-100 { --tw-gradient-to: #fce7f3; }
.to-pink-500 { --tw-gradient-to: #ec4899; }
.to-yellow-500 { --tw-gradient-to: #eab308; }
.to-orange-50 { --tw-gradient-to: #fff7ed; }
.to-red-500 { --tw-gradient-to: #ef4444; }
.to-transparent { --tw-gradient-to: transparent; }
.via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); }

/* Text Colors */
.text-white { color: #ffffff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-purple-200 { color: #ddd6fe; }
.text-purple-600 { color: #7c3aed; }
.text-blue-600 { color: #2563eb; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-transparent { color: transparent; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-center { text-align: center; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

.underline { text-decoration-line: underline; }
.decoration-2 { text-decoration-thickness: 2px; }
.decoration-accent { text-decoration-color: var(--accent); }
.underline-offset-2 { text-underline-offset: 2px; }

/* Background Clip */
.bg-clip-text { 
    -webkit-background-clip: text;
    background-clip: text;
}

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.border-white\/50 { border-color: rgba(255, 255, 255, 0.5); }
.border-yellow-200 { border-color: #fef3c7; }
.border-green-200 { border-color: #bbf7d0; }
.border-blue-200 { border-color: #dbeafe; }
.border-purple-200 { border-color: #e9d5ff; }

.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

/* Shadows */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Effects */
.backdrop-blur-md { backdrop-filter: blur(12px); }
.object-contain { object-fit: contain; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.resize-none { resize: none; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

/* Transform */
.transform { transform: var(--tw-translate-x, 0) var(--tw-translate-y, 0) var(--tw-rotate, 0) var(--tw-skew-x, 0) var(--tw-skew-y, 0) var(--tw-scale-x, 1) var(--tw-scale-y, 1); }
.-translate-y-1\/2 { --tw-translate-y: -50%; transform: translateY(-50%); }
.scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; transform: scale(1.05); }
.scale-110 { --tw-scale-x: 1.1; --tw-scale-y: 1.1; transform: scale(1.1); }

/* Transitions */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Filter */
.filter { filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); }
.brightness-105 { --tw-brightness: brightness(1.05); filter: var(--tw-brightness); }

/* Focus States */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }
.focus\:ring-accent:focus { --tw-ring-color: var(--accent); }
.focus\:border-transparent:focus { border-color: transparent; }

/* Disabled States */
.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

/* Flex Properties */
.flex-shrink-0 { flex-shrink: 0; }

/* Order */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Carousel specific */
.carousel-track { display: flex; transition: transform 0.5s ease-out; }
.carousel-slide { flex: 0 0 auto; }

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% { 
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes pulse {
    50% { opacity: .5; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-bounce { animation: bounce 1s infinite; }
.animate-bounce-slow { animation: bounce 3s infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-pulse-slow { animation: pulse 4s infinite; }
.animate-spin-slow { animation: spin 8s linear infinite; }

/* Hover States */
@media (hover: hover) {
    .hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
    .hover\:scale-105:hover { transform: scale(1.05); }
    .hover\:scale-110:hover { transform: scale(1.1); }
    .hover\:text-primary:hover { color: var(--primary); }
    .hover\:text-accent:hover { color: var(--accent); }
    .group:hover .group-hover\:scale-105 { transform: scale(1.05); }
    .group:hover .group-hover\:-rotate-1 { transform: rotate(-1deg); }
    .group:hover .group-hover\:rotate-1 { transform: rotate(1deg); }
    .group:hover .group-hover\:opacity-100 { opacity: 1; }
}

/* Responsive Design */
@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-left { text-align: left; }
    .md\:justify-start { justify-content: flex-start; }
    .md\:order-1 { order: 1; }
    .md\:order-2 { order: 2; }
    .md\:p-12 { padding: 3rem; }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:text-8xl { font-size: 6rem; line-height: 1; }
    .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .lg\:text-left { text-align: left; }
    .lg\:justify-start { justify-content: flex-start; }
    .lg\:w-\[450px\] { width: 450px; }
    .lg\:h-\[450px\] { height: 450px; }
    .lg\:w-96 { width: 24rem; }
    .lg\:h-96 { height: 24rem; }
    .lg\:w-56 { width: 14rem; }
    .lg\:h-56 { height: 14rem; }
}

/* Custom component styles */
.gradient-bg { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
}

.card-hover { 
    transition: all 0.3s ease; 
}

.card-hover:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}

.blob { 
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.2) 0%,    /* primary/20 */
        rgba(6, 182, 212, 0.2) 100%    /* secondary/20 */
    );
    animation: float 6s ease-in-out infinite;
    position: relative;
    /* Add a subtle glow effect to match the original */
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.1);
}

/* Responsive blob sizes */
.blob {
    width: 24rem;  /* w-96 equivalent */
    height: 24rem; /* h-96 equivalent */
}

@media (min-width: 1024px) {
    .blob {
        width: 450px;  /* lg:w-[450px] */
        height: 450px; /* lg:h-[450px] */
    }
}

/* Enhanced float animation with more organic movement */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        transform: translateY(-10px) scale(1.02);
        border-radius: 35% 65% 75% 25% / 25% 35% 65% 75%;
    }
    50% { 
        transform: translateY(-20px) scale(1);
        border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    }
    75% {
        transform: translateY(-10px) scale(1.02);
        border-radius: 35% 65% 75% 25% / 25% 35% 65% 75%;
    }
}

.animate-float { 
    animation: float 6s ease-in-out infinite; 
}

/* Decorative Elements - Complete Set */

/* Scattered background decorations */
.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-decorations .star-1 {
    position: absolute;
    top: 7rem;
    left: 6rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #fbbf24;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: pulse 4s infinite;
}

.hero-decorations .sun-1 {
    position: absolute;
    top: 10rem;
    right: 8rem;
    width: 2rem;
    height: 2rem;
    background-color: #fb923c;
    border-radius: 50%;
    animation: spin 8s linear infinite;
}

.hero-decorations .circle-1 {
    position: absolute;
    bottom: 10rem;
    left: 5rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #f472b6;
    border-radius: 50%;
    animation: bounce 3s infinite;
}

.hero-decorations .triangle-1 {
    position: absolute;
    bottom: 7rem;
    right: 6rem;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #34d399;
    animation: float 6s ease-in-out infinite;
}

/* Additional scattered elements */
.hero-decorations .star-2 {
    position: absolute;
    top: 15rem;
    right: 15rem;
    width: 1rem;
    height: 1rem;
    background-color: #a855f7;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: pulse 3s infinite;
}

.hero-decorations .circle-2 {
    position: absolute;
    top: 20rem;
    left: 10rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #06b6d4;
    border-radius: 50%;
    animation: bounce 4s infinite;
}

.hero-decorations .sun-2 {
    position: absolute;
    bottom: 15rem;
    right: 12rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #fcd34d;
    border-radius: 50%;
    animation: spin 10s linear infinite reverse;
}

.hero-decorations .triangle-2 {
    position: absolute;
    top: 12rem;
    left: 15rem;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #f97316;
    animation: float 4s ease-in-out infinite;
}

.hero-decorations .circle-3 {
    position: absolute;
    bottom: 20rem;
    left: 12rem;
    width: 1rem;
    height: 1rem;
    background-color: #22d3ee;
    border-radius: 50%;
    animation: pulse 5s infinite;
}

.hero-decorations .star-3 {
    position: absolute;
    bottom: 25rem;
    right: 10rem;
    width: 0.875rem;
    height: 0.875rem;
    background-color: #84cc16;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: bounce 2s infinite;
}

/* Decorations around the blob/card area */
.blob-area-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.blob-area-decorations .circle-blob-1 {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #fbbf24;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

.blob-area-decorations .circle-blob-2 {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 0.625rem;
    height: 0.625rem;
    background-color: #f472b6;
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.blob-area-decorations .star-blob-1 {
    position: absolute;
    top: 50%;
    left: -1.5rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #3b82f6;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: bounce 3s infinite;
}

.blob-area-decorations .star-blob-2 {
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #34d399;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: pulse 4s infinite;
}

.star { 
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.heart {
    clip-path: path('M12,21.35l-1.45-1.32C5.4,15.36,2,12.28,2,8.5 C2,5.42,4.42,3,7.5,3c1.74,0,3.41,0.81,4.5,2.09C13.09,3.81,14.76,3,16.5,3 C19.58,3,22,5.42,22,8.5c0,3.78-3.4,6.86-8.55,11.54L12,21.35z');
}

.sun {
    border-radius: 50%;
    position: relative;
}

.triangle-up {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid;
}

.circle-dot {
    border-radius: 50%;
}

.hexagon {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Quote boxes styles */
.quote-box-primary {
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
    transition: all 0.3s ease;
}

.quote-box-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(145deg, #8B5CF6, #06B6D4, #F97316);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.quote-box-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25);
}

.quote-box-secondary {
    background: linear-gradient(145deg, #FEF9E7, #FFF7E6);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.15);
    transition: all 0.3s ease;
}

.quote-box-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(145deg, #F97316, #FCD34D, #FB923C);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.quote-box-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.25);
}

.quote-icon {
    background: linear-gradient(145deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(139, 92, 246, 0.3));
}

.quote-icon-secondary {
    background: linear-gradient(145deg, #F97316, #FCD34D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.3));
}

/* Journey styles */
.journey-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.journey-item:hover {
    transform: scale(1.05);
}

.journey-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.journey-item:hover .journey-content {
    max-height: 500px;
}

.journey-item.active .journey-content {
    max-height: 500px;
}

/* Estilos para los círculos decorativos alrededor del logo */
.circle-deco-1 {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 2rem;
    height: 2rem;
    background-color: #fbbf24;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

.circle-deco-2 {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #f472b6;
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.circle-deco-3 {
    position: absolute;
    top: 50%;
    left: -24px;
    width: 1rem;
    height: 1rem;
    background-color: #3b82f6;
    border-radius: 50%;
    animation: bounce 3s infinite;
}

.circle-deco-4 {
    position: absolute;
    top: 50%;
    right: -24px;
    width: 1rem;
    height: 1rem;
    background-color: #34d399;
    border-radius: 50%;
    animation: pulse 4s infinite;
}

/* Animaciones clave */
@keyframes bounce {
    0%, 100% { 
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% { 
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* About Section Styles */
.about-section {
    padding: 5rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-decorations .star {
    width: 1rem;
    height: 1rem;
    background-color: #fde047;
    position: absolute;
    top: 4rem;
    right: 5rem;
    animation: pulse 4s infinite;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.about-decorations .sun {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #fb923c;
    position: absolute;
    top: 8rem;
    left: 4rem;
    animation: bounce 3s infinite;
    border-radius: 50%;
}

.about-decorations .circle-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: #f472b6;
    position: absolute;
    bottom: 6rem;
    right: 4rem;
    animation: float 6s ease-in-out infinite;
    border-radius: 50%;
}

.about-decorations .triangle-up {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #8B5CF6;
    position: absolute;
    bottom: 8rem;
    left: 5rem;
    animation: pulse 4s infinite;
}

.about-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
}

.about-description {
    max-width: 56rem;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #4b5563;
}

.about-description p {
    margin-bottom: 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

.about-card {
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-what-we-do {
    background: linear-gradient(135deg, #eff6ff 0%, #e9d5ff 100%);
}

.card-why-choose {
    background: linear-gradient(135deg, #fef9c3 0%, #fed7aa 100%);
}

.card-decoration {
    position: absolute;
    width: 1rem;
    height: 1rem;
}

.card-what-we-do .card-decoration {
    top: 1.5rem;
    right: 1.5rem;
    background-color: #93c5fd;
    animation: pulse 4s infinite;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.card-why-choose .card-decoration {
    top: 1.5rem;
    left: 1.5rem;
    background-color: #fbbf24;
    animation: bounce 3s infinite;
    border-radius: 50%;
}

.card-title-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.checkmark {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #34d399;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-title {
        font-size: 1.875rem;
    }
}

/* Programs Section Styles */
.programs-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #faf5ff 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

.programs-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.programs-decorations .star {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #f472b6;
    position: absolute;
    top: 5rem;
    left: 3rem;
    animation: bounce 3s infinite;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.programs-decorations .sun {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #facc15;
    position: absolute;
    top: 4rem;
    right: 4rem;
    animation: float 6s ease-in-out infinite;
    border-radius: 50%;
}

.programs-decorations .circle-dot {
    width: 1rem;
    height: 1rem;
    background-color: #3b82f6;
    position: absolute;
    bottom: 7rem;
    left: 25%;
    animation: pulse 4s infinite;
    border-radius: 50%;
}

.programs-decorations .triangle-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #34d399;
    position: absolute;
    bottom: 5rem;
    right: 33.3333%;
    animation: bounce 3s infinite;
}

.programs-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.programs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.programs-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.programs-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
}

.programs-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.program-card {
    background-color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.program-card-decoration {
    position: absolute;
}

.program-card-decoration.star {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #fde047;
    top: 1rem;
    right: 1rem;
    animation: pulse 2s infinite;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.program-card-decoration.circle {
    width: 0.75rem;
    height: 0.75rem;
    background-color: #f472b6;
    bottom: 1.5rem;
    left: 1.5rem;
    animation: float 6s ease-in-out infinite;
    border-radius: 50%;
}

.program-card-decoration.sun {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #a855f7;
    top: 1rem;
    left: 1rem;
    animation: bounce 3s infinite;
    border-radius: 50%;
}

.program-card-decoration.triangle {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #06b6d4;
    bottom: 1.5rem;
    right: 1.5rem;
    animation: pulse 4s infinite;
}

.program-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.program-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.vanilla-icon {
    background: linear-gradient(135deg, #facc15 0%, #fb923c 100%);
}

.power-icon {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.program-icon img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
}

.program-title-container {
    flex: 1;
}

.program-name {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-description {
    font-size: 1.125rem;
    font-weight: 600;
}

.vanilla-description {
    color: #f97316;
}

.power-description {
    color: #8b5cf6;
}

.program-content {
    margin-bottom: 1.5rem;
}

.program-text {
    color: #4b5563;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.program-text-bold {
    font-weight: 600;
    color: #f97316;
}

.program-features {
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.vanilla-features {
    background-color: #fef9c3;
}

.power-features {
    background-color: #f3e8ff;
}

.features-title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.vanilla-bullet {
    background-color: #f97316;
}

.power-bullet {
    background-color: #8b5cf6;
}

.feature-text {
    color: #374151;
}

.feature-bold {
    font-weight: 600;
    color: #1f2937;
}

.program-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none !important; /* Esta línea elimina el subrayado */
}

/* Asegurar que no aparezca subrayado en hover */
.program-button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    text-decoration: none !important; /* Elimina subrayado en hover */
}

.vanilla-button {
    background: linear-gradient(to right, #f97316, #eab308);
}

.power-button {
    background: linear-gradient(to right, #8b5cf6, #7c3aed);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 48rem;
    }
}

@media (max-width: 768px) {
    .program-header {
        flex-direction: column;
        text-align: center;
    }
    
    .program-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .programs-title {
        font-size: 1.875rem;
    }
    
    .program-name {
        font-size: 1.5rem;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #faf5ff 50%, #fce7f3 100%);
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.gallery-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
}

.gallery-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
}

/* Modern Floating Carousel */
.carousel-wrapper {
    position: relative;
}

.carousel-container {
    border-radius: 1.5rem;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 900%;
    transition: transform 0.5s ease-out;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 11.111%;
}

.slide-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 550px;
}

.slide-image-wrapper {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-image {
    max-width: 500px;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s ease;
}

.slide-image-wrapper:hover .slide-image {
    transform: scale(1.05) rotate(-1deg);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-image-wrapper:hover .slide-overlay {
    opacity: 1;
}

.overlay-yellow {
    background: linear-gradient(to top, rgba(251, 191, 36, 0.2), transparent);
}

.overlay-pink {
    background: linear-gradient(to top, rgba(244, 114, 182, 0.2), transparent);
}

.overlay-green {
    background: linear-gradient(to top, rgba(52, 211, 153, 0.2), transparent);
}

.overlay-blue {
    background: linear-gradient(to top, rgba(59, 130, 246, 0.2), transparent);
}

.overlay-purple {
    background: linear-gradient(to top, rgba(168, 85, 247, 0.2), transparent);
}

.overlay-red {
    background: linear-gradient(to top, rgba(239, 68, 68, 0.2), transparent);
}

.overlay-orange {
    background: linear-gradient(to top, rgba(249, 115, 22, 0.2), transparent);
}

.overlay-teal {
    background: linear-gradient(to top, rgba(45, 212, 191, 0.2), transparent);
}

.overlay-indigo {
    background: linear-gradient(to top, rgba(99, 102, 241, 0.2), transparent);
}

/* Floating Navigation */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
}

.carousel-nav-btn:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev {
    left: 2rem;
}

.carousel-nav-btn.next {
    right: 2rem;
}

.carousel-nav-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Modern Progress Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 0.75rem;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #d1d5db;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-dot:hover {
    background-color: #9ca3af;
}

.carousel-dot.active {
    width: 2rem;
    background-color: #8b5cf6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 1.875rem;
    }
    
    .gallery-subtitle {
        font-size: 1.125rem;
    }
    
    .slide-content {
        height: 450px;
    }
    
    .slide-image {
        max-width: 90%;
        max-height: 380px;
    }
    
    .carousel-nav-btn {
        width: 3rem;
        height: 3rem;
    }
    
    .carousel-nav-btn.prev {
        left: 1rem;
    }
    
    .carousel-nav-btn.next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .slide-content {
        height: 400px;
    }
    
    .slide-image {
        max-height: 320px;
    }
    
    .carousel-nav-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .carousel-nav-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Gallery Decorations */
.gallery-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.gallery-decorations .star {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #fbbf24;
    position: absolute;
    top: 20%;
    left: 10%;
    animation: pulse 4s infinite;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.gallery-decorations .sun {
    width: 2rem;
    height: 2rem;
    background-color: #fb923c;
    position: absolute;
    top: 15%;
    right: 15%;
    animation: spin 8s linear infinite;
    border-radius: 50%;
}

.gallery-decorations .circle {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #f472b6;
    position: absolute;
    bottom: 25%;
    left: 15%;
    animation: bounce 3s infinite;
    border-radius: 50%;
}

.gallery-decorations .triangle {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #34d399;
    position: absolute;
    bottom: 15%;
    right: 20%;
    animation: float 6s ease-in-out infinite;
}

.gallery-decorations .hexagon {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #3b82f6;
    position: absolute;
    top: 30%;
    right: 25%;
    animation: pulse 5s infinite;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.gallery-decorations .heart {
    width: 1.25rem;
    height: 1.25rem;
    background-color: #ec4899;
    position: absolute;
    bottom: 30%;
    right: 10%;
    animation: bounce 4s infinite;
    clip-path: path('M12,21.35l-1.45-1.32C5.4,15.36,2,12.28,2,8.5 C2,5.42,4.42,3,7.5,3c1.74,0,3.41,0.81,4.5,2.09C13.09,3.81,14.76,3,16.5,3 C19.58,3,22,5.42,22,8.5c0,3.78-3.4,6.86-8.55,11.54L12,21.35z');
}