body {
    margin: 0;
    font-family: 'Bodogrotesk Vf', sans-serif;
  }
  
  .site-header {
    background: white;
    border-bottom: 1px solid #eaeaea;
    padding: 16px 0;
    position: fixed;
    z-index: 99999999;
    width: 100%;
  }
  .header-left a.logo{
    border-right: 1px solid black;
    padding-right: 45px;
  }
  .header-left{
    display: flex
    ;
        align-items: center;
        gap: 50px;
  }
  .site-header .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo img {
    display: block;
  }
  
  .main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
  }
  
  .main-nav a {
    text-decoration: none;
    color: #002438;
    font-weight: 500;
    position: relative;
  }
  
  .has-dropdown {
    position: relative;
  }
  
  .has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    z-index: 10;
  }
  
  .has-dropdown:hover .dropdown {
    display: block;
  }
  
  .dropdown li {
    padding: 6px 20px;
    white-space: nowrap;
  }
  
  .dropdown li a {
    color: #002438;
    display: block;
    text-decoration: none;
  }
  
  .header-right .btn-outline {
    border: 2px solid #002438;
    color: #002438;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  
  .header-right .btn-outline:hover {
    background: #002438;
    color: white;
  }
  
  /* Estilos base para hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #002438;
  border-radius: 3px;
}

/* Responsive: desde 1024px hacia abajo */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .nav-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    display: none;
    flex-direction: column;
    padding: 16px 24px;
  }
  .header-right {
    display: none;
  }
  .nav-wrapper.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .header-left {
    justify-content: space-between;
    width: 100%;
  }

  .has-dropdown .dropdown {
    position: static;
    box-shadow: none;
    border: none;
  }
}