:root {
    /* Paleta */
    --primary: #667eea;
    --secondary: #764ba2;
    --accent: #f093fb;
    --success: #4ecdc4;
    --warning: #fce38a;
    --error: #ef4444;

    --dark: #2c3e50;
    --grey: #95a5a6;
    --light: #ecf0f1;

    --pcolor: #20228b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;

    --background-light: #f9fafb;
    --background-card: rgba(255, 255, 255, 0.95);
    --border-color: #e5e7eb;

    /* Gradientes */
    --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

    /* Sombras */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light);
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
    box-shadow: var(--shadow);
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: var(--grey);
}

.footer .social-links a {
       color: var(--light);
       padding: 0.5rem;
   }
   
   /* Navbar Styles */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: background 0.3s ease; /* Transición suave para el fondo */
}

.navbar:hover {
    background: rgba(255, 255, 255, 1); /* Cambia el fondo al pasar el mouse */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 120px; /* Ajusta la altura del logo */
    width: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-link {
    font-size: 1.1rem; /* Tamaño de fuente más legible */
    text-decoration: none;
    color: var(--pcolor);
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease; /* Transición suave para el color y la transformación */
}

.nav-link:hover {
    color: var(--accent);
    transform: translateY(-2px); /* Efecto de elevación al pasar el mouse */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column; /* Cambia a columna en pantallas pequeñas */
        gap: 10px; /* Reduce el espacio entre enlaces */
    }

    .logo-img {
        height: 40px; /* Ajusta la altura del logo en pantallas pequeñas */
    }
}

   
/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
