/* ========================================
   RESET Y CONFIGURACIÓN BASE
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #f8f9fa;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  border: 4px solid #333;
  border-top: 4px solid #ff6b35;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #ff6b35;
  width: 0;
  z-index: 9999;
  transition: width 0.1s ease;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #111;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

nav {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  position: relative;
}

/* Logo con imagen */
.logo {
  display: flex;
  align-items: center;
  height: 80px;
  cursor: pointer;
  text-decoration: none;
}

.logo img {
  height: 100%;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1002;
  transition: 0.3s;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav ul a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

nav ul a:hover {
  color: #ff6b35;
}

.hero {
  height: 100vh;
  width: 100vw;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
              url("../img/moment-ptp-Ca8FQMjEJ3g-unsplash.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.hero-content {
  max-width: 900px;
  color: white;
  z-index: 2;
  position: relative;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff6b35, #ff8a5b);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.btn:hover {
  transform: scale(1.05);
}

.btn.main-cta {
  animation: pulse 2.5s infinite;
}

.btn.main-cta:hover {
  box-shadow: 0 0 20px rgba(255,107,53,0.8);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.6); }
  70% { box-shadow: 0 0 0 20px rgba(255,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}

.counters {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.counter-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem 2rem;
  border-radius: 15px;
  font-weight: bold;
  backdrop-filter: blur(10px);
}

section {
  width: 100%;
  padding: 5rem 2rem;
}

h2 {
  color: #1a1a1a;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff6b35;
  margin: 1rem auto 0;
}

.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  position: relative;
}

.reveal-hero {
  transform: translateY(100px);
}

.reveal-left { 
  transform: translateX(-80px); 
}

.reveal-right { 
  transform: translateX(80px); 
}

.reveal-up { 
  transform: translateY(60px); 
}

.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ========================================
   ABOUT - Layout Moderno Sin Caja (Actualizado)
   ======================================== */

.about { 
  background: #f8f9fa;
  width: 100%;
  padding: 5rem 2rem;
}

.about h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.about-container-new {
  max-width: 1400px;
  margin: 0 auto;
}

.about-grid-new {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 60px;
  align-items: center;
}

/* Imagen SIN sombra naranja - limpia y profesional */
.about-image-new {
  position: relative;
}

.about-image-new img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-new img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Contenido */
.about-content-new {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-name-new {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.about-role-new {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ff6b35;
  margin: 0 0 30px 0;
}

.about-description-new {
  font-size: 1.05rem;
  color: #333;
  margin: 0 0 25px 0;
  line-height: 1.8;
}

.about-section-title-new {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 30px 0 15px 0;
}

.about-list-new {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list-new li {
  padding-left: 30px;
  position: relative;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.about-list-new li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #4ade80;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Recuadro de Filosofía - Recuperado del diseño original */
.philosophy-box-new {
  background: linear-gradient(135deg, #fef3e2 0%, #fde8cc 100%);
  border-radius: 12px;
  padding: 25px 30px;
  margin-top: 30px;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.philosophy-title-new {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
}

.philosophy-text-new {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* Tablet - Scroll horizontal para metodología y planes Y foto arriba en Sobre mí */
@media (max-width: 1024px) and (min-width: 768px) {
  /* SOBRE MÍ - Layout vertical en tablet */
  .about-grid-new {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .about-image-new {
    width: 100%;
    max-width: 400px;
    order: 1;
  }
  
  .about-image-new img {
    height: 480px;
    width: 100%;
  }
  
  .about-content-new {
    width: 100%;
    order: 2;
  }
  
  .about-name-new {
    font-size: 2.3rem;
    text-align: center;
  }
  
  .about-role-new {
    font-size: 1.15rem;
    text-align: center;
  }

  /* METODOLOGÍA - Scroll horizontal */
  .metodologia {
    padding: 4rem 0;
  }

  .metodologia h2 {
    padding: 0 2rem;
  }

  .metodologia-intro {
    padding: 0 2rem;
    margin-bottom: 2rem;
  }

  .metodologia-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: scroll !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 2rem;
    padding: 1rem 0 1rem 1.5rem;
    margin: 0;
    scroll-behavior: smooth;
    /* Mejoras de rendimiento */
    will-change: scroll-position;
    transform: translateZ(0);
  }

  .metodologia-grid::-webkit-scrollbar {
    height: 8px;
    display: block !important;
    -webkit-appearance: none;
  }

  .metodologia-grid::-webkit-scrollbar-track {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
  }

  .metodologia-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  }

  .metodologia-grid:hover::-webkit-scrollbar-thumb,
  .metodologia-grid:active::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.8);
  }

  .metodologia-grid::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
  }

  .metodo-card {
    flex: 0 0 75%;
    min-width: 75%;
    max-width: 75%;
    margin-right: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .metodo-card:last-child {
    margin-right: 2rem;
  }

  /* PLANES - Scroll horizontal */
  .plans {
    padding: 4rem 0;
  }

  .plans h2 {
    padding: 0 2rem;
  }

  .plans-intro {
    padding: 0 2rem;
    margin-bottom: 2rem;
  }

  .plans-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: scroll !important;
    overflow-y: hidden;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding: 1rem 0 1rem 2rem;
    margin: 0;
    scroll-behavior: auto;
  }

  .plans-grid::-webkit-scrollbar {
    height: 8px;
  }

  .plans-grid::-webkit-scrollbar-track {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
  }

  .plans-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
  }

  .plans-grid:hover::-webkit-scrollbar-thumb,
  .plans-grid:active::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.8);
  }

  .plans-grid::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
  }

  .plan-card {
    flex: 0 0 85%;
    min-width: 85%;
    max-width: 85%;
    margin-right: 0;
    scroll-snap-align: start;
  }

  .plan-card:last-child {
    margin-right: 2rem;
  }
}

/* ========================================
   RESPONSIVE - iPad Mini (768px - 820px)
   ======================================== */
@media (max-width: 820px) and (min-width: 768px) {
  .metodo-card {
    flex: 0 0 420px !important;
    min-width: 420px !important;
    max-width: 420px !important;
  }

  .plan-card {
    flex: 0 0 420px !important;
    min-width: 420px !important;
    max-width: 420px !important;
  }
}

/* ========================================
   RESPONSIVE - Móvil
   ======================================== */
@media (max-width: 768px) {
  .about {
    padding: 3rem 1.5rem;
  }
  
  .about h2 {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  /* Cambiar a layout vertical: Foto -> Info */
  .about-grid-new {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    background: transparent;
    padding: 0;
  }
  
  /* Imagen SIN div contenedor - directa y limpia */
  .about-image-new {
    width: 100%;
    max-width: 350px;
    order: 1;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
  }
  
  .about-image-new img {
    height: 400px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: block;
  }
  
  /* Contenido debajo de la imagen */
  .about-content-new {
    width: 100%;
    order: 2;
  }
  
  .about-name-new {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-role-new {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .about-description-new {
    font-size: 1rem;
    text-align: left;
  }
  
  .philosophy-box-new {
    padding: 20px 25px;
  }
  
  .philosophy-title-new {
    font-size: 1.05rem;
  }
  
  .philosophy-text-new {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-image-new img {
    height: 350px;
    width: 100%;
  }
  
  .philosophy-box-new {
    padding: 18px 20px;
  }
}

.metodologia h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.metodologia-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: #666;
}

.metodologia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.metodo-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.metodo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8a5b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.metodo-card:hover::before {
  transform: scaleX(1);
}

.metodo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.metodo-number-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff8a5b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(255,107,53,0.3);
  transition: transform 0.4s ease;
}

.metodo-card:hover .metodo-number-circle {
  transform: scale(1.1) rotate(5deg);
}

.metodo-number-circle span {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: 2px;
}

.metodo-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.metodo-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.metodo-divider {
  width: 60px;
  height: 3px;
  background: #ff6b35;
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.metodo-list {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
}

.metodo-list li {
  padding: 0.7rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.metodo-list li:last-child {
  border-bottom: none;
}

.metodo-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #ff6b35;
  border-radius: 50%;
}

.clientes {
  background: #f8f9fa;
  padding: 5rem 2rem;
  width: 100%;
  overflow: hidden;
}

.clientes h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.clientes-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: #666;
}

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.carousel-infinite {
  display: flex;
  gap: 2rem;
  animation: scroll-infinite 50s linear infinite;
  width: fit-content;
  transform: translateX(0);
}

.carousel-infinite:hover,
.carousel-infinite.carousel-reverse:hover {
  animation-play-state: paused;
}

/* Animación invertida para el segundo carrusel */
.carousel-infinite.carousel-reverse {
  animation: scroll-infinite-reverse 50s linear infinite;
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2 - 1rem));
  }
}

@keyframes scroll-infinite-reverse {
  0% {
    transform: translateX(calc(-100% / 2 - 1rem));
  }
  100% {
    transform: translateX(0);
  }
}

.testimonial-card {
  min-width: 350px;
  max-width: 350px;
  background: white;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  padding: 2rem;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.verified-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #4ade80;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.profile-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff8a5b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.profile-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  text-align: left;
}

.testimonial-content {
  padding: 0;
}

.testimonial-text {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
  text-align: left;
  font-style: italic;
}

.plans { 
  background: #f8f9fa;
  width: 100%;
  padding: 5rem 2rem;
}

.plans h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.plans-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #666;
  font-size: 1.1rem;
}

/* Tarjeta única integrada con el fondo */
.single-plan-card {
  background: transparent;
  border-radius: 0;
  padding: 0 2.5rem;
  box-shadow: none;
  max-width: 900px;
  margin: 0 auto;
}

.single-plan-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 1rem;
  text-align: center;
}

.plan-description {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.plan-features li {
  font-size: 1.05rem;
  color: #333;
  padding: 0.9rem 0;
  padding-left: 2rem;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  line-height: 1.6;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #4ade80;
  font-weight: bold;
  font-size: 1.3rem;
}

.plan-duration-selector {
  border-top: none;
  padding-top: 2.5rem;
}

.duration-label {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.duration-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.duration-option {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 15px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.duration-option:hover {
  border-color: #ff6b35;
  background: #fff5f2;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.duration-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.duration-btn {
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* ========================================
   FORMULARIO DE RESEÑAS
   ======================================== */
.review-form-section {
  background: #f8f9fa;
  width: 100%;
  padding: 5rem 2rem;
}

.review-form-section h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.review-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #666;
}

.review-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.verification-notice {
  background: #f0f9ff;
  border-left: 4px solid #3b82f6;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1e40af;
  font-weight: 500;
}

.verification-notice svg {
  flex-shrink: 0;
  color: #3b82f6;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form select,
.review-form textarea {
  padding: 0.9rem;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.review-form textarea {
  resize: vertical;
  min-height: 120px;
}

.review-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Sistema de estrellas */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.5rem;
  font-size: 2.5rem;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label.star {
  cursor: pointer;
  color: #d1d5db;
  transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating label.star:hover,
.star-rating label.star:hover ~ label.star,
.star-rating input[type="radio"]:checked ~ label.star {
  color: #fbbf24;
  transform: scale(1.1);
}

.review-submit-btn {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

.review-submit-btn:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.faq { 
  background: #f8f9fa;
  width: 100%;
  padding: 5rem 2rem;
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-question {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  text-align: left;
  width: 100%;
  transition: background 0.3s ease;
  font-family: inherit;
  font-size: 1rem;
}

.faq-question:hover { 
  background: #e55a2b; 
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 1rem;
  color: #333;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 0.3rem;
}

.faq-answer p { 
  margin: 0.5rem 0; 
}

.contact { 
  background: #111; 
  color: white;
  width: 100%;
  padding: 5rem 2rem;
}

.contact h2 {
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input, 
.contact-form textarea {
  padding: 0.9rem;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.schedule-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0.5rem 0;
}

.schedule-label {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.day-selector {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.day-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 0.7rem 0.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.day-btn:hover {
  background: rgba(255, 107, 53, 0.3);
  border-color: #ff6b35;
  transform: translateY(-2px);
}

.day-btn.selected {
  background: #ff6b35;
  border-color: #ff6b35;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.time-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.time-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
}

.time-label {
  font-weight: 700;
  font-size: 1.2rem;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time-hours {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

.time-btn:hover {
  background: rgba(255, 107, 53, 0.3);
  border-color: #ff6b35;
  transform: translateY(-3px);
}

.time-btn.selected {
  background: #ff6b35;
  border-color: #ff6b35;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.time-btn.selected .time-label {
  color: white;
}

.time-btn.selected .time-hours {
  opacity: 1;
}

footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { 
  color: white; 
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer-legal a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ff6b35;
}

.footer-legal span {
  color: #333;
}

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ff6b35;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  pointer-events: none;
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

#back-to-top:hover {
  transform: scale(1.1);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  color: white;
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  min-width: 300px;
}

.cookie-link {
  color: #ff6b35;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: #ff8a5b;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
}

.cookie-btn.accept {
  background: #ff6b35;
  color: white;
}

.cookie-btn.accept:hover {
  background: #ff8a5b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}

.cookie-btn.reject {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.cookie-btn.reject:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

@keyframes slideDown {
  from { 
    top: -100px; 
    opacity: 0; 
  }
  to { 
    top: 100px; 
    opacity: 1; 
  }
}

@keyframes slideUp {
  from { 
    top: 100px; 
    opacity: 1; 
  }
  to { 
    top: -100px; 
    opacity: 0; 
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .metodologia {
    padding: 3rem 0;
  }

  .metodologia h2 {
    padding: 0 2rem;
  }

  .metodologia-intro {
    padding: 0 2rem;
    margin-bottom: 2rem;
  }

  .metodologia-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 2rem;
    padding: 1rem 0 1rem 1.5rem;
    margin: 0;
    grid-template-columns: none;
    scroll-behavior: smooth;
    justify-content: flex-start;
    /* Mejoras de rendimiento */
    will-change: scroll-position;
    transform: translateZ(0);
  }

  .metodologia-grid::-webkit-scrollbar {
    height: 6px;
    display: block !important;
    -webkit-appearance: none;
  }

  .metodologia-grid::-webkit-scrollbar-track {
    background: rgba(255, 107, 53, 0.15);
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
  }

  .metodologia-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  }

  .metodologia-grid:hover::-webkit-scrollbar-thumb,
  .metodologia-grid:active::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.8);
  }

  .metodologia-grid::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
  }

  .metodo-card {
    flex: 0 0 380px;
    min-width: 380px;
    max-width: 380px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    padding: 2.5rem 2rem;
    margin: 0;
  }

  .metodo-card:last-child {
    margin-right: 2rem;
    grid-column: auto;
  }

  .metodo-number-circle {
    width: 90px;
    height: 90px;
  }

  .metodo-number-circle span {
    font-size: 2.2rem;
  }

  .metodo-title {
    font-size: 1.5rem;
  }

  .metodo-subtitle {
    font-size: 1rem;
  }

  .metodo-list li {
    font-size: 0.95rem;
  }

  /* Planes con scroll horizontal en tablet */
  .plans {
    padding: 3rem 0;
  }

  .plans h2 {
    padding: 0 2rem;
  }

  .plans-intro {
    padding: 0 2rem;
  }

  .single-plan-card {
    padding: 0 2rem;
  }

  .plan-description {
    padding: 0;
  }

  .plan-features {
    padding: 0;
    margin-bottom: 2rem;
  }

  .duration-label {
    padding: 0;
  }

  .duration-options {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding: 1rem 0 1rem 2rem;
    margin: 0;
    grid-template-columns: none;
    scroll-behavior: smooth;
  }

  .duration-options::-webkit-scrollbar {
    height: 6px;
    display: block !important;
    -webkit-appearance: none;
  }

  .duration-options::-webkit-scrollbar-track {
    background: rgba(255, 107, 53, 0.15);
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
  }

  .duration-options::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  }

  .duration-options:hover::-webkit-scrollbar-thumb,
  .duration-options:active::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.8);
  }

  .duration-options::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
  }

  .duration-option {
    flex: 0 0 45%;
    min-width: 45%;
    max-width: 45%;
    scroll-snap-align: center;
  }

  .duration-option:last-child {
    margin-right: 2rem;
  }
}

/* iPad Mini específico */
@media (max-width: 820px) and (min-width: 768px) {
  .duration-option {
    flex: 0 0 45% !important;
    min-width: 45% !important;
    max-width: 45% !important;
  }
}

@media (max-width: 768px) {
  .hero h1 { 
    font-size: 2rem; 
  }
  
  .hero p { 
    font-size: 1rem; 
  }
  
  .about-content { 
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .about-card {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  
  .about-image {
    max-width: 100%;
  }
  
  .about-name {
    font-size: 1.6rem;
  }
  
  .about-role {
    font-size: 1.05rem;
  }
  
  .philosophy-box {
    flex-direction: row;
    padding: 1.25rem;
  }
  
  .philosophy-icon {
    width: 40px;
    height: 40px;
  }
  
  .philosophy-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .philosophy-title {
    font-size: 1rem;
  }
  
  .philosophy-text {
    font-size: 0.9rem;
  }
  
  .menu-toggle { 
    display: block; 
  }
  
  nav ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 220px;
    height: 100%;
    background: #111;
    padding: 3rem 1.5rem;
    box-shadow: -3px 0 15px rgba(0,0,0,0.4);
    gap: 1rem;
    transition: right 0.3s ease;
    z-index: 1001;
  }
  
  nav ul.active { 
    right: 0; 
  }
  
  nav ul li { 
    padding: 0.5rem 0; 
    text-align: left; 
  }

  /* Logo más pequeño en móvil */
  .logo {
    height: 60px;
  }

  .logo img {
    max-width: 220px;
  }

  .metodologia {
    padding: 3rem 0;
  }

  .metodologia h2 {
    padding: 0 1.5rem;
  }

  .metodologia-intro {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
  }

  .metodologia-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 1rem 0 1rem 1.5rem;
    margin: 0;
    grid-template-columns: none;
    scroll-behavior: smooth;
  }

  .metodologia-grid::-webkit-scrollbar {
    height: 6px;
    display: block;
    margin-top: 10px;
  }

  .metodologia-grid::-webkit-scrollbar-track {
    background: rgba(255, 107, 53, 0.15);
    border-radius: 10px;
    margin-top: 8px;
  }

  .metodologia-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.5);
    border-radius: 10px;
    transition: background 0.3s ease, opacity 0.3s ease;
  }

  .metodologia-grid:hover::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.5);
  }

  .metodologia-grid.scrolling::-webkit-scrollbar-thumb {
    background: transparent;
    opacity: 0;
  }

  .metodologia-grid {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 53, 0.5) rgba(255, 107, 53, 0.15);
    padding-bottom: 25px;
  }

  .metodo-card {
    flex: 0 0 calc(100% - 4rem);
    min-width: calc(100% - 4rem);
    max-width: calc(100% - 4rem);
    scroll-snap-align: start;
    padding: 2.5rem 1.5rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-right: 0;
  }

  .metodo-card:last-child {
    margin-right: 1.5rem;
  }

  .metodo-number-circle {
    width: 80px;
    height: 80px;
  }

  .metodo-number-circle span {
    font-size: 2rem;
  }

  .metodo-title {
    font-size: 1.4rem;
  }

  .metodo-list li {
    font-size: 0.9rem;
    padding: 0.6rem 0;
    padding-left: 1.5rem;
  }

  .metodo-list li::before {
    content: '✓';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b35;
    font-weight: bold;
    border-radius: 0;
    width: auto;
    height: auto;
    background: none;
  }

  .metodologia::after {
    content: none;
    display: none;
  }

  .plans {
    padding: 3rem 0;
  }

  .plans h2 {
    padding: 0 1.5rem;
  }

  .plans-intro {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
  }

  .plans-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 1rem 0 1rem 1.5rem;
    margin: 0;
    grid-template-columns: none;
    scroll-behavior: smooth;
  }

  .plans-grid::-webkit-scrollbar {
    height: 6px;
    display: block;
    margin-top: 10px;
  }

  .plans-grid::-webkit-scrollbar-track {
    background: rgba(255, 107, 53, 0.15);
    border-radius: 10px;
    margin-top: 8px;
  }

  /* Tarjeta única de planes en móvil */
  .single-plan-card {
    padding: 0 1.5rem;
  }

  .single-plan-card h3 {
    font-size: 1.6rem;
  }

  .plan-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0;
  }

  .plan-features {
    padding: 0;
    margin-bottom: 2rem;
  }

  .plan-features li {
    font-size: 0.95rem;
    padding: 0.8rem 0;
    padding-left: 1.8rem;
  }

  .duration-label {
    font-size: 1.1rem;
    padding: 0;
  }

  .duration-options {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 1rem 0 1rem 1.5rem;
    margin: 0;
    grid-template-columns: none;
    scroll-behavior: smooth;
    padding-bottom: 25px;
  }

  .duration-options::-webkit-scrollbar {
    height: 6px;
    display: block !important;
    -webkit-appearance: none;
  }

  .duration-options::-webkit-scrollbar-track {
    background: rgba(255, 107, 53, 0.15);
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
  }

  .duration-options::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.5);
    border-radius: 10px;
    transition: background 0.3s ease;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  }

  .duration-options:hover::-webkit-scrollbar-thumb,
  .duration-options:active::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.8);
  }

  .duration-options::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
  }

  .duration-option {
    flex: 0 0 75%;
    min-width: 75%;
    max-width: 75%;
    scroll-snap-align: center;
  }

  .duration-option:last-child {
    margin-right: 1.5rem;
  }

  .duration-title {
    font-size: 1.2rem;
  }

  .duration-btn {
    font-size: 0.85rem;
    padding: 0.7rem 1.2rem;
  }

  .metodo-card {
    transition: none;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 0;
  }

  .cookie-text {
    min-width: auto;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .counters {
    gap: 1rem;
  }

  .counter-box {
    padding: 1rem 1.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .day-selector {
    grid-template-columns: repeat(3, 1fr);
  }

  .day-btn {
    font-size: 0.85rem;
    padding: 0.6rem 0.3rem;
  }

  .time-selector {
    grid-template-columns: 1fr;
  }

  .schedule-label {
    font-size: 1rem;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 1.5rem;
  }

  .verified-badge {
    font-size: 1rem;
    top: 0.8rem;
    right: 0.8rem;
  }

  .profile-circle {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .testimonial-name {
    font-size: 1.05rem;
  }

  .testimonial-text {
    font-size: 0.88rem;
  }

  /* Formulario de reseñas responsive */
  .review-form-section {
    padding: 3rem 1.5rem;
  }

  .review-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .verification-notice {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .star-rating {
    font-size: 2rem;
  }

  .review-submit-btn {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }
}

/* ========================================
   ABOUT (Referencia) – más parecido a la imagen
   ======================================== */

.about-frame {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 2.2rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

.about-card-ref {
  background: linear-gradient(135deg, #ffffff 0%, #fbfbfb 70%, #f6f6f6 100%);
  border-radius: 22px;
  padding: 2.2rem;
  gap: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  align-items: center;
}

/* Imagen como en la referencia: grande, borde redondeado, sombra suave */
.about-image-ref {
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.about-image-ref img {
  border-radius: 18px;
  aspect-ratio: 3 / 4;
}

/* Tipos como la referencia */
.about-info-ref {
  gap: 0.9rem;
}

.about-description-ref {
  font-size: 1.05rem;
  color: #666;
  max-width: 58ch;
}

.about-section-title-ref {
  font-size: 1.05rem;
  margin-top: 0.6rem;
}

.about-list-ref li {
  font-size: 1.05rem;
  padding-left: 2rem;
}

/* Checks un pelín más “limpios” */
.about-list-ref li::before {
  font-size: 1.15rem;
}

/* Filosofía SIN icono, estilo “tarjeta naranja” como la imagen */
.philosophy-box-ref {
  margin-top: 1.6rem;
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(135deg, #fef3e2 0%, #fde8cc 100%);
  border: 1px solid rgba(255,107,53,0.12);
}

/* Ajustes de texto dentro */
.philosophy-box-ref .philosophy-title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.philosophy-box-ref .philosophy-text {
  font-size: 1rem;
}

/* Responsive para que quede igual de bien en móvil */
@media (max-width: 768px) {
  .about-frame {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .about-card-ref {
    padding: 1.4rem;
    border-radius: 18px;
  }

  .about-description-ref,
  .about-list-ref li {
    font-size: 1rem;
  }

  .philosophy-box-ref {
    padding: 1.1rem 1.2rem;
  }
}
/* ========================================
   ANIMACIONES PARA MENSAJES DE RESEÑA
   ======================================== */
@keyframes scaleIn {
  from {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes scaleOut {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }
}

@keyframes slideDown {
  from {
    top: -100px;
    opacity: 0;
  }
  to {
    top: 100px;
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    top: 100px;
    opacity: 1;
  }
  to {
    top: -100px;
    opacity: 0;
  }
}