/* ==================== RESET & VARIABLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores principales */
    --primary-color: #00D4AA;
    --primary-dark: #00B892;
    --secondary-color: #2D3748;
    --accent-color: #FF6B6B;
    --success-color: #10B981;
    
    /* Colores de fondo */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7FAFC;
    --bg-dark: #1A202C;
    --bg-gradient: linear-gradient(135deg, #00D4AA 0%, #00B892 100%);
    
    /* Colores de texto */
    --text-primary: #1A202C;
    --text-secondary: #4A5568;
    --text-light: #A0AEC0;
    --text-white: #FFFFFF;
    
    /* Niveles de usuario */
    --tier-friend: #3B82F6;
    --tier-good-friend: #8B5CF6;
    --tier-best-friend: #EC4899;
    --tier-super-friend: #F59E0B;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Tamaños */
    --header-height: 80px;
    --container-max-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* ==================== BASE STYLES ==================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
}

.logo i {
    font-size: 28px;
}

/* Bandera de Costa Rica */
.cr-flag {
    display: flex;
    flex-direction: column;
    width: 32px;
    height: 24px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: wave-flag 3s ease-in-out infinite;
}

.flag-stripe {
    width: 100%;
    flex: 1;
}

.flag-stripe.blue {
    background: linear-gradient(135deg, #002B7F 0%, #003DA5 100%);
}

.flag-stripe.white {
    background: #FFFFFF;
}

.flag-stripe.red {
    background: linear-gradient(135deg, #CE1126 0%, #E5234A 100%);
    flex: 1.4;
}

@keyframes wave-flag {
    0%, 100% {
        transform: perspective(100px) rotateY(0deg);
    }
    50% {
        transform: perspective(100px) rotateY(-8deg);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-login {
    padding: 10px 25px;
    background: var(--bg-gradient);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00D4AA 0%, #00B892 50%, #0EA882 100%);
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.title-line:nth-child(3) {
    animation-delay: 0.5s;
}

.title-line.highlight {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: fadeIn 1s ease 0.7s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeIn 1s ease 0.9s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--text-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border: 2px solid var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--text-white);
    animation: fadeInUp 1s ease backwards;
}

.stat-item:nth-child(1) {
    animation-delay: 1.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 1.3s;
}

.stat-item:nth-child(3) {
    animation-delay: 1.5s;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease;
}

.floating-card {
    position: absolute;
    background: var(--bg-primary);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 28px;
    color: var(--primary-color);
}

.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 80px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 100px;
    left: 100px;
    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-white);
    border-radius: 2px;
    animation: mouseScroll 1.5s infinite;
}

/* ==================== SECTION STYLES ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== MISSION & VISION SECTION ==================== */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mission-vision::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon .emoji {
    font-size: 64px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.mission-card .card-icon .emoji {
    animation-delay: 0s;
}

.vision-card .card-icon .emoji {
    animation-delay: 0.5s;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.card-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: justify;
    text-align-last: center;
}

/* Responsive para Misión y Visión */
@media (max-width: 768px) {
    .mission-vision {
        padding: 60px 0;
    }

    .mission-vision-grid {
        gap: 30px;
    }

    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }

    .card-icon .emoji {
        font-size: 48px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-text {
        font-size: 15px;
    }
}

/* ==================== MISSION & VISION PAGE ==================== */
.mission-vision-page {
    min-height: 100vh;
    padding: 120px 0 0;
    background: linear-gradient(180deg, #87CEEB 0%, #E0F6FF 40%, #F0F9FF 100%);
    position: relative;
    overflow: hidden;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

/* ==================== ESCENA DE ISLA TROPICAL ==================== */
.tropical-island-scene {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 550px;
    pointer-events: none;
    z-index: 1;
}

/* Cielo y nubes */
.sky {
    position: absolute;
    top: -400px;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    width: 100px;
    height: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100px;
}

.cloud::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 10px;
}

.cloud::after {
    width: 80px;
    height: 50px;
    top: -20px;
    right: 10px;
}

.cloud-1 {
    top: 50px;
    left: 10%;
    animation: cloud-drift 30s linear infinite;
}

.cloud-2 {
    top: 120px;
    left: 40%;
    animation: cloud-drift 40s linear infinite 5s;
}

.cloud-3 {
    top: 80px;
    right: 10%;
    animation: cloud-drift 35s linear infinite 10s;
}

@keyframes cloud-drift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100px);
    }
}

/* Océano con olas */
.ocean {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, #4A90E2 0%, #2E5F8A 50%, #1E4D78 100%);
    z-index: 2;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,100 600,50 T1200,50 L1200,120 L0,120 Z" fill="%234FC3F7" opacity="0.3"/></svg>') repeat-x;
    background-size: 1200px 120px;
    animation: wave-animation 15s linear infinite;
}

.wave-1 {
    animation-duration: 15s;
    opacity: 0.5;
}

.wave-2 {
    animation-duration: 20s;
    animation-delay: -5s;
    opacity: 0.3;
}

.wave-3 {
    animation-duration: 25s;
    animation-delay: -10s;
    opacity: 0.2;
}

@keyframes wave-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

/* Manatí nadando en el océano */
.manatee-swimming {
    position: absolute;
    bottom: 50px;
    z-index: 5;
    pointer-events: auto;
    animation: manatee-ocean-swim 30s linear infinite;
}

.manatee-swimming .manatee-emoji {
    font-size: 70px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    display: inline-block;
    animation: manatee-bob 3s ease-in-out infinite;
}

@keyframes manatee-ocean-swim {
    0% {
        left: -100px;
        transform: scaleX(1);
    }
    48% {
        transform: scaleX(1);
    }
    50% {
        left: 50%;
        transform: scaleX(-1);
    }
    98% {
        transform: scaleX(-1);
    }
    100% {
        left: calc(100% + 100px);
        transform: scaleX(1);
    }
}

@keyframes manatee-bob {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Playa de arena */
.beach {
    position: absolute;
    bottom: 180px;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(180deg, #F4E4C1 0%, #E8D4A8 50%, #D4C4A0 100%);
    z-index: 3;
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.1);
}

.beach::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(10px);
}

/* Rana saltando en la arena */
.frog-beach {
    position: absolute;
    bottom: 15px;
    color: #A3E635;
    font-size: 45px;
    z-index: 4;
    pointer-events: auto;
}

.frog-beach i {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
    animation: gentle-pulse 3s ease-in-out infinite;
}

.frog-1 {
    left: 25%;
    animation: frog-beach-jump 10s ease-in-out infinite;
}

.frog-2 {
    right: 20%;
    animation: frog-beach-jump 12s ease-in-out infinite 3s;
}

@keyframes frog-beach-jump {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    15% {
        transform: translateY(-60px) translateX(-30px) rotate(-10deg);
    }
    30% {
        transform: translateY(0) translateX(-60px);
    }
    45% {
        transform: translateY(-70px) translateX(-30px) rotate(10deg);
    }
    60% {
        transform: translateY(0) translateX(0);
    }
}

/* Jungla tropical */
.jungle {
    position: absolute;
    bottom: 180px;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 4;
}

/* Palmeras en la playa */
.palm-tree {
    position: absolute;
    bottom: 0;
    z-index: 5;
}

.palm-1 {
    left: 10%;
}

.palm-2 {
    right: 15%;
}

.palm-3 {
    left: 50%;
    transform: translateX(-50%);
}

/* Emoji de palmera */
.palm-emoji {
    font-size: 120px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    animation: palm-sway 5s ease-in-out infinite;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.palm-emoji:hover {
    transform: scale(1.1);
}

.palm-2 .palm-emoji {
    animation-delay: 1.5s;
}

.palm-3 .palm-emoji {
    font-size: 100px;
    animation-delay: 3s;
}

@keyframes palm-sway {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-3deg);
    }
    75% {
        transform: rotate(3deg);
    }
}

/* Cocos colgando de las palmeras */
.coconuts {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    z-index: 6;
}

.coconut {
    font-size: 35px;
    position: absolute;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: coconut-swing 4s ease-in-out infinite;
}

.coconut-1 {
    left: 0;
}

.coconut-2 {
    right: -10px;
    animation-delay: 1s;
}

@keyframes coconut-swing {
    0%, 100% {
        transform: rotate(-5deg) translateY(0);
    }
    50% {
        transform: rotate(5deg) translateY(-5px);
    }
}

/* Colibríes volando */
.hummingbird-flying {
    position: absolute;
    color: #FB923C;
    font-size: 45px;
    z-index: 8;
    pointer-events: auto;
}

.hummingbird-flying i {
    filter: drop-shadow(0 4px 10px rgba(251, 146, 60, 0.5));
    animation: hummingbird-glow 2.5s ease-in-out infinite;
}

.hummingbird-1 {
    bottom: 100px;
    left: 25%;
    animation: hummingbird-jungle-flight 20s ease-in-out infinite;
}

.hummingbird-2 {
    bottom: 130px;
    right: 20%;
    animation: hummingbird-jungle-flight 25s ease-in-out infinite 5s;
}

@keyframes hummingbird-jungle-flight {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, -40px) rotate(15deg);
    }
    50% {
        transform: translate(200px, 30px) rotate(-15deg);
    }
    75% {
        transform: translate(100px, -20px) rotate(10deg);
    }
}

.animal-decoration {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.animal-decoration:hover {
    transform: scale(1.1);
}


/* Rana decorativa con icono */
.frog-decoration {
    color: #A3E635;
    font-size: 55px;
    opacity: 0.9;
    z-index: 1;
    transition: all 0.3s ease;
}

.frog-decoration i {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 10px rgba(163, 230, 53, 0.4));
    transition: all 0.3s ease;
}

.frog-decoration:hover i {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(163, 230, 53, 0.6));
    transform: scale(1.15);
}

/* Animación de pulso sutil */
@keyframes gentle-pulse {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 10px rgba(163, 230, 53, 0.4));
    }
    50% {
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 15px rgba(163, 230, 53, 0.6));
    }
}

.frog-decoration i {
    animation: gentle-pulse 3s ease-in-out infinite;
}

.frog-1 {
    top: 20%;
    left: 5%;
    animation: frog-jump-mission 12s ease-in-out infinite;
}

.frog-2 {
    top: 60%;
    right: 8%;
    animation: frog-jump-mission 15s ease-in-out infinite 3s;
}

@keyframes frog-jump-mission {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    10% {
        transform: translateY(-100px) translateX(-20px) scale(1.1) rotate(-5deg);
    }
    20% {
        transform: translateY(0) translateX(-40px) scale(1) rotate(0deg);
    }
    30% {
        transform: translateY(-120px) translateX(-60px) scale(1.15) rotate(5deg);
    }
    40% {
        transform: translateY(0) translateX(-80px) scale(1) rotate(0deg);
    }
    50% {
        transform: translateY(-100px) translateX(-100px) scale(1.1) rotate(-5deg);
    }
    60% {
        transform: translateY(0) translateX(-80px) scale(1) rotate(0deg);
    }
    70% {
        transform: translateY(-120px) translateX(-60px) scale(1.15) rotate(5deg);
    }
    80% {
        transform: translateY(0) translateX(-40px) scale(1) rotate(0deg);
    }
    90% {
        transform: translateY(-100px) translateX(-20px) scale(1.1) rotate(-5deg);
    }
}

/* Oso perezoso decorativo con emoji */
.sloth-container {
    position: absolute;
    z-index: 2;
}

.sloth-decoration {
    position: relative;
    z-index: 3;
}

.sloth-emoji {
    font-size: 55px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 10px rgba(139, 111, 71, 0.3));
    display: inline-block;
    transition: all 0.3s ease;
    animation: sloth-glow 4s ease-in-out infinite;
}

@keyframes sloth-glow {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 10px rgba(139, 111, 71, 0.3));
    }
    50% {
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 16px rgba(139, 111, 71, 0.5));
    }
}

.sloth-emoji:hover {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(139, 111, 71, 0.5));
    transform: scale(1.15);
    animation: none;
}

.sloth-1 {
    top: 15%;
    right: 10%;
}

.sloth-1 .sloth-decoration {
    animation: sloth-climb-mission 20s ease-in-out infinite;
}

.sloth-2 {
    top: 70%;
    left: 8%;
}

.sloth-2 .sloth-decoration {
    animation: sloth-climb-mission 25s ease-in-out infinite 5s;
}

@keyframes sloth-climb-mission {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-50px) rotate(5deg);
    }
    50% {
        transform: translateY(-100px) rotate(-5deg);
    }
    75% {
        transform: translateY(-50px) rotate(3deg);
    }
}

.vine-decorative {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 180px;
    background: linear-gradient(180deg, #10b981 0%, #059669 50%, #047857 100%);
    border-radius: 3px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.vine-leaf {
    position: absolute;
    width: 24px;
    height: 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    left: -10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    animation: leaf-shimmer 4s ease-in-out infinite;
}

@keyframes leaf-shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.vine-leaf:nth-child(1) { 
    top: 30px;
    transform: rotate(-20deg);
}

.vine-leaf:nth-child(2) { 
    top: 80px;
    right: -10px;
    left: auto;
    transform: rotate(20deg);
}

.vine-leaf:nth-child(3) { 
    top: 130px;
    transform: rotate(-15deg);
}

/* Colibrí decorativo con icono */
.hummingbird-decoration {
    color: #FB923C;
    font-size: 45px;
    opacity: 0.9;
    z-index: 3;
    transition: all 0.3s ease;
}

.hummingbird-decoration i {
    filter: drop-shadow(0 4px 8px rgba(251, 146, 60, 0.4)) drop-shadow(0 0 12px rgba(251, 146, 60, 0.3));
    transition: all 0.3s ease;
    animation: hummingbird-glow 2.5s ease-in-out infinite;
}

@keyframes hummingbird-glow {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(251, 146, 60, 0.4)) drop-shadow(0 0 12px rgba(251, 146, 60, 0.3));
    }
    50% {
        filter: drop-shadow(0 4px 10px rgba(251, 146, 60, 0.5)) drop-shadow(0 0 20px rgba(251, 146, 60, 0.5));
    }
}

.hummingbird-decoration:hover i {
    filter: drop-shadow(0 6px 12px rgba(251, 146, 60, 0.5)) drop-shadow(0 0 18px rgba(251, 146, 60, 0.5));
    transform: scale(1.15);
    animation: none;
}

.hummingbird-1 {
    top: 25%;
    left: 15%;
    animation: hummingbird-fly-mission 18s ease-in-out infinite;
}

.hummingbird-2 {
    top: 55%;
    right: 12%;
    animation: hummingbird-fly-mission 22s ease-in-out infinite 4s;
}

@keyframes hummingbird-fly-mission {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -30px) rotate(10deg);
    }
    50% {
        transform: translate(100px, 20px) rotate(-10deg);
    }
    75% {
        transform: translate(50px, -20px) rotate(5deg);
    }
}

/* Flores decorativas */
.flower-decoration {
    position: absolute;
    width: 40px;
    height: 160px;
    z-index: 2;
}

.flower-decoration .flower-head {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
    animation: flower-glow 5s ease-in-out infinite;
}

@keyframes flower-glow {
    0%, 100% {
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 8px rgba(255, 105, 180, 0.3));
    }
    50% {
        filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25)) drop-shadow(0 0 15px rgba(255, 105, 180, 0.5));
    }
}

.flower-dec-1 {
    bottom: 30%;
    left: 12%;
    animation: flower-sway 4s ease-in-out infinite;
}

.flower-dec-2 {
    bottom: 25%;
    right: 15%;
    animation: flower-sway 5s ease-in-out infinite 1s;
}

/* Manatí en el fondo */
.manatee-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.manatee-decoration {
    position: absolute;
    bottom: 30px;
    z-index: 2;
}

.manatee-emoji {
    font-size: 70px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 12px rgba(113, 128, 150, 0.3));
    display: inline-block;
    transition: all 0.3s ease;
    animation: manatee-glow 3.5s ease-in-out infinite;
}

@keyframes manatee-glow {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 12px rgba(113, 128, 150, 0.3));
    }
    50% {
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
    }
}

.manatee-emoji:hover {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 18px rgba(59, 130, 246, 0.6));
    transform: scale(1.1);
    animation: none;
}

.manatee-1 {
    animation: manatee-swim-mission 25s linear infinite;
}

@keyframes manatee-swim-mission {
    0% {
        left: -100px;
        transform: scaleX(1);
    }
    48% {
        transform: scaleX(1);
    }
    50% {
        left: 50%;
        transform: scaleX(-1);
    }
    98% {
        transform: scaleX(-1);
    }
    100% {
        left: calc(100% + 100px);
        transform: scaleX(1);
    }
}

/* Sección de valores */
.values-section {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.values-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.value-card:nth-child(1) .value-icon { animation-delay: 0s; }
.value-card:nth-child(2) .value-icon { animation-delay: 0.2s; }
.value-card:nth-child(3) .value-icon { animation-delay: 0.4s; }
.value-card:nth-child(4) .value-icon { animation-delay: 0.6s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Responsive para página de misión y visión */
@media (max-width: 768px) {
    .mission-vision-page {
        padding: 100px 0 0;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .values-title {
        font-size: 28px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 16px;
    }

    /* Ajustar escena tropical en móvil */
    .tropical-island-scene {
        height: 400px;
    }

    .ocean {
        bottom: 0;
        height: 120px;
    }

    .beach {
        bottom: 120px;
        height: 50px;
    }

    .jungle {
        bottom: 170px;
        height: 230px;
    }

    .palm-tree {
        bottom: 0;
    }

    .palm-emoji {
        font-size: 80px;
    }

    .palm-3 .palm-emoji {
        font-size: 70px;
    }

    .coconuts {
        bottom: 30px;
    }

    .coconut {
        font-size: 25px;
    }

    /* Ocultar algunos elementos decorativos en móvil */
    .frog-2,
    .hummingbird-2,
    .cloud-2,
    .cloud-3,
    .palm-2,
    .palm-3 {
        display: none;
    }

    /* Reducir tamaño de animales en móvil */
    .frog-beach {
        font-size: 35px;
    }

    .hummingbird-flying {
        font-size: 35px;
    }

    .manatee-swimming .manatee-emoji {
        font-size: 50px;
    }
}

/* ==================== BENEFITS SECTION ==================== */
.benefits {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Flores y Colibrí decorativos */
.flowers-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

/* Diseño de flores 2D */
.flower {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tallo de la flor */
.stem {
    width: 6px;
    height: 120px;
    background: linear-gradient(to bottom, #10B981 0%, #059669 50%, #047857 100%);
    border-radius: 3px;
    position: relative;
    box-shadow: inset -1px 0 2px rgba(0, 0, 0, 0.2);
}

/* Hojas del tallo */
.leaf {
    position: absolute;
    width: 30px;
    height: 18px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 0 50% 50% 0;
}

.leaf-left {
    top: 30%;
    left: -27px;
    transform: rotate(-30deg);
}

.leaf-right {
    top: 60%;
    right: -27px;
    transform: rotate(30deg) scaleX(-1);
}

/* Cabeza de la flor */
.flower-head {
    position: absolute;
    top: -50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pétalos individuales */
.petal {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50% 50% 0 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.petal:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translate(-50%, -14px) rotate(-90deg);
}

.petal:nth-child(2) {
    top: 25%;
    right: 8px;
    transform: rotate(-20deg);
}

.petal:nth-child(3) {
    bottom: 15%;
    right: 12px;
    transform: rotate(50deg);
}

.petal:nth-child(4) {
    bottom: 15%;
    left: 12px;
    transform: rotate(130deg);
}

.petal:nth-child(5) {
    top: 25%;
    left: 8px;
    transform: rotate(200deg);
}

/* Centro de la flor */
.flower-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    background: radial-gradient(circle, #FDE047 0%, #FACC15 50%, #EAB308 100%);
    border-radius: 50%;
    z-index: 2;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2),
                0 2px 4px rgba(0, 0, 0, 0.1);
}

.flower-center::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 5px;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

/* Flores individuales con colores y posiciones */
.flower-1 {
    bottom: 0;
    left: 10%;
    animation: flower-sway 4s ease-in-out infinite;
}

.flower-1 .petal {
    background: linear-gradient(135deg, #F9A8D4 0%, #F472B6 50%, #EC4899 100%);
}

.flower-2 {
    bottom: 0;
    left: 5%;
    animation: flower-sway 5s ease-in-out infinite;
    animation-delay: -1s;
}

.flower-2 .petal {
    background: linear-gradient(135deg, #C4B5FD 0%, #A78BFA 50%, #8B5CF6 100%);
}

.flower-3 {
    bottom: 0;
    right: 8%;
    animation: flower-sway 4.5s ease-in-out infinite;
    animation-delay: -2s;
}

.flower-3 .petal {
    background: linear-gradient(135deg, #FDBA74 0%, #FB923C 50%, #F97316 100%);
}

.flower-4 {
    bottom: 0;
    right: 12%;
    animation: flower-sway 5.5s ease-in-out infinite;
    animation-delay: -3s;
}

.flower-4 .petal {
    background: linear-gradient(135deg, #93C5FD 0%, #60A5FA 50%, #3B82F6 100%);
}

@keyframes flower-sway {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

/* Colibrí visitando flores */
.hummingbird {
    position: absolute;
    font-size: 40px;
    color: #FB923C;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: hummingbird-visit 24s ease-in-out infinite;
}

.hummingbird i {
    animation: hummingbird-flap 0.15s ease-in-out infinite;
}

@keyframes hummingbird-visit {
    0% {
        bottom: 90px;
        left: 5%;
        transform: rotate(-20deg) scaleX(-1);
    }
    10% {
        bottom: 90px;
        left: 10%;
        transform: rotate(-10deg) scaleX(-1);
    }
    20% {
        bottom: 90px;
        left: 5%;
        transform: rotate(15deg) scaleX(-1);
    }
    30% {
        bottom: 90px;
        left: 5%;
        transform: rotate(10deg) scaleX(-1);
    }
    40% {
        bottom: 90px;
        left: 50%;
        transform: rotate(-5deg) scaleX(1);
    }
    50% {
        bottom: 90px;
        right: 8%;
        left: auto;
        transform: rotate(5deg) scaleX(1);
    }
    60% {
        bottom: 90px;
        right: 8%;
        left: auto;
        transform: rotate(10deg) scaleX(1);
    }
    70% {
        bottom: 90px;
        right: 12%;
        left: auto;
        transform: rotate(-10deg) scaleX(1);
    }
    80% {
        bottom: 90px;
        right: 12%;
        left: auto;
        transform: rotate(-5deg) scaleX(1);
    }
    90% {
        bottom: 90px;
        left: 50%;
        transform: rotate(0deg) scaleX(-1);
    }
    100% {
        bottom: 90px;
        left: 5%;
        transform: rotate(-20deg) scaleX(-1);
    }
}

@keyframes hummingbird-flap {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: var(--text-white);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== CALCULATOR SECTION ==================== */
.calculator {
    padding: 100px 0;
    background: var(--bg-primary);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--bg-secondary);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.input-wrapper {
    position: relative;
}

.currency {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: all var(--transition-fast);
    font-family: inherit;
}

.form-group input[type="number"] {
    padding-left: 35px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #E2E8F0;
    outline: none;
    -webkit-appearance: none;
    margin-top: 15px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-gradient);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-gradient);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: none;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 12px;
    color: var(--text-light);
}

.calculator-result {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.calculator-result h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.result-label {
    color: var(--text-secondary);
    font-size: 15px;
}

.result-value {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
}

.result-value.total {
    font-size: 24px;
    color: var(--primary-color);
}

.result-value.highlight {
    font-size: 32px;
    color: var(--primary-color);
}

.result-divider {
    height: 1px;
    background: #E2E8F0;
    margin: 20px 0;
}

.result-total {
    padding-top: 20px;
}

.result-installment {
    background: var(--bg-gradient);
    margin: 20px -40px 30px;
    padding: 25px 40px;
    border-radius: 0;
}

.result-installment .result-label,
.result-installment .result-value {
    color: var(--text-white);
}

.calculator-note {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: #FEF3C7;
    border-radius: var(--border-radius);
    border-left: 4px solid #F59E0B;
}

.calculator-note i {
    color: #F59E0B;
    font-size: 20px;
    flex-shrink: 0;
}

.calculator-note p {
    color: #78350F;
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== TIERS SECTION ==================== */
.tiers {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Lianas decorativas con perezosos */
.vines-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.vine {
    position: absolute;
    width: 8px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #2D5016 5%,
        #3D6B1F 20%,
        #2D5016 40%,
        #3D6B1F 60%,
        #2D5016 80%,
        transparent 100%
    );
    box-shadow: inset -2px 0 4px rgba(0, 0, 0, 0.3),
                2px 0 6px rgba(0, 0, 0, 0.2);
    animation: vine-sway 8s ease-in-out infinite;
}

.vine::before,
.vine::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #3D6B1F;
    border-radius: 50% 0;
    opacity: 0.6;
}

.vine::before {
    top: 15%;
    left: -6px;
    transform: rotate(-45deg);
}

.vine::after {
    top: 45%;
    right: -6px;
    transform: rotate(135deg);
}

.vine-left {
    left: 8%;
    animation-delay: 0s;
}

.vine-right {
    right: 8%;
    animation-delay: -4s;
}

@keyframes vine-sway {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(8px) rotate(1deg);
    }
    75% {
        transform: translateX(-8px) rotate(-1deg);
    }
}

/* Perezosos escalando */
.sloth-climbing {
    position: absolute;
    font-size: 45px;
    color: #8B6F47;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
    transform-origin: center;
}

.sloth-climbing i {
    display: block;
    transform: rotate(-15deg);
}

.sloth-1 {
    left: -15px;
    animation: sloth-climb-1 20s ease-in-out infinite;
}

.sloth-2 {
    right: -15px;
    animation: sloth-climb-2 25s ease-in-out infinite;
}

@keyframes sloth-climb-1 {
    0% {
        top: 90%;
        transform: rotate(0deg) scaleX(-1);
    }
    50% {
        top: 10%;
        transform: rotate(5deg) scaleX(-1);
    }
    100% {
        top: 90%;
        transform: rotate(0deg) scaleX(-1);
    }
}

@keyframes sloth-climb-2 {
    0% {
        top: 10%;
        transform: rotate(0deg) scaleX(1);
    }
    50% {
        top: 90%;
        transform: rotate(-5deg) scaleX(1);
    }
    100% {
        top: 10%;
        transform: rotate(0deg) scaleX(1);
    }
}

.tiers .container {
    position: relative;
    z-index: 2;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tier-card {
    background: var(--bg-primary);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    border-top: 4px solid var(--tier-friend);
    opacity: 0;
    transform: scale(0.9);
}

.tier-card.visible {
    animation: zoomIn 0.6s ease forwards;
}

.tier-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.tier-card.featured {
    border-top-color: var(--tier-super-friend);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.3);
}

.tier-ribbon {
    position: absolute;
    top: 20px;
    right: -5px;
    background: var(--tier-super-friend);
    color: var(--text-white);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 3px 0 0 3px;
    box-shadow: var(--shadow-md);
}

.tier-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid #D97706;
    border-bottom: 5px solid transparent;
}

.tier-good-friend {
    border-top-color: var(--tier-good-friend);
}

.tier-best-friend {
    border-top-color: var(--tier-best-friend);
}

.tier-super-friend {
    border-top-color: var(--tier-super-friend);
}

.tier-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--text-white);
}

.tier-friend .tier-badge {
    background: var(--tier-friend);
}

.tier-good-friend .tier-badge {
    background: var(--tier-good-friend);
}

.tier-best-friend .tier-badge {
    background: var(--tier-best-friend);
}

.tier-super-friend .tier-badge {
    background: var(--tier-super-friend);
}

.tier-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
}

.tier-amount {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.tier-features {
    list-style: none;
    margin-bottom: 25px;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-secondary);
}

.tier-features i {
    color: var(--success-color);
    font-size: 16px;
}

.tier-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #E2E8F0;
    color: var(--text-light);
    font-size: 14px;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 100px 0;
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text-white);
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.contact-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--bg-gradient);
    color: var(--text-white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Sección de Requisitos */
.requirements-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 2px solid #BAE6FD;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
}

.requirements-title {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirements-title i {
    color: var(--primary-color);
    font-size: 24px;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

.requirement-item:not(:last-child) {
    border-bottom: 1px solid #BAE6FD;
}

.requirement-item i {
    color: var(--primary-color);
    font-size: 18px;
    min-width: 20px;
}

.requirement-item span {
    font-weight: 500;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.form-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E2E8F0;
}

.form-section-title:first-of-type {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: all var(--transition-fast);
    background: var(--bg-primary);
}

.contact-form .form-group input[type="date"] {
    color: var(--text-secondary);
}

.contact-form .form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--text-light);
    transition: all var(--transition-fast);
    pointer-events: none;
    font-size: 16px;
}

.contact-form .form-group input:focus + label,
.contact-form .form-group input:not(:placeholder-shown) + label,
.contact-form .form-group input[type="date"] + label,
.contact-form .form-group textarea:focus + label,
.contact-form .form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: var(--bg-secondary);
    padding: 0 5px;
    color: var(--primary-color);
}

.contact-form .form-group select + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: var(--bg-secondary);
    padding: 0 5px;
}

/* Estilos para campos especiales */
.contact-form .form-group input[type="text"]#cuentaIban {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

.contact-form .form-group select:disabled {
    background: #F7FAFC;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Sección de Documentos */
.documents-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.documents-header {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 2px solid #BAE6FD;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.documents-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.documents-title i {
    color: var(--primary-color);
    font-size: 24px;
}

.documents-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #1E40AF;
    padding-left: 36px;
}

.documents-info i {
    color: var(--primary-color);
}

/* Grid de archivos */
.file-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Tarjeta de archivo */
.file-upload-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.file-upload-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.15);
    transform: translateY(-2px);
}

.file-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00B894 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.file-card-icon i {
    font-size: 24px;
    color: white;
}

.file-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.file-card-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.file-select-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00B894 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.2);
}

.file-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.file-select-btn i {
    font-size: 16px;
}

.file-name-display {
    font-size: 13px;
    color: #64748B;
    font-style: italic;
    text-align: center;
    min-height: 20px;
    word-break: break-word;
}

.file-name-display.has-file {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.file-name-display.has-file::before {
    content: '✓ ';
    margin-right: 5px;
    font-size: 14px;
}

/* ==================== TÉRMINOS Y CONDICIONES ==================== */
.terms-acceptance {
    margin: 30px 0;
    padding: 20px;
    background: #F0F9FF;
    border-radius: 12px;
    border: 2px solid #DBEAFE;
}

.terms-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-left: 35px;
}

.terms-checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 22px;
    width: 22px;
    background-color: white;
    border: 2px solid #CBD5E1;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.terms-checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.terms-checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.terms-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.terms-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.terms-text a:hover {
    border-bottom-color: var(--primary-color);
}

/* Validación de términos */
.terms-checkbox-container input:invalid {
    outline: none;
}

.terms-acceptance.error {
    border-color: #EF4444;
    background: #FEF2F2;
}

.terms-acceptance.error .checkmark {
    border-color: #EF4444;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

/* Manatí nadando en el footer */
.footer-manatee {
    position: absolute;
    bottom: 20px;
    left: -80px;
    font-size: 60px;
    color: #718096;
    opacity: 0.25;
    z-index: 0;
    animation: footer-manatee-swim 30s linear infinite;
}

.footer-manatee i {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes footer-manatee-swim {
    0% {
        transform: translateX(0) rotate(0deg) scaleX(1);
    }
    48% {
        transform: translateX(calc(100vw + 80px)) rotate(5deg) scaleX(1);
    }
    50% {
        transform: translateX(calc(100vw + 80px)) rotate(0deg) scaleX(-1);
    }
    98% {
        transform: translateX(-80px) rotate(-5deg) scaleX(-1);
    }
    100% {
        transform: translateX(-80px) rotate(0deg) scaleX(1);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 28px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== FLOATING BUTTONS ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    text-decoration: none;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-gradient);
    color: var(--text-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-primary);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-normal);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .requirements-section {
        padding: 20px;
    }
    
    .requirements-title {
        font-size: 18px;
    }
    
    .requirement-item {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
    
    .scroll-top {
        bottom: 90px;
        right: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .calculator-result {
        padding: 25px;
    }
    
    .result-installment {
        margin: 20px -25px 30px;
        padding: 20px 25px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* ==================== ANIMALES DECORATIVOS ==================== */
.floating-animals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.animal {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.animal:hover {
    opacity: 0.6;
}

.animal i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Rana - Salta de un lado a otro */
.frog {
    bottom: -60px;
    right: 15%;
    color: #A3E635;
    font-size: 55px;
    opacity: 0.8;
    animation: frog-jump 12s ease-in-out infinite;
}

.frog i {
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
}

@keyframes frog-jump {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    10% {
        transform: translateY(-150px) translateX(-30px) scale(1.1) rotate(-5deg);
    }
    20% {
        transform: translateY(0) translateX(-60px) scale(1) rotate(0deg);
    }
    30% {
        transform: translateY(-180px) translateX(-90px) scale(1.15) rotate(5deg);
    }
    40% {
        transform: translateY(0) translateX(-120px) scale(1) rotate(0deg);
    }
    50% {
        transform: translateY(-150px) translateX(-150px) scale(1.1) rotate(-5deg);
    }
    60% {
        transform: translateY(0) translateX(-120px) scale(1) rotate(0deg);
    }
    70% {
        transform: translateY(-180px) translateX(-90px) scale(1.15) rotate(5deg);
    }
    80% {
        transform: translateY(0) translateX(-60px) scale(1) rotate(0deg);
    }
    90% {
        transform: translateY(-150px) translateX(-30px) scale(1.1) rotate(-5deg);
    }
}

/* Responsivo - Ocultar en móviles para mejor rendimiento */
@media (max-width: 768px) {
    .floating-animals,
    .vines-container,
    .flowers-container {
        display: none;
    }
}

