 /* Reset global de ventiladores */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Previene scroll horizontal no deseado */
    html, body {
      overflow-x: hidden;
      font-family: Arial, sans-serif;
      background-color: #070846;
    }

    /* NAVBAR */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 999;
      width: 100%;
      height: 70px;
      background-color: rgba(7, 8, 70, 0.9);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 5%;
    }

    .logo {
      display: flex;
      justify-content: left;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    .logo img {
      height: 65px;
      width: auto;
      margin-top: 1.2rem;
      margin-left: 0;
      object-fit: contain;
    }

    .logos {
      display: flex;
      justify-content: center;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    .menu {
      display: flex;
      list-style: none;
      gap: 30px;
    }
    
    .menu li a {
      text-decoration: none;
      color: white;
      font-family: 'Cinzel', serif;
      white-space: nowrap;
      font-size: 1.1rem;
      transition: color 0.3s;
    }
    
    .menu li a:hover {
      color: #acacac;
    }
    
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 2rem;
      height: 2rem;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1000;
    }

    .hamburger span {
      width: 2rem;
      height: 0.25rem;
      background: white;
      border-radius: 10px;
      transition: all 0.3s linear;
      position: relative;
      transform-origin: 1px;
    }

    /* HERO */
    .hero {
      background-color: #070846;
      max-width: 1920px;
      height: 80px;
      margin: 0 auto;
      color: white;
      font-family: 'Cinzel', serif;
      justify-content: center;
      position: relative;
      padding-top: 70px;
      padding-bottom: 0;
    }

    /* Seção Biografia */
    .biografia {
      padding: 30px 20px;
      background-color: #070846;
      color: white;
      font-family: 'Cinzel', serif;
      text-align: center;
      position: relative;
      z-index: 5;
    }

    .biografia-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .biografia h2 {
      font-size: 2.5rem;
      margin-bottom: 50px;
      color: white;
      position: relative;
      display: inline-block;
    }

    .biografia h2::after {
      content: '';
      display: block;
      width: 80px;
      height: 3px;
      background: #acacac;
      margin: 15px auto;
    }

    .biografia-content {
      display: flex;
      align-items: flex-start;
      gap: 50px;
      margin-top: 30px;
    }

    .biografia-img {
      flex: 1;
      min-width: 300px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .biografia-img img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .biografia-img:hover img {
      transform: scale(1.03);
    }

    .biografia-text {
      flex: 1;
      text-align: left;
      padding: 20px;
    }

    .biografia-text h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: #acacac;
    }

    .biografia-text p {
      margin-bottom: 20px;
      font-size: 1.1rem;
      line-height: 1.8;
    }

    /* Contenedor de la firma y texto */
    .firma-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 40px;
    }

    .texto-asinatura {
      font-family: 'Cinzel', serif;
      color: #acacac;
      font-size: 2.2rem;
      margin-bottom: 5px;
      text-align: center;
      order: 1;
    }

    .asinatura {
      width: 180px;
      order: 2;
      margin-top: 0;
    }

    .asinatura img {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
    }

    /* WhatsApp */
    .link-whatsapp {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 999;
    }

    .link-whatsapp img {
      height: 60px;
      width: auto;
    }

    /* Footer */
    .footer {
      background: #222;
      color: white;
      font-family: 'Cinzel', serif;
      text-align: center;
      padding: 20px;
    }

    /* ========== RESPONSIVIDAD ========== */
    @media (max-width: 1200px) {
      .navbar {
        padding: 0 3%;
      }
      
      .menu {
        gap: 20px;
      }
      
      .menu li a {
        font-size: 1rem;
      }
    }

    @media (max-width: 992px) {
      .biografia-content {
        gap: 30px;
      }
      
      .biografia-text h3 {
        font-size: 1.6rem;
      }
      
      .biografia-text p {
        font-size: 1rem;
      }
    }

    @media (max-width: 768px) {
      /* Menú hamburguesa */
      .hamburger {
        display: flex;
      }
      
      .menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 220px;
        background: rgba(7, 8, 70, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        padding: 2rem;
        gap: 4rem;
      }
      
      .menu.active {
        right: 0;
      }
      
      .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      
      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }
      
      .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
      }
      
      /* Biografía */
      .biografia-content {
        flex-direction: column;
      }
      
      .biografia-img {
        margin-bottom: 30px;
        max-width: 100%;
      }
      
      .biografia-text {
        text-align: center;
        padding: 0;
      }
      
      .firma-container {
        margin-left: 0;
        margin-top: 30px;
      }
      
      .texto-asinatura {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 576px) {
      .navbar {
        padding: 0 4%;
      }
      
      .logo img {
        height: 40px;
      }
      
      .biografia h2 {
        font-size: 2rem;
        margin-bottom: 30px;
      }
      
      .biografia-text h3 {
        font-size: 1.4rem;
      }
      
      .texto-asinatura {
        font-size: 1.5rem;
      }
      
      .asinatura {
        width: 150px;
      }
      
      .link-whatsapp img {
        height: 50px;
      }
    }

    @media (max-width: 400px) {
      .biografia {
        padding: 20px 15px;
      }
      
      .biografia h2 {
        font-size: 1.8rem;
      }
      
      .biografia-text p {
        font-size: 0.9rem;
      }
      
      .texto-asinatura {
        font-size: 1.3rem;
      }
    }
