    /* Reset básico */
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    html, body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom, #ffffff 0%, #f7ecff 100%);
    color: #333;
    height: 100%;
    scroll-behavior: smooth;
    }

    /* Layout */
    .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    }

    /* Navbar con estilo de hielo derritiéndose */
    .navbar {
    background: linear-gradient(135deg, #6a0dad, #ffee00);
    color: #fff;
    padding: 20px 0;
    position: relative;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-bottom: 8px solid #fff;
    border-radius: 0 0 60% 60% / 0 0 20% 20%;
    animation: melt 3s infinite alternate ease-in-out;
    overflow: hidden;
    }

    @keyframes melt {
    0% {
        border-radius: 0 0 60% 60% / 0 0 20% 20%;
    }
    100% {
        border-radius: 0 0 80% 80% / 0 0 30% 30%;
    }
    }

    .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
    }

    .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    }

    .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
    }

    .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(2px);
    }

    /* Logo */
    .logo {
    height: 100px;
    width: auto;
    }
    

    /* Título */
    .site-title {
    font-size: 2.2rem;
    }

    /* Secciones principales */
    .main-content {
    padding: 40px 20px;
    }

    .section {
    margin-bottom: 40px;
    }

    .section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #8735c2;
    }

    .section p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.6;
    }

    /* Enlaces */
    a {
    color: #6a0dad;
    text-decoration: none;
    font-weight: 600;
    }

    a:hover {
    text-decoration: underline;
    }

    /* Footer */
    .footer {
    background-color: #8f3cca;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9rem;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Página bienvenida */
    .welcome-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff 0%, #f7ecff 100%);
    padding: 20px;
    }

    .welcome-logo {
    height: 280px;
    margin-bottom: 20px;
    }

    .welcome-title {
    font-size: 2.5rem;
    color: #6a0dad;
    margin-bottom: 15px;
    }

    .welcome-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    }

    .welcome-button {
    background-color: #6a0dad;
    color: #fff;
    padding: 12px 24px;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    }

    .welcome-button:hover {
    background-color: #8242c2;
    }

    /* Responsive */
    @media (max-width: 600px) {
    .site-title {
        font-size: 1.6rem;
    }

    .logo, .welcome-logo {
        height: 80px;
    }

    .section h2 {
        font-size: 1.4rem;
    }

    .section p, .welcome-description {
        font-size: 1rem;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .welcome-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
    }
