@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #374151;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #1d4ed8;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  z-index: 1030;
  height: 70px;
}
@media (min-width: 768px) {
  .header {
    height: 80px;
  }
}

.header__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .header__content {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .header__content {
    padding: 0 2rem;
  }
}

.header__logo img {
  height: 70px;
  width: auto;
  filter: none;
}
@media (min-width: 768px) {
  .header__logo img {
    height: 80px;
  }
}
@media (min-width: 1024px) {
  .header__logo img {
    height: 90px;
  }
}

.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav__link {
  font-weight: 500;
  color: #374151;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.nav__link:hover {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.header__contact {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .header__contact {
    display: flex;
  }
}

.contact__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-weight: 500;
}
.contact__phone:hover {
  color: #2563eb;
}

.contact__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  user-select: none;
  background: #25D366;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.contact__whatsapp:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.contact__whatsapp:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact__whatsapp:hover {
  background: #128C7E;
  color: #ffffff !important;
}

.header__menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 1024px) {
  .header__menu-toggle {
    display: none;
  }
}

.menu-toggle__line {
  width: 24px;
  height: 2px;
  background: #374151;
  transition: all 0.3s ease-in-out;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
}
@media (min-width: 768px) {
  .hero {
    padding-top: 80px;
  }
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero__background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(5, 150, 105, 0.6));
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.hero__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}

.hero__subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) {
  .hero__cta {
    flex-direction: row;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  user-select: none;
}
.btn:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--primary {
  background: #2563eb;
  color: #ffffff;
}
.btn--primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn--secondary:hover {
  background: #ffffff;
  color: #2563eb;
  transform: translateY(-2px);
}
.btn--whatsapp {
  background: #25D366;
  color: #ffffff;
}
.btn--whatsapp:hover {
  background: #128C7E;
  color: #ffffff !important;
  transform: translateY(-2px);
}
.btn--full-width {
  width: 100%;
}

.btn__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .section__header {
    margin-bottom: 4rem;
  }
}

.section__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section__title {
    font-size: 2.25rem;
  }
}

.section__subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.treatments {
  padding: 4rem 0;
  background: #f9fafb;
}
@media (min-width: 768px) {
  .treatments {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .treatments {
    padding: 6rem 0;
  }
}

.treatments__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .treatments__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .treatments__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.treatment__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease-in-out;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.treatment__card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.treatment__card:hover {
  transform: translateY(-8px);
}

.treatment__card--featured {
  position: relative;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(139, 92, 246, 0.03) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
}
.treatment__card--featured::before {
  content: "✨ Nuevo";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.treatment__card--featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15), 0 0 0 2px rgba(37, 99, 235, 0.1);
}
.treatment__card--featured .treatment__title {
  background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.treatment__icon {
  margin: 0 auto 1.5rem;
  text-align: center;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}
.treatment__icon::before, .treatment__icon::after {
  display: none !important;
  content: none !important;
  background: none !important;
}
.treatment__icon img {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 0 !important;
  filter: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Forzar que los SVG mantengan sus colores originales */
.treatment__icon svg,
.treatment__icon img[src$=".svg"] {
  fill: currentColor;
  stroke: currentColor;
}

/* Asegurar que NO hay círculos en toda la sección de tratamientos */
.treatment__card .treatment__icon,
.treatments .treatment__icon,
.treatment__card .treatment__icon * {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Eliminar cualquier gradiente circular residual */
.treatment__icon,
.treatment__icon img,
.treatment__icon svg {
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
  border-radius: 0 !important;
}

/* FORZAR ELIMINACIÓN TOTAL DE CÍRCULOS */
.treatments .treatment__card,
.treatments .treatment__icon,
.treatments .treatment__icon:before,
.treatments .treatment__icon:after,
.treatments .treatment__icon img,
.treatments .treatment__icon svg,
.treatment__card .treatment__icon,
.treatment__card .treatment__icon:before,
.treatment__card .treatment__icon:after {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  background-size: auto !important;
  background-position: initial !important;
  background-repeat: no-repeat !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  mask: none !important;
  -webkit-mask: none !important;
}

.treatment__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.treatment__description {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.treatment__link {
  font-weight: 500;
  color: #2563eb;
}
.treatment__link:hover {
  color: #1d4ed8;
}

.team {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .team {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .team {
    padding: 6rem 0;
  }
}

.team__members {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.team__member {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .team__member {
    flex-direction: row;
    align-items: center;
  }
  .team__member:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.member__photo {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .member__photo {
    flex-shrink: 0;
  }
}

.member__info {
  flex: 1;
}

.member__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.member__specialty {
  font-size: 1.125rem;
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 1rem;
}

.member__description {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.member__credentials {
  list-style: none;
}
.member__credentials li {
  color: #6b7280;
  font-size: 0.875rem;
  padding: 0.25rem 0;
}
.member__credentials li::before {
  content: "✓";
  color: #059669;
  font-weight: bold;
  margin-right: 0.5rem;
}

.gallery {
  padding: 4rem 0;
  background: #f9fafb;
}
@media (min-width: 768px) {
  .gallery {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .gallery {
    padding: 6rem 0;
  }
}

.gallery__slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.gallery__item {
  display: none;
}
.gallery__item.active {
  display: block;
}

.before-after {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 640px) {
  .before-after {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.before-after__image {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}
.before-after__image:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.before-after__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .before-after__image img {
    height: 420px;
  }
}
@media (min-width: 1024px) {
  .before-after__image img {
    height: 480px;
  }
}
.before-after__image:hover img {
  transform: scale(1.05);
}

.image__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(29, 78, 216, 0.95));
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  backdrop-filter: blur(10px);
  z-index: 10;
}
@media (min-width: 768px) {
  .image__label {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
  }
}

.gallery__caption {
  text-align: center;
  margin-top: 1.5rem;
  color: #374151;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-left: 4px solid #2563eb;
}
@media (min-width: 768px) {
  .gallery__caption {
    font-size: 1.25rem;
    margin-top: 2rem;
  }
}

.gallery__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.gallery__prev, .testimonials__prev,
.testimonials__next,
.gallery__next {
  width: 40px;
  height: 40px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.3s ease-in-out;
}
.gallery__prev:hover, .testimonials__prev:hover,
.testimonials__next:hover,
.gallery__next:hover {
  background: #1d4ed8;
  transform: scale(1.1);
}

.gallery__dots, .testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.gallery__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
.gallery__dot.active {
  background: #2563eb;
}

.testimonials {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .testimonials {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .testimonials {
    padding: 6rem 0;
  }
}

.testimonials__carousel {
  display: flex;
  overflow: hidden;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .testimonials__carousel {
    justify-content: center;
  }
}

.testimonial__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease-in-out;
  padding: 2rem;
  min-width: 300px;
  flex-shrink: 0;
}
.testimonial__card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .testimonial__card {
    min-width: 350px;
  }
}
@media (min-width: 1024px) {
  .testimonial__card {
    flex: 1;
    max-width: 400px;
  }
}

.testimonial__rating {
  margin-bottom: 1rem;
}
.testimonial__rating .star {
  color: #FFD700;
  font-size: 1.125rem;
}

.testimonial__text {
  font-style: italic;
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.testimonial__text::before {
  content: '"';
  font-size: 1.875rem;
  color: #2563eb;
  line-height: 1;
}
.testimonial__text::after {
  content: '"';
  font-size: 1.875rem;
  color: #2563eb;
  line-height: 1;
}

.testimonial__author {
  font-style: normal;
}
.testimonial__author strong {
  color: #111827;
  font-weight: 600;
}
.testimonial__author span {
  color: #6b7280;
  font-size: 0.875rem;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .testimonials__controls {
    display: none;
  }
}

.faq {
  padding: 4rem 0;
  background: #f9fafb;
}
@media (min-width: 768px) {
  .faq {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .faq {
    padding: 6rem 0;
  }
}

.faq__accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease-in-out;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq__item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.faq__question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.faq__question:hover {
  background: #f9fafb;
}
.faq__question[aria-expanded=true] .faq__icon {
  transform: rotate(45deg);
}

.faq__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #2563eb;
  transition: transform 0.3s ease-in-out;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.faq__answer.show {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}
.faq__answer p {
  color: #4b5563;
  line-height: 1.6;
}

.booking {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}
@media (min-width: 768px) {
  .booking {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .booking {
    padding: 6rem 0;
  }
}

.booking__wrapper {
  max-width: 900px;
  margin: 0 auto 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.booking__wrapper iframe {
  display: block;
  width: 100%;
  min-height: 500px;
  border: none;
}

.booking__alternative {
  text-align: center;
  color: #4b5563;
  font-size: 0.875rem;
}
.booking__alternative a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
.booking__alternative a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.nav__link--highlight {
  background: #2563eb;
  color: #ffffff !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.15s ease-in-out, transform 0.15s ease-in-out;
}
.nav__link--highlight:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.contact {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .contact {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .contact {
    padding: 6rem 0;
  }
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact__content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact__form {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease-in-out;
  padding: 2rem;
}
.contact__form:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.form__group {
  margin-bottom: 1.5rem;
}
.form__group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.form__label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease-in-out;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form__input.error,
.form__select.error,
.form__textarea.error {
  border-color: #dc2626;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__checkbox {
  flex-shrink: 0;
  margin-top: 2px;
}

.form__checkbox-label {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
}
.form__checkbox-label a {
  color: #2563eb;
}
.form__checkbox-label a:hover {
  text-decoration: underline;
}

.form__error {
  display: block;
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.form__error:empty {
  display: none;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact__item .contact__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact__item strong {
  color: #111827;
  font-weight: 500;
}
.contact__item a {
  color: #2563eb;
}
.contact__item a:hover {
  color: #1d4ed8;
}

.contact__map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form__success {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease-in-out;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  border: none;
  color: #ffffff;
}
.form__success:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.form__success .success__content {
  text-align: center;
}
.form__success .success__content .success__icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  line-height: 60px;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
.form__success .success__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.form__success .success__content p {
  font-size: 1rem;
  opacity: 0.95;
  margin: 0;
}

.form__error-message {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease-in-out;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: none;
  color: #ffffff;
}
.form__error-message:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.form__error-message .error__content {
  text-align: center;
}
.form__error-message .error__content .error__icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  line-height: 60px;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.form__error-message .error__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.form__error-message .error__content p {
  font-size: 1rem;
  opacity: 0.95;
  margin: 0;
  line-height: 1.5;
}

.footer {
  background: #111827;
  color: #d1d5db;
  padding: 4rem 0 2rem;
}

.footer__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .footer__content {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .footer__content {
    padding: 0 2rem;
  }
}
@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .footer__section:first-child {
    grid-column: 1/-1;
  }
}
@media (min-width: 1024px) {
  .footer__section:first-child {
    grid-column: auto;
  }
}

.footer__logo img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1); /* Logo en blanco para footer oscuro */
  object-fit: contain; /* Mantener proporciones */
}
@media (min-width: 768px) {
  .footer__logo img {
    height: 90px;
  }
}

.footer__description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: rgba(75, 85, 99, 0.8);
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}
.social__link:hover {
  background: #2563eb;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}
.social__link:hover .social__icon {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
  transform: scale(1.15);
}
.social__link .social__icon {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(0) invert(1); /* Iconos en blanco */
  transition: all 0.3s ease-in-out;
  object-fit: contain;
}

.footer__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
}
.footer__links li {
  margin-bottom: 0.5rem;
}
.footer__links a {
  color: #d1d5db;
  transition: color 0.3s ease-in-out;
}
.footer__links a:hover {
  color: #ffffff;
}

.footer__contact .contact__item {
  margin-bottom: 1rem;
}
.footer__contact .contact__item span:first-child {
  margin-right: 0.5rem;
}

.footer__bottom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  border-top: 1px solid #1f2937;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: #9ca3af;
}
@media (min-width: 640px) {
  .footer__bottom {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .footer__bottom {
    padding: 0 2rem;
  }
}
.footer__bottom p {
  margin-bottom: 0.5rem;
}
.footer__bottom p:last-child {
  margin-bottom: 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 1030;
  transition: all 0.3s ease-in-out;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  animation: none;
}
.whatsapp-float .whatsapp-float__icon {
  color: #ffffff;
  font-size: 1.5rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 50px;
  height: 50px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1030;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
*:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .hero__background::after {
    background: rgba(0, 0, 0, 0.8);
  }
  .btn--secondary {
    border-width: 3px;
  }
  .form__input:focus,
  .form__select:focus,
  .form__textarea:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.5);
  }
}
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}
.mobile-menu.show {
  transform: translateY(0);
}
.mobile-menu .nav__list {
  flex-direction: column;
  padding: 1rem;
  gap: 0;
}
.mobile-menu .nav__list li {
  border-bottom: 1px solid #e5e7eb;
}
.mobile-menu .nav__list li:last-child {
  border-bottom: none;
}
.mobile-menu .nav__list .nav__link {
  display: block;
  padding: 1rem 0;
  border-bottom: none;
}

/* ====================================
   HERO LIMPIO CON GRADIENTE AZUL
   (VERSION CENTRADA Y ORGANIZADA)
==================================== */
/* Hero con gradiente azul */
.hero--clean {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero--clean .container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 25%, #2196f3 50%, #42a5f5 75%, #90caf9 100%);
  z-index: 1;
}

/* Contenido centrado */
.hero__content--centered {
  position: relative;
  z-index: 5;
  text-align: center;
  color: white;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo principal en el hero */
.hero__logo {
  margin-bottom: 3rem;
}

.hero__logo-img {
  max-width: 380px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1); /* Logo en blanco */
}
@media (min-width: 768px) {
  .hero__logo-img {
    max-width: 450px;
  }
}
@media (min-width: 1024px) {
  .hero__logo-img {
    max-width: 520px;
  }
}

.hero__tagline {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

/* Título principal */
.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

/* Subtítulo */
.hero__subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: white !important;
  font-weight: 300;
}

/* Botones de acción */
.hero__cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Estilos de botones */
.btn {
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn--primary {
  background: #f59e0b;
  color: white;
  border: 2px solid #f59e0b;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn--primary:hover {
  background: #d97706;
  border-color: #d97706;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn--secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn--secondary:hover {
  background: white;
  color: #1e40af;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* ====================================
   RESPONSIVE DESIGN HERO LIMPIO
==================================== */
@media (max-width: 768px) {
  .hero__logo-img {
    max-width: 250px;
  }
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  .hero__cta {
    gap: 1rem;
  }
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .hero__content--centered {
    padding: 0 15px;
  }
  .hero__logo {
    margin-bottom: 2rem;
  }
  .hero__logo-img {
    max-width: 200px;
  }
  .hero__tagline {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  .hero__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .hero__cta {
    flex-direction: column;
    gap: 1rem;
  }
  .btn {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 300px;
  }
}
.packs-beauty {
  padding: 4rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .packs-beauty {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .packs-beauty {
    padding: 6rem 0;
  }
}
.packs-beauty::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.packs-beauty__badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.packs-beauty__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .packs-beauty__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .packs-beauty__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pack-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.pack-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pack-color-1), var(--pack-color-2));
}
.pack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pack-card--20s {
  --pack-color-1: #ffecd2;
  --pack-color-2: #fcb69f;
}
.pack-card--20s::before {
  background: linear-gradient(90deg, #fcb69f, #ff9a9e);
}
.pack-card--20s .pack-card__age {
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  color: #8b4513;
}

.pack-card--30s {
  --pack-color-1: #a8edea;
  --pack-color-2: #fed6e3;
}
.pack-card--30s::before {
  background: linear-gradient(90deg, #a8edea, #fed6e3);
}
.pack-card--30s .pack-card__age {
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  color: #2d5a4e;
}

.pack-card--40s {
  --pack-color-1: #d299c2;
  --pack-color-2: #fef9d7;
}
.pack-card--40s::before {
  background: linear-gradient(90deg, #d299c2, #fef9d7);
}
.pack-card--40s .pack-card__age {
  background: linear-gradient(135deg, #d299c2, #fef9d7);
  color: #6b3a5f;
}

.pack-card--50s {
  --pack-color-1: #c1dfc4;
  --pack-color-2: #deecdd;
}
.pack-card--50s::before {
  background: linear-gradient(90deg, #667eea, #764ba2);
}
.pack-card--50s .pack-card__age {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
}

.pack-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.pack-card__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pack-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.pack-card__tagline {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
  font-style: italic;
}

.pack-card__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.pack-card__benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.4;
}
.pack-card__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

.pack-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.pack-card__duration {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}
.pack-card__duration::before {
  content: "⏱️ ";
}

.pack-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
.pack-card__link:hover {
  color: #1d4ed8;
}

.packs-beauty__cta {
  text-align: center;
}

/* Botón CTA de packs más compacto */
.btn--packs-cta {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.packs-beauty__more {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.packs-beauty__more strong {
  color: #374151;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.footer__link--featured {
  color: #3b82f6 !important;
  font-weight: 600;
}

.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown:hover .nav__dropdown-icon {
  transform: rotate(180deg);
}

.nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__dropdown-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin-top: 0.5rem;
}
.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
}
.nav__dropdown-menu li {
  margin: 0;
}
.nav__dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav__dropdown-menu a:hover {
  background: #f9fafb;
  color: #2563eb;
  padding-left: 1.5rem;
}

.nav__dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0.5rem 1rem;
}

.nav__dropdown-featured {
  color: #2563eb !important;
  font-weight: 600 !important;
}
.nav__dropdown-featured:hover {
  background: rgba(37, 99, 235, 0.08) !important;
}
.nav__dropdown-featured--active {
  background: rgba(37, 99, 235, 0.08) !important;
  border-left: 3px solid #2563eb !important;
}

@media (max-width: 1024px) {
  .nav__dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    min-width: auto;
    padding: 0;
    margin: 0;
    background: transparent;
    display: none;
  }
  .nav__dropdown-menu::before {
    display: none;
  }
  .nav__dropdown-menu a {
    padding-left: 2rem;
    font-size: 0.875rem;
  }
  .nav__dropdown.active .nav__dropdown-menu {
    display: block;
  }
  .nav__dropdown-icon {
    display: inline-block;
  }
  .nav__dropdown-divider {
    margin: 0.5rem 2rem;
  }
}
