/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores principales */
    --primary-green: #6DAA8B;
    --primary-pink: #E9A8C6;
    --primary-green-dark: #5a8f75;
    --primary-green-light: #8bc4a7;
    --primary-pink-dark: #d18fb0;
    --primary-pink-light: #f0b8d4;
    
    /* Colores secundarios */
    --cream: #FAF7F5;
    --smoke-gray: #CFCFCF;
    --graphite: #2C2C2C;
    
    /* Colores de texto */
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --text-lighter: #999999;
    --white: #ffffff;
    
    /* Sombras y efectos */
    --shadow: 0 4px 6px rgba(44, 44, 44, 0.1);
    --shadow-lg: 0 10px 30px rgba(44, 44, 44, 0.15);
    --shadow-pink: 0 8px 20px rgba(233, 168, 198, 0.3);
    --shadow-green: 0 8px 20px rgba(109, 170, 139, 0.3);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 247, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-brand:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.1);
}

.logo-img-footer {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.logo-img-footer:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-pink));
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-pink));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-pink-dark));
}

.btn-nav::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(109, 170, 139, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 168, 198, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--cream) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 168, 198, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    filter: blur(40px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(109, 170, 139, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
    filter: blur(40px);
}

/* Decorative shapes in hero */
.hero .container::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-green));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: morph 8s ease-in-out infinite;
    z-index: 0;
}

.hero .container::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-pink));
    border-radius: 50%;
    opacity: 0.15;
    animation: float 12s ease-in-out infinite;
    z-index: 0;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #4a7d66, #c87ba3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-pink));
    color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-pink-dark));
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-pink));
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--white);
    border-color: transparent;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 300px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(109, 170, 139, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.hero-card:hover::before {
    animation: shine 1.5s ease-in-out;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(109, 170, 139, 0.3);
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    position: relative;
    z-index: 1;
}


/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

/* Add subtle animated background elements to all sections */
section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(109, 170, 139, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(233, 168, 198, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-pink));
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    background: 
        linear-gradient(45deg, transparent 48%, rgba(109, 170, 139, 0.03) 49%, rgba(109, 170, 139, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(233, 168, 198, 0.03) 49%, rgba(233, 168, 198, 0.03) 51%, transparent 52%),
        var(--white);
    background-size: 60px 60px, 60px 60px, 100%;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-pink));
    border-radius: 50%;
    opacity: 0.05;
    animation: float 25s ease-in-out infinite;
    filter: blur(60px);
}

.about::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-green));
    border-radius: 50%;
    opacity: 0.05;
    animation: float 30s ease-in-out infinite reverse;
    filter: blur(60px);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.about-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
    background: var(--white);
}

.card-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: var(--transition);
    animation: float-icon 3s ease-in-out infinite;
}

.about-card:hover .card-icon-large {
    transform: scale(1.2) rotate(5deg);
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    position: relative;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Program Section */
.program {
    background: 
        radial-gradient(circle at 0% 0%, rgba(109, 170, 139, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(233, 168, 198, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(109, 170, 139, 0.05) 0%, rgba(233, 168, 198, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.program::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-pink));
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    opacity: 0.08;
    animation: morph 10s ease-in-out infinite;
    filter: blur(30px);
}

.program::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-green));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 18s ease-in-out infinite;
    filter: blur(25px);
}

/* Decorative dots pattern */
.program .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(109, 170, 139, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(233, 168, 198, 0.1) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    background-position: 0 0, 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.program-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.feature-number {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-pink));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}

.feature-item:hover .feature-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.program-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.visual-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(109, 170, 139, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-slow);
}

.visual-card:hover::after {
    width: 300px;
    height: 300px;
}

.visual-card:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.visual-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: var(--transition);
    animation: float-icon 3s ease-in-out infinite;
}

.visual-card:hover .visual-icon {
    transform: scale(1.2) rotate(-10deg);
}

.visual-card h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* Benefits Section */
.beneficios {
    background: 
        linear-gradient(90deg, transparent 0%, rgba(109, 170, 139, 0.05) 25%, rgba(233, 168, 198, 0.05) 75%, transparent 100%),
        var(--white);
    position: relative;
    overflow: hidden;
}

.beneficios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(109, 170, 139, 0.02) 10px,
            rgba(109, 170, 139, 0.02) 20px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(233, 168, 198, 0.02) 10px,
            rgba(233, 168, 198, 0.02) 20px
        );
    pointer-events: none;
}

.beneficios::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 168, 198, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 22s ease-in-out infinite;
    filter: blur(50px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--cream);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(109, 170, 139, 0.05), rgba(233, 168, 198, 0.05));
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px) rotate(1deg);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: var(--transition);
    animation: float-icon 3s ease-in-out infinite;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(-5deg);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Who is it for Section */
.quien-es {
    background: 
        radial-gradient(ellipse at top left, rgba(233, 168, 198, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(109, 170, 139, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(233, 168, 198, 0.05) 0%, rgba(109, 170, 139, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.quien-es::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-green));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.08;
    animation: morph 12s ease-in-out infinite;
    filter: blur(40px);
}

.quien-es::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 15%;
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-pink));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite reverse;
    filter: blur(35px);
}

/* Geometric shapes */
.quien-es .container::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(109, 170, 139, 0.15);
    border-radius: 20px;
    transform: rotate(45deg);
    animation: rotate 20s linear infinite;
}

.quien-es .container::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(233, 168, 198, 0.15);
    border-radius: 20px;
    transform: rotate(-45deg);
    animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.quien-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.quien-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.quien-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-pink));
    transition: var(--transition);
    z-index: 0;
}

.quien-card:hover::before {
    height: 100%;
}

.quien-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.quien-card:hover .quien-icon,
.quien-card:hover h3,
.quien-card:hover p {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.quien-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.quien-card:hover .quien-icon {
    transform: scale(1.2) rotate(10deg);
}

.quien-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.quien-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-green) 0%, var(--primary-pink) 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
    filter: blur(50px);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
    filter: blur(50px);
}

/* Decorative shapes in CTA */
.cta .container::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 15s ease-in-out infinite;
}

.cta .container::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--graphite);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--text-lighter);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    margin-bottom: 1rem;
}

.footer-links a,
.footer-contact ul a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover,
.footer-contact ul a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-lighter);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-lighter);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .program-content {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about-grid,
    .benefits-grid,
    .quien-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }

    section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Floating decorative shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(109, 170, 139, 0.2), rgba(233, 168, 198, 0.2));
    top: 15%;
    left: 5%;
    animation: float 15s ease-in-out infinite;
    filter: blur(20px);
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(233, 168, 198, 0.15), rgba(109, 170, 139, 0.15));
    bottom: 20%;
    right: 8%;
    animation: float 18s ease-in-out infinite reverse;
    filter: blur(25px);
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: rgba(109, 170, 139, 0.1);
    top: 60%;
    left: 15%;
    animation: float 12s ease-in-out infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(15px);
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(233, 168, 198, 0.18), rgba(109, 170, 139, 0.18));
    top: 10%;
    right: 10%;
    animation: float 20s ease-in-out infinite;
    filter: blur(30px);
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: rgba(109, 170, 139, 0.12);
    bottom: 15%;
    left: 12%;
    animation: float 16s ease-in-out infinite reverse;
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    filter: blur(20px);
}

/* Decorative circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}

.circle-1 {
    width: 200px;
    height: 200px;
    border-color: var(--primary-green);
    top: 10%;
    right: 10%;
    animation: rotate 30s linear infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    border-color: var(--primary-pink);
    bottom: 15%;
    left: 8%;
    animation: rotate 25s linear infinite reverse;
}

/* Decorative dots pattern */
.decorative-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, var(--primary-green) 2px, transparent 2px),
        radial-gradient(circle, var(--primary-pink) 1.5px, transparent 1.5px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 25px 25px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    animation: move-dots 20s linear infinite;
}

@keyframes move-dots {
    0% { background-position: 0 0, 25px 25px; }
    100% { background-position: 50px 50px, 75px 75px; }
}

/* Geometric shapes */
.geometric-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
}

.geo-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-pink));
    top: 20%;
    left: 5%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: rotate 20s linear infinite;
}

.geo-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-green));
    bottom: 25%;
    right: 8%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: rotate 25s linear infinite reverse;
}

/* Ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.about-card,
.benefit-card,
.quien-card {
    animation: fadeInUp 0.6s ease-out;
}

.hero-text {
    animation: fadeIn 0.8s ease-out;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient text animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-title {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite, fadeInUp 0.8s ease-out;
    filter: contrast(1.2);
}

