@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:  "Inter";
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.header {
    background: #f2f3f2;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px #00000014;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: "Anek Latin";
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F2F2F2;
    font-weight: bold;
}
.logo-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 6px;
        }
.logo-icon {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: #f2f2f2;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .logo-link:hover .logo-icon {
            background: linear-gradient(135deg, #0056b3, #003d82);
            transform: scale(1.1);}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;

}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #030F27;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #0540F2;
}

/* Hero Section - Completamente rediseñado */
.hero {
    background: linear-gradient(135deg, #0540F2 0%,#5E9FF1  50%, #056BF1 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, #ffffff1a 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, #ffffff14 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, #ffffff0f 0%, transparent 50%);
    animation: heroFloat 8s ease-in-out infinite alternate;
}

@keyframes heroFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: 90px;
    padding: 0 2rem;
}

.hero-subtitle {
    color: #f2f2f2;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero h1 {
    font-family:"Anek Latin";
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 700;
    color: #f2f2f2;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px #0540F2;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero .highlight {
  color: #030F27;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-description {
    color: #f2f2f2;
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.2s both;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-primary {
    background: #f2f2f2;
    color: #667eea;
    box-shadow: 0 8px 25px #00000026;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px #00000033;
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff4d;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: #ffffff1a;
    border-color: #f2f2f2;
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating elements */
.hero-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff1a;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: -2s;
}

.hero-decoration:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: -4s;
}

.hero-decoration:nth-child(3) {
    bottom: 10%;
    left: 20%;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Content Section */
.content-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.content-grid.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.content-image {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px #00000026;
    transition: all 0.4s ease;
}

.content-image:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px #00000033;
}

.content-text h2 {
    font-family: "Anek Latin";
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2d3748;
    font-weight: 600;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 2;
    color: #4a5568;
    text-align: justify;
    font-weight: 400;
}

/* Plan de Estudio Section with Enhanced Effects */
.plan-section {
  background: 
        url('imagenes/la-mano-de-una-mujer-con-esmalte-de-unas-naranja-escribe-en-un-cuaderno-con-un-boligrafo-negro\ 1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Opcional: efecto parallax */
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.plan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, #0540F2 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #0540F2 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, #0540F2 0%, transparent 50%);
    animation: 'backgroundShift 8s ease-in-out infinite alternate';
}

@keyframes backgroundShift {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(5deg) scale(1.1); }
}

.plan-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 100px 100px;
    animation: floatPattern 20s linear infinite;
}

@keyframes floatPattern {
    0% { transform: translateX(-50px) translateY(-50px); }
    100% { transform: translateX(50px) translateY(50px); }
}

.plan-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.plan-title {
    font-family:"Anek Latin";
    color: #030F27;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px #0000004d;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 4px 400px #93c5fd; }
    100% { text-shadow: 0 4px 500px #030F27; }
}

.plan-subtitle {
    color: #030F27;
    font-size: 1.4rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.plan-card {
    background: #f2f2f2;
    backdrop-filter: blur(15px);
    border: 1px solid #5E9FF1;
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px #0540F2;
}
.plan-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: #0540F2;
    box-shadow: 0 25px 80px #5E9FF1;
}

.plan-card:hover * {
    color: #F2F2F2;}

.plan-card h3 {
    color: #000000;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: "Anek Latin";
}

.plan-card ul {
    list-style: none;
    color: #000000e6;
}

.plan-card li {
    text-align: left;
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.plan-card li::before {
    content: '→';
    position: absolute;
    left: 0;

    font-weight: bold;
    font-size: 1.2rem;
}
.download-btn {
   
    color: #030F27;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px #0540F2;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Anek Latin";
}

.download-btn:hover {
    color: #F2F2F2;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #f2f2f2;
    background-color: #030F27;
}

/* Footer */

footer {
    background: #1e293b;
    color: white;
    padding: 60px 2rem 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h3 {
    font-family: "Anek Latin";
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #2563eb;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #2563eb;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        position: relative;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: 90vh;
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .plan-title {
        font-size: 3rem;
    }

    .plan-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}