  /* ============================= */
  /* 1. IMPORTAR FUENTES */
  /* ============================= */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&family=Oswald:wght@400;600;700&family=Permanent+Marker&display=swap');

  /* ============================= */
  /* 2. RESET & ESTILOS GENERALES */
  /* ============================= */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
    color: #222;
    text-align: center;
  }

  /* ============================= */
  /* 3. NAVBAR */
  /* ============================= */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    width: 100%;
    background: transparent;
    position: fixed;
  }

  /* Contenedor de Logo + VR */
  .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Logo */
  .navbar img {
    height: 60px;
    transition: transform 0.3s ease-out; /* Suaviza la salida */
  }

  /* Animación personalizada */
  @keyframes bounce-logo {
    0% { transform: scale(1); }
    40% { transform: scale(1.08); }
    70% { transform: scale(1.03); }
    100% { transform: scale(1.06); }
  }

  /* Aplica la animación al hacer hover */
  .navbar img:hover {
    animation: bounce-logo 0.3s ease-out forwards;
  }

  /* "+ VR" Estilos */
  .vr-text {
    font-family: 'Permanent Marker', cursive;
    font-size: 46px; 
    color: #222;
    font-weight: 400;
    line-height: 1;
    transform: scale(1);
    transition: transform 0.3s ease-out; /* Al quitar hover, vuelve suavemente */
  }

  /* Definimos la animación */
  @keyframes bounce-scale {
    0% { transform: scale(1); }
    40% { transform: scale(1.08); }
    70% { transform: scale(1.03); }
    100% { transform: scale(1.06); }
  }

  /* Aplica la animación cuando pasa el mouse */
  .vr-text:hover {
    animation: bounce-scale 0.3s ease-out forwards;
  }

  /* Nav Links */
  .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
  }

  .nav-links li {
    position: relative;
    padding: 10px 20px;
    border-radius: 5px;
    background: #e0e0e0; /* Gris claro por defecto */
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  /* Enlaces */
  .nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
  }

  /* Hover */
  .nav-links li:hover {
    background: #f0f0f0;
    transform: scale(1.05);
  }

  /* Activo */
  .nav-links .active {
    background: #bdbdbd; /* Gris más oscuro */
  }

  /* Submenús */
  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #e0e0e0;
    border-radius: 5px;
    width: 180px;
    padding: 5px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  /* Evitar desbordamiento en el borde derecho */
  .nav-links li .dropdown {
    right: auto;
    left: 0;
  }

  .nav-links li:last-child .dropdown {
    right: 0;
    left: auto;
  }

  /* Mostrar submenú al hacer hover */
  .nav-links li:hover .dropdown {
    display: block;
  }

  /* Hover en submenú */
  .dropdown li {
    display: block;
    padding: 10px;
    text-align: left;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  .dropdown li:hover {
    background: #f0f0f0;
    transform: scale(1.05);
  }

  /* ============================= */
  /* 4. HERO SECTION */
  /* ============================= */
  .hero {
    padding: 100px 20px;
  }

  /* ============================= */
  /* H2 General */
  .hero h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: #222;
    padding-bottom: 15px;
  }

  /* Solo "Virtual Repository" */
  .vr-highlight {
    font-family: 'Permanent Marker', cursive;
    font-size: 38px;
    color: #222;
  }

  .hero h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #4c4c4c;
    padding-bottom: 25px;
  }

  .hero p {
    font-size: 20px;
    margin: 10px 0;
  }

  /* ============================= */
  /* 5. CALL TO ACTION (CTA) */
  /* ============================= */
  .cta {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background: #c9c9c9;
    color: rgb(45, 45, 45);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .cta:hover {
    transform: scale(1.1);
    background: #9e9e9e;
  }

  /* ============================= */
  /* 6. FOOTER */
  /* ============================= */
  footer {
    background: #8e8e8e;
    color: white;
    padding: 20px;
    margin-top: 50px;
    text-align: center;
  }

  .footer-content img {
    width: 100px;
    margin-bottom: 10px;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
  }

  .footer-content a {
    color: rgb(45, 45, 45);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-content a:hover {
    transform: scale(1.1);
    color: #84c16d;
  }

  /* Estilos del Icono de Instagram */
  .instagram-icon {
    filter: invert();
    max-width: 25px;
    height: auto;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.2s ease-in-out;
  }

  /* Efecto hover en el icono de Instagram solo dentro del enlace */
  .footer-content a:hover .instagram-icon {
    transform: scale(1.1);
  }

  /* ============================= */
  /* 7. TABLE STYLES - ARCHIMAERA */
  /* ============================= */
  .projects-table {
    width: 90%;
    max-width: 800px;
    margin: 30px auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }

  .projects-table th, .projects-table td {
    padding: 15px;
    text-align: left;
  }

  .projects-table th {
    background: #494949;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
  }

  .projects-table tr:nth-child(even) {
    background: #f5f5f5;
  }

  .projects-table tr:hover {
    background: #e0e0e0;
  }

  .projects-table td ul {
    list-style: none;
    padding: 0;
  }

  .projects-table td ul li {
    padding: 5px 0;
  }

  .projects-table td a {
    color: #494949;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
  }

  .projects-table td a:hover {
    color: #84c16d;
    text-decoration: underline;
  }

  .archimaera-logo {
    max-width: 400px;
    filter: invert();
    padding-bottom: 30px;
  }