 /* General */
  section {
    padding: 60px 15px;
  }

  h2, h3 {
    color: #e60073;
    font-weight: 700;
    margin-bottom: 15px;
  }

  p, li {
    color: #444;
    font-size: 16px;
    line-height: 1.5;
  }

  ul {
    margin-left: 20px;
    margin-bottom: 25px;
  }

/* Hero Section */
.hero-section {
  width: 100%;
  height: 400px;
  background-image: url('/img/Pris03.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-family: 'Chewy', cursive;
}

.hero-section h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-section span {
  font-size: 1.5rem;
  font-weight: normal;
}

/* Mobile fixes */
@media (max-width: 600px) {
  .hero-section {
    height: 300px;
    padding: 10px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section span {
    font-size: 1rem;
  }

  .contenedor-header {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .logo img {
    max-width: 100% !important;
    display: block !important;
    height: auto !important;
  }

  .about-section .container,
  .benefits-section,
  .cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Otros estilos generales (sin cambio, ya eran responsive) */
/* ... se mantiene tu contenido intacto desde el archivo original */

  /* About */
  .about-section .container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
  }

  .video-wrapper {
    flex: 1 1 400px;
  }

  video {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(230, 0, 115, 0.3);
  }

  .about-text {
    flex: 1 1 400px;
  }

  .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }

  /* Services */
  .services-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffe4f2; /* rosa suave opcional */
}

.section-title {
  font-family: 'Chewy', cursive;
  font-size: 2.5rem;
  color: #e60073;
  margin-bottom: 10px; /* reduce espacio hacia abajo */
}

.decorative-line {
  width: 200px;
  margin: 0 auto 20px auto; /* espacio solo debajo */
  display: block;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  background-color: #fff0f5;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(230, 0, 115, 0.2);
  padding: 20px;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.card h3 {
  color: #e60073;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: 'Chewy', cursive;
}

.card p {
  font-size: 1rem;
  color: #444;
}

  /* Benefits */
  .benefits-section {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 80px;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .benefits-section .container {
    flex: 1 1 400px;
  }

  .benefits-list {
    list-style: none;
    padding-left: 0;
  }

  .benefits-list li {
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
  }

  .benefits-list li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    color: #e60073;
  }

  .image-side {
    flex: 1 1 450px;
    text-align: center;
  }

  .image-side img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(230, 0, 115, 0.25);
  }

  /* Tabs */
  .wrap {
    max-width: 1200px;
    margin: 0 auto;
  }

  ul.tabs {
    display: flex;
    background: #150214;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  }

  ul.tabs li {
    flex: 1;
    text-align: center;
  }

  ul.tabs li button {
    background: none;
    border: none;
    color: white;
    padding: 18px 0;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
  }

  ul.tabs li button:hover,
  ul.tabs li button.active {
    background: #f11e41;
    box-shadow: inset 0 -3px 0 white;
    border-radius: 12px 12px 0 0;
  }

.tab-content {
  display: none;
  padding: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.tab-content.active {
  display: block;
}

/* Contenedor interno organizado */
.tab-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.tab-text {
  flex: 1 1 500px;
}

.tab-text h3 {
  font-family: 'Chewy', cursive;
  color: #e60073;
  font-size: 2rem;
  margin-bottom: 15px;
}

.tab-text p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.tab-text ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
  color: #444;
}

.tab-text ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Imagen a la derecha */
.tab-image {
  flex: 1 1 300px;
  text-align: center;
}

.tab-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(230, 0, 115, 0.25);
}

/* Responsive para móvil */
@media (max-width: 900px) {
  .tab-inner {
    flex-direction: column;
    text-align: center;
  }

  .tab-text ul {
    text-align: center;
    margin-left: 0;
  }

  .tab-image {
    margin-top: 20px;
  }
}

/* Animación */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


  /* Location */
  .location-section {
    max-width: 1100px;
    margin: 0 auto 80px;
    text-align: center;
  }

  .location-section h2 {
    color: #e60073;
    font-weight: 700;
    margin-bottom: 25px;
  }

  iframe {
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(230, 0, 115, 0.25);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .about-section .container,
    .benefits-section {
      flex-direction: column;
    }

    .image-side,
    .video-wrapper,
    .about-text,
    .benefits-section .container {
      flex: unset;
      max-width: 100%;
    }

    .cards {
      flex-direction: column;
      align-items: center;
    }
  }

  @media (max-width: 500px) {
    .hero-section {
      font-size: 2.4rem;
    }

    ul.tabs li button {
      font-size: 14px;
      padding: 14px 0;
    }
  }