/* ===========================
   FUENTES PERSONALIZADAS
=========================== */
@font-face {
  font-family: 'Proxima Nova Bl';
  src: url('fonts/ProximaNova-Black.woff2') format('woff2'),
       url('fonts/ProximaNova-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova Rg';
  src: url('fonts/ProximaNova-Bold.woff2') format('woff2'),
       url('fonts/ProximaNova-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova Lt';
  src: url('fonts/ProximaNova-Light.woff2') format('woff2'),
       url('fonts/ProximaNova-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nelphim';
  src: url('fonts/NelphimItalic-Italic.woff2') format('woff2'),
       url('fonts/NelphimItalic-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

/* ===========================
   ESTILOS GENERALES / RESET
=========================== */
body {
  font-family: 'Proxima Nova Rg', sans-serif;
  background-color: #D1B9A9;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Proxima Nova Bl', sans-serif;
}

p, span, a, button, .btn {
  font-family: 'Proxima Nova Rg', sans-serif;
}

.scroll-offset {
  scroll-margin-top: 6rem;
}

/* ===========================
   UTILIDADES DE TEXTO / COLOR
=========================== */
.text-blanco {
  color: #FFFFFF;
}

.text-black {
  color: #000000;
}

.bg-black {
  background-color: #000000;
}


/* ===========================
   NAVBAR PERSONALIZADA
=========================== */
.custom-navbar {
  height: 6rem;
  background-color: #855F35;
  padding: 0;
  z-index: 1030;
}

@media (max-width: 767px) {
  .custom-navbar {
    height: 8rem;
  }
}

@media (max-width: 800px) {
  .custom-navbar.d-md-none {
    height: 12vh;
    min-height: 7rem;
  }
}

@media (max-width: 600px) {
  .custom-navbar.d-md-none {
    height: 15vh;
    min-height: 8rem;
  }
}

@media (max-width: 400px) {
  .custom-navbar.d-md-none {
    height: 20vh;
    min-height: 9rem;
  }
}

.sub-navbar {
  background-color: #855F35;
}

.navbar-brand-link {
  text-decoration: none;
}

.navbar-brand-name {
  font-family: 'Lora', serif;
  font-style: normal;
  font-size: 2.2rem;
  color: #FFFFFF;
  line-height: 1;
}

.navbar-brand-sub {
  font-family: 'Simonetta', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F3EDE0;
}

@media (max-width: 850px) {
  .navbar-brand-name {
    font-size: 1.6rem;
  }

  .navbar-brand-sub {
    font-size: 0.65rem;
  }
}

/* ===========================
   TIPOGRAFÍA DE SECCIONES
=========================== */
.section-title {
  font-family: 'Proxima Nova Bl', sans-serif;
  font-weight: 900;
}

.section-body {
  font-family: 'Proxima Nova Lt', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333333;
}

.seccion-label {
  font-family: 'Proxima Nova Lt', sans-serif;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: #855F35;
  text-transform: uppercase;
}

.seccion-label-blanco {
  font-family: 'Proxima Nova Lt', sans-serif;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: #A89184;
  text-transform: uppercase;
}

/* ===========================
   BOTONES PERSONALIZADOS
=========================== */
.btn-xs {
  font-size: 1.5rem;
  padding: 0.3rem 0.6rem;
  border-radius: 0.25rem;
}

@media (max-width: 1250px) {
  .btn-xs {
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  .btn-xs {
    padding: 0.1rem 0.3rem;
  }
}

.btn-wxs {
  font-size: 1.5rem;
  padding: 0.3rem 1.2rem;
  border-radius: 50rem;
}

@media (max-width: 1250px) {
  .btn-wxs {
    font-size: 1rem;
    padding: 0.3rem 1rem;
  }
}

@media (max-width: 500px) {
  .btn-wxs {
    padding: 0.2rem 0.8rem;
  }
}

/* Botón contorno blanco (navbar) */
.btn-contorno-blanco {
  border-radius: 999px;
  padding: 6px 16px;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  background: transparent;
}

.btn-contorno-blanco:hover {
  background-color: #A89184;
  border-color: #A89184;
  color: #FFFFFF;
}

/* Botón contorno gris (sobre fondo negro) */
.btn-contorno-gris {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 999px;
  padding: 6px 16px;
  background: transparent;
}

.btn-contorno-gris:hover {
  background-color: #A89184;
  border-color: #A89184;
  color: #000000;
}

/* Botones hero */
.btn-hero-outline {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  background: transparent;
  border-radius: 999px;
  padding: 0.65rem 2.2rem;
  font-family: 'Proxima Nova Lt', sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-hero-outline:hover {
  background: #FFFFFF;
  color: #000000;
}

.btn-hero-wa {
  background-color: #855F35;
  color: #FFFFFF;
  border: 1px solid #855F35;
  border-radius: 999px;
  padding: 0.65rem 2.2rem;
  font-family: 'Proxima Nova Lt', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.btn-hero-wa:hover {
  background-color: #C1A480;
  border-color: #C1A480;
  color: #FFFFFF;
}

/* Botón verde (sobre mí) */
.btn-verde {
  background-color: #855F35;
  color: #FFFFFF;
  border-radius: 999px;
  padding: 0.65rem 2rem;
  font-family: 'Proxima Nova Lt', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border: none;
  transition: background 0.3s;
}

.btn-verde:hover {
  background-color: #C1A480;
  color: #FFFFFF;
}

/* ===========================
   HERO
=========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/stock_chicas_horizontal.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.32);
  z-index: 0;
}

@media (max-width: 767px) {
  .hero-bg {
    background-image: url('img/stockchicas.webp');
    background-position: 50% 30%;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
}

.hero-dra {
  font-family: 'Proxima Nova Lt', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.45em;
  color: #F3EDE0;
  text-transform: uppercase;
  margin-bottom: 0;
}

.hero-name {
  font-family: 'Lora', serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(4rem, 12vw, 10rem);
  color: #FFFFFF;
  line-height: 0.9;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: 'Simonetta', serif;
  font-size: clamp(0.7rem, 1.8vw, 1rem);
  letter-spacing: 0.55em;
  color: #F3EDE0;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* ===========================
   MARQUEE BAND
=========================== */
.marquee-band {
  background-color: #000000;
  color: #FFFFFF;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
}

.marquee-track {
  display: inline-block;
  animation: marqueeScroll 35s linear infinite;
  font-family: 'Nelphim', serif;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.marquee-track-reverse {
  animation-direction: reverse;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================
   SECCIÓN SERVICIOS
=========================== */
.servicios-section {
  background-color: #D1B9A9;
}

/* ===========================
   ENCABEZADOS DE CATEGORÍA (TRATAMIENTOS)
=========================== */
.tratamiento-categoria-titulo {
  font-family: 'Proxima Nova Bl', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #855F35;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #855F35;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
  text-align: left;
}

.tratamiento-categoria-titulo:first-child {
  margin-top: 0;
}

/* ===========================
   FLIP CARDS
=========================== */
.flip-card {
  perspective: 1000px;
  height: 6rem;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
}

.flip-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.flip-card-front {
  background-color: #FFFFFF;
  z-index: 2;
  flex-direction: column;
}

.flip-card-back {
  background-color: #855F35;
  color: #F3EDE0;
  transform: rotateY(180deg);
}

.flip-card-back .card-text {
  color: #F3EDE0;
  font-family: 'Proxima Nova Lt', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Estrella decorativa en tarjetas */
.card-star {
  font-size: 1.1rem;
  color: #855F35;
  margin-bottom: 0.3rem;
  display: block;
}

/* ===========================
   SECCIÓN PRECIOS
=========================== */
.precios-section {
  background-color: #FFFFFF;
}


.precio-item {
  border-top: 1px solid #E0D9D0;
  gap: 1rem;
  break-inside: avoid;
}

@media (min-width: 768px) {
  #precios-contenedor {
    column-count: 2;
    column-gap: 3rem;
  }
}

.precio-nombre {
  font-family: 'Proxima Nova Lt', sans-serif;
  font-size: 1rem;
  color: #333333;
}

.precio-valor {
  font-family: 'Proxima Nova Rg', sans-serif;
  font-size: 1rem;
  color: #855F35;
  white-space: nowrap;
  font-weight: bold;
}

.precios-cargando {
  font-family: 'Proxima Nova Lt', sans-serif;
  color: #999;
  font-size: 0.9rem;
}

.precio-categoria-titulo {
  font-family: 'Proxima Nova Bl', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #855F35;
  margin-top: 2.5rem;
  margin-bottom: 0.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #855F35;
  column-span: all;
  break-inside: avoid;
  break-after: avoid;
  width: 100%;
}

/* ===========================
   SECCIÓN SOBRE MÍ
=========================== */
.sobre-mi-section {
  background-color: #D1B9A9;
}

.img-dra {
  border-radius: 4px;
  display: block;
  width: 80%;
  margin: 0 auto;
  object-fit: cover;
  max-height: 500px;
}

/* ===========================
   SECCIÓN CONTACTO
=========================== */
.contact-info p {
  font-family: 'Proxima Nova Lt', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #D0C9C0;
  margin-bottom: 0.4rem;
}

.contact-info strong {
  color: #FFFFFF;
}

.contact-bracket {
  font-family: 'Proxima Nova Rg', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #A89184 !important;
  text-transform: uppercase;
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
}

/* ===========================
   FOOTER
=========================== */
.footer-section {
  background-color: #000000;
}

.footer-bottom {
  font-family: 'Proxima Nova Lt', sans-serif;
  font-size: 0.8rem;
  color: #A89184;
  border-top: 1px solid #1a1a1a;
}


/* ===========================
   BOTÓN VOLVER ARRIBA
=========================== */
.btn-volver-arriba {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #A89184;
  color: #000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: none;
}

.btn-volver-arriba:hover {
  background-color: #C1A480;
  transform: scale(1.05);
}
