body {
    font-family: 'Hemi Head', sans-serif;
    background-image: url('images/InShot_20250305_101445569.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  .styled-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-width: 100vw;
    height: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    padding: 0 50px;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
    z-index: 1000;
    border-bottom: 2px solid #f12400;
    box-sizing: border-box;
  }
  
  .styled-header .logo img {
    height: 80px;
    transition: transform 0.3s ease;
  }
  
  .styled-header .logo img:hover {
    transform: scale(1.05);
  }
  
  .main-nav ul {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
  }
  
  .main-nav ul li a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
  }
  
  .main-nav ul li a.active,
  .main-nav ul li a:hover {
    color: #f12400;
  }
  
  /* Hamburger Menu (mobile) */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
    width: 32px;
    height: 32px;
    justify-content: center;
    transition: transform 0.3s;
  }
  .hamburger span {
    width: 100%;
    height: 4px;
    background-color: #f12400;
    border-radius: 2px;
    transition: 0.3s;
    display: block;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  @media (max-width: 900px) {
    .styled-header {
      padding: 0 12px;
    }
    .main-nav ul {
      gap: 24px;
    }
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
    .main-nav {
      display: none;
      position: absolute;
      top: 110px;
      left: 0;
      width: 100%;
      background-color: #000;
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
    }
    .main-nav.show {
      display: flex;
    }
    .main-nav ul {
      flex-direction: column;
      gap: 15px;
    }
  }
  
  section#integrantes {
    background: rgba(0,0,0,0.80);
    border-radius: 10px;
    padding: 45px 20px 30px 20px;
    margin: 140px auto 32px auto;
    width: 92%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 32px #0008;
  }
  
  .integrantes-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  
  .integrantes-foto {
    width: 100%;
    max-width: 850px;
    border-radius: 13px;
    box-shadow: 0 4px 20px #0007;
    margin-bottom: 10px;
  }
  
  .integrantes-legenda {
    color: #fff;
    font-size: 1.17rem;
    background: #181818e0;
    border-radius: 10px;
    padding: 18px 10px 10px 10px;
    margin: 0 auto;
    max-width: 410px;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 10px #0007;
  }
  .integrantes-legenda strong {
    color: #f12400;
    font-family: inherit;
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  h1 {
    color: #f12400;
    font-size: 2.1rem;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 28px;
    margin-top: 0;
  }

  .lightbox-integrantes {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .lightbox-integrantes.open {
    display: flex;
    animation: lightboxFadeIn 0.2s;
  }
  @keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .lightbox-img {
    max-width: 94vw;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 6px 44px #000a;
    margin-bottom: 10px;
    background: #181818;
  }
  .lightbox-close {
    position: absolute;
    top: 28px;
    right: 36px;
    font-size: 3.1rem;
    color: #f12400;
    background: #000b;
    border: none;
    border-radius: 50%;
    padding: 3px 17px 7px 17px;
    cursor: pointer;
    z-index: 3011;
    transition: background 0.18s, color 0.18s;
    line-height: 1;
  }
  .lightbox-close:hover { color: #fff; background: #f12400; }
  


  .footer-content {
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .footer-social {
    background-color: #000;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 18px;
    margin-top: 6px;
  }
  .footer-social a {
    background-color: #111;
    padding: 13px;
    border-radius: 50%;
    margin: 0 6px;
    text-decoration: none !important;
    outline: none;
    box-shadow: none;
    display: inline-block;
    transition: background 0.23s;
  }
  .footer-social a i {
    font-size: 26px;
    color: #f12400;
    transition: color 0.3s, transform 0.3s;
  }
  .footer-social a:hover i {
    text-decoration: underline;
    color: #ff4c4c;
    transform: scale(1.18);
  }
  
  .footer-logo {
    width: 150px;   /* antes era 160px */
    height: auto;
    margin-bottom: 12px;
  }
  
  .footer-links {
    margin-top: 12px;
    color: #bbb;
    font-size: 15px;
    margin-bottom: 15px;
  }
  .footer-links a {
    color: #f12400;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: darkred;
  }

  footer {
    text-align: center;
    padding: 40px 5px;
    background-color: #000000;
    color: #888;
    font-size: 14px;
    margin-top: 50px;
    border-top: 2px solid #f12400;
    margin-bottom: auto;
  }
  
  footer a {
      color: #f12400;
      text-decoration: none;
      font-weight: bold;
  }
  
  footer a:hover{
      color: #ff4c4c;
  }
  
  @media (max-width: 700px) {
    .hamburger {
      display: flex;
    }
    .main-nav {
      display: none;
      position: absolute;
      top: 110px;
      left: 0;
      width: 100%;
      background-color: #000;
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
    }
    .main-nav.show {
      display: flex;
    }
    .main-nav ul {
      flex-direction: column;
      gap: 15px;
    }
    .main-nav ul li a {
      font-size: 20px;
    }
    section#integrantes {
      width: 100vw !important;
      max-width: 100vw !important;
      border-radius: 0;
      padding: 20px 0;
      margin: 130px 0 18px 0;
      box-sizing: border-box;
    }
    .integrantes-foto, .integrantes-legenda {
      max-width: 98vw;
    }
    .integrantes-legenda {
      font-size: 1rem;
      padding: 13px 4vw 7px 4vw;
    }
  }
