   :root {
      --primary-color: #4361ee;
      --secondary-color: #3f37c9;
      --accent-color: #4895ef;
      --light-color: #f8f9fa;
      --dark-color: #212529;
      --success-color: #4cc9f0;
      --text-color: #333;
      --text-muted: #6c757d;
      --border-radius: 8px;
      --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: #f9fafb;
      padding-top: 76px; /* Para compensar la navbar fija */
    }

    /* Navbar */
    .navbar {
      transition: var(--transition);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 1rem 0;
    }

    .navbar.scrolled {
      background-color: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(10px);
    }

    .navbar-brand {
      font-size: 1.5rem;
      color: var(--primary-color) !important;
    }

    .nav-link {
      font-weight: 500;
      color: var(--dark-color) !important;
      transition: var(--transition);
      position: relative;
    }

    .nav-link:hover {
      color: var(--primary-color) !important;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary-color);
      transition: var(--transition);
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .btn-outline-primary {
      border-color: var(--primary-color);
      color: var(--primary-color);
      font-weight: 500;
      transition: var(--transition);
    }

    .btn-outline-primary:hover {
      background-color: var(--primary-color);
      color: white;
      transform: translateY(-2px);
    }

    /* Contact Section */
    .contact-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      min-height: calc(100vh - 76px - 120px);
      display: flex;
      align-items: center;
    }

    .contact-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 2.5rem;
      background-color: white;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      transition: var(--transition);
    }

    .contact-container:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .contact-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 1rem;
      text-align: center;
    }

    .contact-subtitle {
      font-size: 1.1rem;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 2.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .contact-form {
      width: 100%;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: var(--dark-color);
    }

    .form-control {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid #e1e5ee;
      border-radius: var(--border-radius);
      font-size: 1rem;
      transition: var(--transition);
      background-color: #f8f9fa;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
      background-color: white;
    }

    textarea.form-control {
      resize: vertical;
      min-height: 120px;
    }

    .contact-btn {
      width: 100%;
      padding: 0.75rem;
      background-color: var(--primary-color);
      border: none;
      border-radius: var(--border-radius);
      color: white;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      margin-top: 1rem;
    }

    .contact-btn:hover {
      background-color: var(--secondary-color);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    }

    /* Contact Info */
    .contact-info {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid #eaeaea;
    }

    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }

    .info-icon {
      width: 40px;
      height: 40px;
      background-color: rgba(67, 97, 238, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 1rem;
      color: var(--primary-color);
    }

    /* Footer */
   /* FOOTER STYLES */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #9b59b6, #e74c3c);
}

.footer-brand {
    display: flex;
    align-items: center;
    color: #3498db;
    font-size: 1.5rem;
}

.footer-brand i {
    font-size: 1.8rem;
    color: #3498db;
}

.footer p {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer h5 {
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #3498db;
    border-radius: 2px;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-link:hover {
    color: #3498db;
    transform: translateX(5px);
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li i {
    width: 20px;
    color: #3498db;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.social-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Footer Divider */
.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem;
}

/* Copyright Section */
.footer .row.align-items-center p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .footer-link:hover {
        transform: none;
    }
}

@media (max-width: 576px) {
    .footer {
        margin-top: 2rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
}

/* Animation for footer elements */
.footer [class*="col-"] {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for lists */
.footer ul.list-unstyled li {
    transition: transform 0.3s ease;
}

.footer ul.list-unstyled li:hover {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .footer ul.list-unstyled li:hover {
        transform: none;
    }
}

    /* Responsive */
    @media (max-width: 768px) {
      .contact-container {
        padding: 1.5rem;
        margin: 0 1rem;
      }
      
      .contact-title {
        font-size: 2rem;
      }
      
      .contact-subtitle {
        font-size: 1rem;
      }
    }