.paula-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(90deg, #181818 20%, #F54886 100%);
  box-shadow: 0 2px 16px #0001;
  border-radius: 0 0 1.2rem 1.2rem;
  margin-bottom: 0rem;
  position: relative;
  z-index: 1000;
}

.paula-header-logo {
  flex: 1 1 auto;
}

.paula-logo-link {
  text-decoration: none;
}

.paula-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #e6394620;
}

/* Menú hamburguesa - oculto por defecto */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Animación del menú hamburguesa */
.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.paula-header-nav {
  display: flex;
  gap: 1.2rem;
}

.paula-header-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: white;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: .4rem;
  transition: background .2s, color .2s;
  text-align: center;
  text-decoration: none;
}

.paula-header-nav a:hover {
  background: black;
  color: white;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .paula-header {
    padding: 1rem 1.5rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .paula-header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: linear-gradient(90deg, #181818 20%, #F54886 100%) !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding-top: 80px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  }
  
  .paula-header-nav.active {
    right: 0;
  }
  
  .paula-header-nav a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 80%;
    text-align: center;
    border-radius: 8px;
  }
}


/* Tablet */
@media (max-width: 900px) and (min-width: 769px) {
  .paula-header {
    padding: 1.2rem 2rem;
  }
  
  .paula-header-nav {
    gap: 1rem;
  }
  
  .paula-header-nav a {
    font-size: 1rem;
    padding: .4rem .8rem;
  }
}
