:root {
    --primary-color: #f7698a;
    --secondary-color: #ffd6e0;
    --dark-color: #333;
    --light-color: #f3e5e5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*HEADER*/
.header {
  position: sticky;
  top: 0;
  background: #ffcacae3;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 28px; /*mantiene el nav separado del borde derecho */
}

/*ESTO ES NUEVO*/
/* Izquierda: marca */
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--secondary-color);
}
.brand-text { line-height: 1.1; }
.brand-title {
  margin: 0;
  font-size: 1.9rem;
  color: var(--primary-color);
}
.brand-subtitle {
  margin: 2px 0 0;
  font-size: 0.95rem;
  color: var(--dark-color);
  font-style: italic;
}

/* 
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.hamburguesa{
    padding: 20px;
}

.header-left {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-left::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 50px;
    height: 50px;
    border-radius: 30%;
    z-index: 0;
}
.header-left i {
    position: relative;
    z-index: 1;
}

.header-center {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.header-center h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}
.header-center h2 {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-style: italic;
    margin: 0;
}

.header-right {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
}
.header-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/*NUEVO NAV*/
/* Derecha: nav */
.navbar {
  margin-left: auto;
  padding-right: 8px; /* evita pegarse al borde */
}
.nav-items {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 18px;
  transition: background .2s ease, color .2s ease;
}
.nav-item a:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Hamburguesa (móvil) */
.hamburger-menu {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--dark-color);
  background: transparent;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .brand-title { font-size: 1.6rem; }
  .brand-subtitle { font-size: 0.8rem; }

  .hamburger-menu { display: inline-flex; }
  .nav-items {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    flex-direction: column;
    gap: 8px;
    background: var(--secondary-color);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .nav-items.active { display: flex; }
}




/*NAV*/
/* 
.navbar {
    background: var(--secondary-color);
    padding: 1px 0;
    margin-top: 30px;
    border-radius: 40px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.nav-items {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
}
.nav-item a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
}

.nav-item a:hover {
    background: var(--primary-color);
    color: var(--light-color);
}


.hamburger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

@media (max-width: 768px) {

    div a h1,
    div a h2 {
        margin-left: 50px;
        margin-right: 50px;
    }

    .hamburger-menu { display: block; }
    .header-center h1 { font-size: 1.8rem; }
    .header-center h2 { font-size: 0.7rem; }
    .nav-items {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        padding: 10px 0;
        z-index: 1000;
    }
    .nav-items.active { display: flex; }
    .nav-item { margin: 10px 0; text-align: center; }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .swiper-slide { width: 50% !important; }
} */