@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: "Anek Latin";
    background: linear-gradient(135deg, #0540F2 0%, #056BF1 100%);
    min-height: 100vh;
    color: #000000;
}

.header {
    background: #F2F2F2;
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px #0000001a;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
}

.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: white;
            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;
        }

        /* Efecto hover para el icono */
        .logo-link:hover .logo-icon {
            background: linear-gradient(135deg, #0056b3, #003d82);
            transform: scale(1.1);}

.nav-links {
    display: flex;
    gap: 30px;
    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 {
    transition: width 0.3s ease;
    color: #056BF1;
}

.hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg,#f2f2f2  0%, #5E9FF1 50%, #2563ebe6 100%);
    color: #000000;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #F2F2F2;
    border-radius: 50% 50% 0 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: #0540F2;
    font-weight: 700;
}

.hero p {
    font-family: "Inter";
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #0540F2;
    color: #F2F2F2;
    box-shadow: 0 4px 15px #056BF1;
}

.btn-primary:hover {
    background: #030F27;
    transform: translateY(-2px);
}

.btn-secondary {
   
    color: #000000;
    border: 2px solid #F2F2F2;
}

.btn-secondary:hover {
    background: #5E9FF1;
}

.about-section {
    padding: 80px 20px;
    background: #F2F2F2;
    text-align: center;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 400;
}

.about-section h2 .highlight {
    color: #0540F2;
    font-weight: 700;
}

.about-section p {
    font-family: "Inter";
    font-size: 1.1rem;
    color: #525252;
    margin-bottom: 60px;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #0540F2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #f2f2f2;
    font-size: 24px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000000;
}

.feature p {
    font-family: "Inter";
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.portfolio-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0540F2 0%, #0540F2 50%, #0540F2 100%);
    color: #F2F2F2;
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #F2F2F2;
    border-radius: 0 0 50% 50%;
}

.portfolio-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.portfolio-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.portfolio-section p {
    font-family:"Inter";
    font-size: 1.1rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.portfolio-item {
    background: #F2F2F2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #5E9FF1, #030F27);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    border-radius: 12px;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-item::after {
    content: '→ Ver Portafolio';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #F2F2F2;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    text-shadow: 0 2px 4px #0000004d;
}

.portfolio-item:hover::after {
    opacity: 1;
}

.portfolio-image {
   height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.portfolio-info {
    padding: 20px;
    text-align: left;
    color: #000000;
    position: relative;
    z-index: 1;
}

.portfolio-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.portfolio-info .student {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.portfolio-info p {
    font-family: "Inter";
    color: #000000;
    font-size: 0.9rem;
    line-height: 1.4;
}
.btn-proyecto{
    background: #030F27;
    color: #F2F2F2;
    box-shadow: 0 4px 15px #0540F2;
    position: relative;
    
    
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-proyecto:hover {
    background: #056BF1;
    transform: translateY(-2px);
}
.resources-section {
    padding: 80px 20px;
    background: #F2F2F2;
    position: relative;
    overflow: hidden;
}

.resources-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #0540F2 0%, #0540F2 100%);
    border-radius: 0 0 50% 50%;
}

.resources-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.resources-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0540F2;
}

.resources-section > p {
    font-family: "Inter";
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: #000000;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
     margin-top: 50px;
}

.resource-item {
    background: #CDE1FC;
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
}

.resource-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    color: #F2F2F2;
    font-size: 20px;
}

.resource-item h4 {
    font-size: 1.2rem;
    color: #000000;
}

.resource-list {
    list-style: none;
    text-align: left;
}

.resource-list li {
    padding: 10px 10px;
    color: #000000;
}

.useful-links {
    background: #2563eb;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.useful-links h3 {
    color: #F2F2F2;
    margin-bottom: 20px;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.link-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: #F2F2F2;
    text-decoration: none;
    transition: 'background 0.3s';
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer {
    background: #030F27;
    color: #F2F2F2;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #F2F2F2;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 5px 0;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #F2F2F2;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #374151;
    color: #f2f2f2;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F2F2F2;
    text-decoration: none;
    transition: 'background 0.3s';
}

.social-links a:hover {
    background: #2563eb;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}