/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores pasteles verdes */
    --primary-green: #a8d8a8;
    --secondary-green: #c8e6c9;
    --light-green: #e8f5e8;
    --accent-green: #7fb069;
    --dark-green: #5a8a4a;
    
    /* Colores neutros */
    --white: #ffffff;
    --gray: #6c757d;
    --text-dark: #2c3e50;
    
    /* Espaciado */
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Tipografía */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 4rem;
    
    /* Sombras */
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Bordes redondeados */
    --radius-lg: 0.75rem;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--light-green) 0%, var(--secondary-green) 50%, var(--primary-green) 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Sección Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 216, 168, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 230, 201, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.hero-name {
    font-size: var(--font-size-6xl);
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1), 0 0 20px rgba(90, 138, 74, 0.3);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2), 0 0 15px rgba(127, 176, 105, 0.4);
    letter-spacing: -0.01em;
    display: block;
}

.hero-subtitle {
    font-size: var(--font-size-2xl);
    font-weight: 500;
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2), 0 0 12px rgba(127, 176, 105, 0.3);
    line-height: 1.4;
    display: block;
    max-width: 600px;
    margin: 0 auto;
}

/* Animaciones */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-30px) rotate(3deg); 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero::before {
        width: 500px;
        height: 500px;
        top: -40%;
        right: -40%;
    }
    
    .hero::after {
        width: 400px;
        height: 400px;
        bottom: -40%;
        left: -30%;
    }
    
    .hero-content {
        padding: var(--spacing-lg);
        margin: var(--spacing-md);
    }
    
    .hero-name {
        font-size: var(--font-size-4xl);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1), 0 0 15px rgba(90, 138, 74, 0.3);
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2), 0 0 12px rgba(127, 176, 105, 0.4);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2), 0 0 10px rgba(127, 176, 105, 0.3);
    }
}

@media (max-width: 480px) {
    .hero::before {
        width: 300px;
        height: 300px;
        top: -30%;
        right: -50%;
    }
    
    .hero::after {
        width: 250px;
        height: 250px;
        bottom: -30%;
        left: -40%;
    }
    
    .hero-content {
        padding: var(--spacing-md);
        margin: var(--spacing-sm);
    }
    
    .hero-name {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--spacing-sm);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1), 0 0 10px rgba(90, 138, 74, 0.3);
    }
    
    .hero-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-md);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2), 0 0 8px rgba(127, 176, 105, 0.4);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), 0 0 6px rgba(127, 176, 105, 0.3);
    }
}

/* Animación de entrada */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto de partículas sutiles */
.hero::before,
.hero::after {
    opacity: 0.6;
}