@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Open+Sans:wght@300;400;600;800&display=swap');

:root {
  --fuente-uno: 'Lora', serif;
  --fuente-dos: 'Open Sans', sans-serif;
  --crema: #f5f5dc;
  --azul: #6d8299;
  --dorado: #ffd158;
  --gris-oscuro: #242424;
}

/* RESET Y BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: #583a1172;
  line-height: 1.6;
  overflow: hidden; /* Prevenir scroll durante carga */
}

body.loaded {
  overflow: auto; /* Restaurar scroll después de cargar */
}

/* LOADER */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: all 0.6s ease-in-out;
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-circle {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 209, 88, 0.3);
  border-top: 4px solid var(--dorado);
  border-radius: 50%;
  animation: loaderSpin 1s linear infinite;
}

.loader-dots span {
  width: 12px;
  height: 12px;
}

@keyframes loaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fuente-uno);
}

a, p, span, li, input, textarea, select, button {
  font-family: var(--fuente-dos);
  text-decoration: none;
}

ul, li {
  list-style: none;
}

/* UTILIDADES */
.separator {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  background-image: url("https://transparenttextures.com/patterns/beige-paper.png");
  gap: 2rem;
}

.separator::before,
.separator::after {
  content: '';
  height: 1px;
  width: 30%; 
  background: var(--dorado);
  opacity: 0.6;
}

.separator span {
  color: var(--dorado);
  font-size: 1.5rem;
  opacity: 0.8;
}

/* NAVBAR ORIGINAL DESKTOP */
header {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("https://transparenttextures.com/patterns/beige-paper.png");
  background-color: #7a571f81;
  background-size: auto;
  position: relative;
  z-index: 1000;
}

nav {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.links {
  width: 100%;
  display: flex;
  justify-content: space-around;
  font-weight: bold;
}

.btn {
  border-radius: 32px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  border: none;
  background: transparent;
  color: var(--crema);
  position: relative;
  overflow: hidden;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
}

.btn::before {
  content: "";
  position: absolute;
  left: 0; 
  top: 0;
  width: 0; 
  height: 100%;
  background: var(--dorado);
  z-index: -1;
  transition: width .4s cubic-bezier(.4,0,.2,1);
  border-radius: 32px;
}

.btn:hover::before {
  width: 100%;
}

.btn:hover {
  color: var(--gris-oscuro);
  transform: scale(1.03) translateY(-2px);
}

.k {
  transform: translateX(-3%);
}

.logo img {
  width: 150px;
}

/* BOTÓN HAMBURGUESA - OCULTO EN DESKTOP */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  transition: transform 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--crema);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.hamburger-menu:hover {
  transform: scale(1.1);
}

/* Animación hamburguesa activa */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background: var(--dorado);
}

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

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: var(--dorado);
}

/* OVERLAY MOBILE */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 998;
  backdrop-filter: blur(4px);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MENÚ MOBILE */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--azul);
  background-image: url("https://transparenttextures.com/patterns/beige-paper.png");
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-logo {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 2rem;
}

.mobile-logo img {
  width: 120px;
  filter: brightness(1.1);
}

.mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem;
  color: var(--crema);
  text-decoration: none;
  font-family: var(--fuente-dos);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 209, 88, 0.1);
}

.mobile-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 88, 0.15), transparent);
  transition: left 0.6s ease;
}

.mobile-link:hover::before {
  left: 100%;
}

.mobile-link:hover {
  background: rgba(255, 209, 88, 0.15);
  color: var(--dorado);
  transform: translateX(8px);
  border-color: rgba(255, 209, 88, 0.3);
}

.mobile-link-text {
  letter-spacing: 1px;
}

.mobile-link-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--dorado);
}

.mobile-link:hover .mobile-link-icon {
  transform: translateX(5px);
}

.mobile-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 209, 88, 0.2);
}

.mobile-footer p {
  color: var(--crema);
  font-family: var(--fuente-uno);
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.8;
  letter-spacing: 2px;
}

/* BOTÓN PARA HERO */
.btn2 {
  border-radius: 32px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  border: 2px solid var(--dorado);
  background: linear-gradient(45deg, transparent, rgba(255,209,88,0.1));
  color: var(--dorado);
  position: relative;
  overflow: hidden;
  padding: 12px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 2rem;
  text-decoration: none;
}

.btn2:hover {
  color: var(--gris-oscuro);
  border-color: var(--dorado);
  background: var(--dorado);
  transform: translateY(-2px);
}

/* HERO */
.hero {
  position: relative;
  height: calc(100vh - 150px);
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(90deg, var(--verde), var(--dorado));
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-image: url("https://transparenttextures.com/patterns/beige-paper.png");
  background-size: auto;
  opacity: 1;
  mix-blend-mode: soft-light;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--crema);
  animation: fadeIn 1.5s ease-out;
}

.hero-logo {
  width: 300px;
  margin-bottom: 2rem;
}

.titulo {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 20px;
  font-weight: 200;
  color: var(--crema);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* INFO */
.info {
  min-height: 100vh;
  padding: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  background-color: #fff;
  background-image: url("https://transparenttextures.com/patterns/beige-paper.png");
  background-size: auto;
  position: relative;
}

.info-content {
  flex: 1;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-content h1 {
  font-family: var(--fuente-uno);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--gris-oscuro);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  position: relative;
}

.info-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--dorado);
}

.info-content .subtitle {
  font-family: var(--fuente-uno);
  font-style: italic;
  color: var(--gris-oscuro);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gris-oscuro);
  opacity: 0.85;
  font-weight: 300;
}

.info-text {
  font-family: var(--fuente-uno);
  font-style: italic;
  color: var(--gris-oscuro);
  margin-top: 2rem;
  line-height: 1.8;
  font-size: 1.2rem;
  opacity: 0.9;
}

.info-text p:last-child {
  margin-top: 0.5rem;
}

.info-image {
  flex: 1;
  max-width: 45%;
  height: 650px;
  position: relative;
}

.info-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: top right;
  border-radius: 8px;
}

/* RESEÑAS */
.reseñas-section-horizontal {
  padding: 6rem 8rem;
  background-color: #fff;
  background-image: url("https://transparenttextures.com/patterns/beige-paper.png");
}

.reseñas-section-horizontal h3 {
  font-family: var(--fuente-uno);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gris-oscuro);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.reseñas-section-horizontal h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--dorado);
}

.reseñas-container-horizontal {
  display: flex;
  gap: 2rem;
  max-width: 1400px;
  margin: 4rem auto 0;
}

.reseña-card {
  background: var(--azul);
  background-image: url("https://transparenttextures.com/patterns/beige-paper.png"); 
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid rgba(255, 209, 88, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reseña-card:hover {
  transform: translateY(-5px);
}

.reseña-card.medium {
  flex: 1;
  min-height: 250px;
}

.reseña-card.large {
  flex: 1.5;
  min-height: 250px;
}

.stars {
  color: var(--dorado);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.reseña-text {
  font-family: var(--fuente-dos);
  font-style: italic;
  color: var(--gris-oscuro);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.reseña-card.large .reseña-text {
  font-size: 1rem;
}

.reseña-card.medium .reseña-text {
  font-size: 0.95rem;
}

.cliente-info {
  text-align: center;
  border-top: 1px solid rgba(255, 209, 88, 0.3);
  padding-top: 1rem;
}

.cliente-info strong {
  display: block;
  font-family: var(--fuente-uno);
  color: var(--gris-oscuro);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.cliente-info span {
  font-family: var(--fuente-dos);
  color: var(--dorado);
  font-size: 0.85rem;
  font-weight: 500;
}

/* TRATAMIENTOS */
.tratamientos {
  padding: 8rem;
  background-color: #fff;
  background-image: url("https://transparenttextures.com/patterns/beige-paper.png");
}

.tratamientos h2 {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gris-oscuro);
  text-align: center;
  margin-bottom: 1rem;
}

.tratamientos .subtitle {
  font-family: var(--fuente-uno);
  font-style: italic;
  color: var(--gris-oscuro);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 4rem;
}

.parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  padding: 2rem;
  max-width: 1700px; 
  margin: 0 auto;
  height: 800px; 
}

.div1 { grid-area: 1 / 4 / 5 / 5; background-image: url('/media/1.webp'); }
.div2 { grid-area: 5 / 1 / 7 / 3; background-image: url('/media/2.webp'); }
.div3 { grid-area: 5 / 3 / 7 / 5; background-image: url('/media/3.webp'); }
.div4 { grid-area: 3 / 2 / 5 / 4; background-image: url('/media/4.webp'); }
.div5 { grid-area: 3 / 1 / 5 / 2; background-image: url('/media/5.webp'); }
.div6 { grid-area: 1 / 1 / 3 / 3; background-image: url('/media/7.webp'); }
.div7 { grid-area: 1 / 3 / 3 / 4; background-image: url('/media/6.webp'); }

.parent > div {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
  width: 100%;
}

.parent > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
  transition: opacity 0.3s ease;
  opacity: 0.5;
}

.parent > div:hover::before {
  opacity: 0.8;
}

.treatment-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  color: var(--crema);
  transition: all 0.3s ease;
  z-index: 2;
}

.treatment-content h3 {
  font-size: 1.6rem;
  color: var(--azul);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
  line-height: 1.2;
}

.treatment-content .ideal {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--crema);
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  text-align: center;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  text-align: center;
  opacity: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.details p {
  margin-bottom: 0.8rem;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  font-size: 0.8rem;
  color: var(--crema);
}

.details .duration {
  font-weight: 600;
  color: var(--azul);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.parent > div:hover .treatment-content h3 {
  transform: scale(0.9);
  opacity: 0.7;
}

.parent > div:hover .treatment-content .ideal {
  transform: scale(0.9);
  opacity: 0.5;
}

.parent > div:hover .details {
  opacity: 1;
}

.agendar-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--azul);
  color: var(--gris-oscuro);
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.agendar-btn:hover {
  background-color: #fff;
  transform: translateY(-2px);
}

/* ANIMACIONES PARA AGENDADO DE TURNOS */
.form-input.highlight,
.form-textarea.highlight,
.form-select.highlight {
  animation: highlightField 2s ease-out;
}

@keyframes highlightField {
  0% {
    background: rgba(255, 209, 88, 0.2);
    border-color: var(--dorado);
    transform: scale(1.02);
  }
  50% {
    background: rgba(255, 209, 88, 0.1);
    border-color: var(--dorado);
    transform: scale(1.01);
  }
  100% {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(109, 130, 153, 0.3);
    transform: scale(1);
  }
}

.appointment-notification {
  animation: slideInNotification 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInNotification {
  0% {
    transform: translateX(100%) scale(0.8);
    opacity: 0;
  }
  70% {
    transform: translateX(-5%) scale(1.02);
    opacity: 0.9;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

/* PRODUCTOS */
.productos {
  padding: 8rem;
  background-color: #fff;
  background-image: url("https://transparenttextures.com/patterns/beige-paper.png");
}

.productos h2 {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gris-oscuro);
  text-align: center;
  margin-bottom: 1rem;
}

.productos .subtitle {
  font-family: var(--fuente-uno);
  font-style: italic;
  color: var(--gris-oscuro);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 4rem;
}

.slider-container {
  position: relative;
  max-width: 900px; /* Reducido para hacer más estrecho */
  margin: 0 auto;
  overflow: visible; /* Cambiado para mostrar previews */
  border-radius: 20px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 600px; /* Aumentado para ser más vertical */
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.slider-track {
  display: flex;
  width: 500%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0); /* Iniciar en la primera tarjeta */
}

.product-card {
  position: relative;
  width: 20%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: all 0.4s ease;
  margin: 0 10px; /* Separación entre tarjetas */
  border-radius: 20px;
  transform: scale(0.85); /* Tarjetas inactivas más pequeñas */
  opacity: 0.6;
}

.product-card.active {
  transform: scale(1); /* Tarjeta activa tamaño normal */
  opacity: 1;
  z-index: 5;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.product-card:not(.active):hover {
  transform: scale(0.9); /* Ligero aumento en hover para inactivas */
  opacity: 0.8;
}

.product-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
  transition: background 0.3s ease;
  z-index: 1;
}

.product-card:hover::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.9) 100%);
}

.product-card:hover .product-background {
  transform: scale(1.05);
}

.product-content {
  position: relative;
  z-index: 2;
  color: var(--crema);
  padding: 2.5rem;
  width: 100%;
  transform: translateY(20px);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.product-card:hover .product-content {
  transform: translateY(0);
  opacity: 1;
}

.product-content h3 {
  font-family: var(--fuente-uno);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dorado);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.product-content p {
  font-family: var(--fuente-dos);
  font-size: 0.95rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  padding-bottom: 1rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 209, 88, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gris-oscuro);
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--dorado);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: -25px; /* Movido hacia afuera */
}

.slider-btn.next {
  right: -25px; /* Movido hacia afuera */
}

.slider-btn span {
  display: block;
  line-height: 1;
  position: relative;
}

.slider-btn.prev span {
  margin-right: 2px;
}

.slider-btn.next span {
  margin-left: 2px;
}

.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: var(--dorado);
  border-color: var(--crema);
  transform: scale(1.2);
}

/* FOOTER INDEPENDIENTE CON ESTILO DE CONTACTO */
.footer-section {
  background: var(--azul);
  background-image: url("https://transparenttextures.com/patterns/beige-paper.png");
  padding: 2rem;
}



.footer-content {
  display: flex;  
  justify-content: space-between; 
  align-items: start; 
  gap: 2rem;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-brand {
  width: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 25dvh;   
  margin-bottom: 1.5rem;
  padding: 8px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
}

.footer-brand h3 {
  font-family: var(--fuente-uno);
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--crema);
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-brand p {
  font-family: var(--fuente-dos);
  color: var(--crema);
  opacity: 0.85;
  line-height: 1.7; 
  font-size: 1.2rem;
  font-weight: 300; 
}

.footer-nav {
  width: 500px;
  text-align: center;
}

.footer-nav h4 {
  font-family: var(--fuente-uno);
  font-size: 1.6rem;
  color: var(--crema);
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-nav a {
  width: 40dvh; 
  color: var(--crema);
  text-decoration: none;
  display: flex;
  align-items: center; 
  justify-content: center;
  font-family: var(--fuente-dos);
  font-weight: 400;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 209, 88, 0.2);
  position: relative;
  overflow: hidden;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 88, 0.15), transparent);
  transition: left 0.5s ease;
}

.footer-nav a:hover::before {
  left: 100%;
}

.footer-nav a:hover {
  background: var(--dorado);
  color: var(--gris-oscuro);
  border-color: var(--dorado);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 209, 88, 0.4);
}

.nav-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
} 
.footer-contact {
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center ;
  justify-content: center; 
}

.footer-contact h4 {
  font-family: var(--fuente-uno);
  font-size: 1.6rem;
  color: var(--crema);
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.footer-mail,
.footer-phone,
.footer-address {
  color: var(--crema);
  font-family: var(--fuente-dos);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  opacity: 0.9;
}

.footer-mail:hover,
.footer-phone:hover,
.footer-address:hover {
  color: var(--dorado);
  transform: translateX(-8px);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--crema);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 209, 88, 0.3);
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--dorado);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.footer-social a:hover::before {
  width: 100%;
  height: 100%;
}

.footer-social a:hover {
  color: var(--gris-oscuro);
  transform: translateY(-4px) scale(1.1);
  border-color: var(--dorado);
  box-shadow: 0 8px 25px rgba(255, 209, 88, 0.4);
}

.footer-social a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  z-index: 1;
  position: relative;
}

.footer-copy {
  text-align: center;
  color: var(--crema);
  font-family: var(--fuente-dos);
  font-size: 0.95rem;
  opacity: 0.7;
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 209, 88, 0.2);
  line-height: 1.6;
}

.footer-copy a {
  color: var(--dorado);
  transition: all 0.2s ease;
}

.footer-copy a:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--dorado);
}

/* CONTACTO */
.contacto {
  padding: 8rem;
  background: var(--azul);
  background-image: url("https://transparenttextures.com/patterns/beige-paper.png");
  background-size: auto;
  position: relative;
  overflow: hidden;
}

.contacto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://transparenttextures.com/patterns/beige-paper.png");
  opacity: 0.1;
  pointer-events: none;
}

.contacto h2 {
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--crema);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.contacto-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 4rem auto 0;
  position: relative;
  z-index: 2;
  align-items: start;
}

/* Mapa */
.contacto-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  height: 100%;
  min-height: 580px;
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 209, 88, 0.05) 0%,
    rgba(138, 154, 91, 0.05) 50%,
    rgba(109, 130, 153, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.map-decoration {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(255, 209, 88, 0.2);
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  filter: grayscale(10%) contrast(1.05);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(1.1);
}

/* Formulario */
.contacto-form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 209, 88, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  height: 100%;
  min-height: 580px;
  display: flex;
  flex-direction: column;
}

.form-title {
  font-family: var(--fuente-uno);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gris-oscuro);
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-subtitle {
  font-family: var(--fuente-dos);
  font-size: 0.95rem;
  color: var(--gris-oscuro);
  opacity: 0.7;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-family: var(--fuente-dos);
  font-weight: 500;
  color: var(--gris-oscuro);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-label.required::after {
  content: ' *';
  color: #e74c3c;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(109, 130, 153, 0.3);
  border-radius: 8px;
  font-family: var(--fuente-dos);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease;
  resize: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--dorado);
  background: rgba(255, 255, 255, 1);
}

.form-textarea {
  height: 100px;
  resize: vertical;
  min-height: 80px;
  max-height: 150px;
}

.char-counter {
  position: absolute;
  bottom: -18px;
  right: 0;
  font-size: 0.75rem;
  color: var(--gris-oscuro);
  opacity: 0.6;
}

.char-counter.warning {
  color: #f39c12;
  opacity: 1;
}

.char-counter.error {
  color: #e74c3c;
  opacity: 1;
  font-weight: 500;
}

.form-button {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--dorado);
  border: none;
  border-radius: 8px;
  font-family: var(--fuente-dos);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gris-oscuro);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.form-button:hover {
  background: #e6c04f;
  transform: translateY(-1px);
}

.form-button:active {
  transform: translateY(0);
}

.form-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Validación de errores */
.form-group.error .form-input,
.form-group.error .form-textarea,
.form-group.error .form-select {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.error-message {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  font-weight: 400;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

/* Validación de éxito */
.form-group.success .form-input,
.form-group.success .form-textarea {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.05);
}

/* Iconos sociales */
.social-contact {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(109, 130, 153, 0.2);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: var(--gris-oscuro);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(109, 130, 153, 0.2);
}

.social-link:hover {
  background: var(--dorado);
  transform: translateY(-2px);
  border-color: var(--dorado);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* RESPONSIVE GENERAL */

@media (max-width: 1200px) {
  /* Adaptación web - mantener parentesco con versión desktop */
  .info, .tratamientos, .productos, .contacto {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  
  .footer-section {
    padding: 4rem 4rem 2rem 4rem;
  }
  
  .footer-content {
    gap: 3rem;
  }
  
  /* Ajustes en navbar original */
  .logo img {
    width: 130px;
  }
  
  .btn {
    padding: 8px 24px;
    font-size: 0.9rem;
  }
  
  /* Ajustes en hero */
  .hero-logo {
    width: 250px;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
    letter-spacing: 15px;
    margin-bottom: 5rem;
  }
  
  /* Ajustes en info */
  .info {
    padding: 6rem 4rem;
    gap: 4rem;
  }
  
  .info-content h2 {
    font-size: 3rem;
  }
  
  .info-image {
    height: 550px;
  }
  
  .info-image img {
    height: 600px;
  }
  
  /* Ajustes en tratamientos */
  .tratamientos {
    padding: 6rem 4rem;
  }
  
  .tratamientos h2 {
    font-size: 3rem;
  }
  
  .parent {
    max-width: 1400px;
    height: 700px;
  }
  
  /* Ajustes en productos */
  .productos {
    padding: 6rem 4rem;
  }
  
  .productos h2 {
    font-size: 3rem;
  }
  
  .slider-container {
    max-width: 800px;
  }
  
  .slider-wrapper {
    height: 550px;
  }
  
  /* Ajustes en reseñas */
  .reseñas-section-horizontal {
    padding: 5rem 4rem;
  }
  
  .reseñas-section-horizontal h3 {
    font-size: 3rem;
  }
  
  /* Ajustes en contacto */
  .contacto {
    padding: 6rem 4rem;
  }
  
  .contacto h2 {
    font-size: 3.2rem;
  }
  
  /* Ajustes en footer */
  .footer-brand {
    width: 400px;
  }
  
  .footer-nav {
    width: 400px;
  }
  
  .footer-contact {
    width: 400px;
  }
  
  .footer-logo {
    width: 20dvh;
  }
  
  .footer-nav a {
    width: 35dvh;
  }
}

@media (max-width: 768px) {
  /* Funcionalidades para tablet - menú hamburguesa activo */
  
  /* NAVBAR TABLET - ACTIVAR RESPONSIVE */
  .links {
    display: none;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .logo img {
    width: 120px;
  }
  
  /* MOBILE NAV TABLET */
  .mobile-nav {
    max-width: 350px;
  }
  
  .mobile-link {
    padding: 1.2rem 1.2rem;
    font-size: 1rem;
  }
  
  /* HERO TABLET */
  .hero-logo {
    width: 200px;
  }
  
  .hero-content h2 {
    font-size: 2rem;
    letter-spacing: 10px;
    margin-bottom: 4rem;
  }
  
  .btn2 {
    padding: 10px 28px;
    font-size: 0.9rem;
  }
  
  /* INFO TABLET */
  .info {
    flex-direction: column;
    padding: 5rem 3rem;
    gap: 3rem;
    text-align: center;
  }
  
  .info-content {
    max-width: 100%;
  }
  
  .info-content h2 {
    font-size: 2.8rem;
  }
  
  .info-image {
    max-width: 100%;
    height: 400px;
  }
  
  .info-image img {
    height: 400px;
    object-position: center;
  }
  
  /* RESEÑAS TABLET */
  .reseñas-section-horizontal {
    padding: 4rem 3rem;
  }
  
  .reseñas-section-horizontal h3 {
    font-size: 2.5rem;
  }
  
  .reseñas-container-horizontal {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .reseña-card.medium,
  .reseña-card.large {
    min-height: 200px;
  }
  
  /* TRATAMIENTOS TABLET */
  .tratamientos {
    padding: 5rem 3rem;
  }
  
  .tratamientos h2 {
    font-size: 2.8rem;
  }
  
  .parent {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    height: 900px;
    padding: 1rem;
  }
  
  .div1 { grid-area: 1 / 1 / 2 / 2; }
  .div2 { grid-area: 1 / 2 / 2 / 3; }
  .div3 { grid-area: 2 / 1 / 3 / 2; }
  .div4 { grid-area: 2 / 2 / 3 / 3; }
  .div5 { grid-area: 3 / 1 / 4 / 2; }
  .div6 { grid-area: 3 / 2 / 4 / 3; }
  .div7 { grid-area: 4 / 1 / 5 / 3; }
  
  .treatment-content h3 {
    font-size: 1.4rem;
  }
  
  .treatment-content .ideal {
    font-size: 0.75rem;
  }
  
  .details p {
    font-size: 0.75rem;
  }
  
  .agendar-btn {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }
  
  /* PRODUCTOS TABLET */
  .productos {
    padding: 5rem 3rem;
  }
  
  .productos h2 {
    font-size: 2.8rem;
  }
  
  .slider-container {
    max-width: 700px;
  }
  
  .slider-wrapper {
    height: 500px;
  }
  
  .product-content h3 {
    font-size: 1.5rem;
  }
  
  .product-content p {
    font-size: 0.9rem;
  }
  
  /* CONTACTO TABLET */
  .contacto {
    padding: 5rem 3rem;
  }
  
  .contacto h2 {
    font-size: 3rem;
  }
  
  .contacto-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contacto-map {
    min-height: 350px;
  }
  
  .contacto-form {
    min-height: auto;
  }
  
  /* FOOTER TABLET */
  .footer-section {
    padding: 4rem 3rem 2rem 3rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-brand,
  .footer-nav,
  .footer-contact {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-brand h3 {
    font-size: 2.2rem;
  }
  
  .footer-logo {
    width: 18dvh;
  }
  
  .footer-nav a {
    width: 50dvh;
  }
  
  /* SEPARADORES TABLET */
  .separator {
    height: 25px;
  }
  
  .separator span {
    font-size: 1.3rem;
  }
  
  /* TÍTULOS GENERALES TABLET */
  h2 {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 480px) {
  /* Comodidad mobile - experiencia de usuario optimizada */
  
  /* GENERAL MOBILE */
  .info, .tratamientos, .productos, .contacto {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  /* NAVBAR MOBILE */
  header {
    height: 120px;
  }
  
  .logo img {
    width: 100px;
  }
  
  .hamburger-menu {
    width: 26px;
    height: 26px;
  }
  
  .hamburger-line {
    height: 2px;
  }
  
  /* MOBILE NAV MOBILE */
  .mobile-nav {
    max-width: 100%;
    width: 100%;
  }
  
  .mobile-nav-content {
    padding: 1.5rem;
  }
  
  .mobile-logo {
    margin-bottom: 2rem;
    margin-top: 1rem;
  }
  
  .mobile-logo img {
    width: 100px;
  }
  
  .mobile-link {
    padding: 1rem 1rem;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
  
  .mobile-link-icon {
    font-size: 1.3rem;
  }
  
  .mobile-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  
  .mobile-footer p {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  /* HERO MOBILE */
  .hero {
    height: calc(100vh - 120px);
  }
  
  .hero-logo {
    width: 150px;
    margin-bottom: 1.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: 3rem;
  }
  
  .btn2 {
    padding: 8px 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
  
  /* INFO MOBILE */
  .info {
    padding: 4rem 1.5rem;
    gap: 2rem;
  }
  
  .info-content h1 {
    font-size: 2.2rem;
  }
  
  .info-content .subtitle {
    font-size: 1.2rem;
  }
  
  .text-content p {
    font-size: 1rem;
  }
  
  .info-text {
    font-size: 1.1rem;
  }
  
  .info-image {
    height: 300px;
  }
  
  .info-image img {
    height: 300px;
  }
  
  /* RESEÑAS MOBILE */
  .reseñas-section-horizontal {
    padding: 3rem 1.5rem;
  }
  
  .reseñas-section-horizontal h3 {
    font-size: 2rem;
  }
  
  .reseña-card {
    padding: 1.5rem;
  }
  
  .reseña-card.medium,
  .reseña-card.large {
    min-height: 180px;
  }
  
  .reseña-text {
    font-size: 0.9rem;
  }
  
  .cliente-info strong {
    font-size: 0.9rem;
  }
  
  .cliente-info span {
    font-size: 0.8rem;
  }
  
  /* TRATAMIENTOS MOBILE */
  .tratamientos {
    padding: 4rem 1.5rem;
  }
  
  .tratamientos h2 {
    font-size: 2.2rem;
  }
  
  .tratamientos .subtitle {
    font-size: 1.2rem;
  }
  
  .parent {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 1fr);
    height: 1400px;
    padding: 0.5rem;
    gap: 8px;
  }
  
  .div1 { grid-area: 1 / 1 / 2 / 2; }
  .div2 { grid-area: 2 / 1 / 3 / 2; }
  .div3 { grid-area: 3 / 1 / 4 / 2; }
  .div4 { grid-area: 4 / 1 / 5 / 2; }
  .div5 { grid-area: 5 / 1 / 6 / 2; }
  .div6 { grid-area: 6 / 1 / 7 / 2; }
  .div7 { grid-area: 7 / 1 / 8 / 2; }
  
  .treatment-content {
    padding: 1rem;
  }
  
  .treatment-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  
  .treatment-content .ideal {
    font-size: 0.7rem;
  }
  
  .details {
    padding: 1rem;
  }
  
  .details p {
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
  }
  
  .details .duration {
    font-size: 0.8rem;
  }
  
  .agendar-btn {
    font-size: 0.65rem;
    padding: 0.4rem 0.8rem;
  }
  
  /* PRODUCTOS MOBILE */
  .productos {
    padding: 4rem 1.5rem;
  }
  
  .productos h2 {
    font-size: 2.2rem;
  }
  
  .productos .subtitle {
    font-size: 1.2rem;
  }
  
  .slider-container {
    max-width: 100%;
  }
  
  .slider-wrapper {
    height: 400px;
  }
  
  .product-card {
    margin: 0 5px;
  }
  
  .product-content {
    padding: 1.5rem;
  }
  
  .product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .product-content p {
    font-size: 0.85rem;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .slider-btn.prev {
    left: -20px;
  }
  
  .slider-btn.next {
    right: -20px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
  
  /* CONTACTO MOBILE */
  .contacto {
    padding: 4rem 1.5rem;
  }
  
  .contacto h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .contacto-container {
    gap: 2rem;
  }
  
  .contacto-map {
    min-height: 250px;
  }
  
  .contacto-form {
    padding: 2rem;
    min-height: auto;
  }
  
  .form-title {
    font-size: 1.6rem;
  }
  
  .form-subtitle {
    font-size: 0.9rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 0.9rem;
    padding: 0.7rem 0.8rem;
  }
  
  .form-textarea {
    height: 80px;
  }
  
  .form-button {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
  
  .social-contact {
    gap: 0.8rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-link svg {
    width: 18px;
    height: 18px;
  }
  
  /* LOADER RESPONSIVE */
  .loader-logo h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .loader-text {
    font-size: 0.9rem;
  }
  
  .loader-dots span {
    width: 10px;
    height: 10px;
  }
  
  /* FOOTER MOBILE */
  .footer-section {
    padding: 3rem 1.5rem 1.5rem 1.5rem;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .footer-brand h3 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  
  .footer-brand p {
    font-size: 1rem;
  }
  
  .footer-logo {
    width: 15dvh;
  }
  
  .footer-nav h4,
  .footer-contact h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-nav a {
    width: 70dvw;
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }
  
  .footer-contact-info {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-mail,
  .footer-phone,
  .footer-address {
    font-size: 0.9rem;
  }
  
  .footer-social a {
    width: 42px;
    height: 42px;
  }
  
  .footer-social a svg {
    width: 20px;
    height: 20px;
  }
  
  .footer-copy {
    font-size: 0.85rem;
    padding-top: 2rem;
    margin-top: 2rem;
  }
  
  /* SEPARADORES MOBILE */
  .separator {
    height: 20px;
  }
  
  .separator span {
    font-size: 1.1rem;
  }
  
  .separator::before,
  .separator::after {
    width: 25%;
  }
  
  /* TÍTULOS GENERALES MOBILE */
  h2 {
    font-size: 2rem !important;
  }
}