* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f6f1ea;
  color: #333;
  line-height: 1.7;
  scroll-behavior: smooth;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(243, 240, 234, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-scrolled {
  background: rgba(243, 240, 234, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.02);
}

.navbar-logo img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.navbar-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.navbar-toggle span {
  width: 24px;
  height: 2.5px;
  background: #333;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
}

.navbar.orange-menu .navbar-toggle span {
  background: #333;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-link {
  color: #2c2c2c;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.navbar-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(227, 139, 45, 0.1), rgba(227, 139, 45, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-link:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.navbar-link:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  opacity: 1;
}

.navbar-link:hover::after {
  width: calc(100% - 36px);
  background: rgba(255, 255, 255, 1);
}

/* Active menu item */
.navbar-link.active {
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
}

.navbar-link.active::after {
  width: calc(100% - 36px);
  background: rgba(255, 255, 255, 1);
  opacity: 1;
}

/* Orange hover for navbar when not on hero section */
.navbar.orange-menu .navbar-link {
  color: #2c2c2c;
}

.navbar.orange-menu .navbar-link.active {
  color: #e38b2d;
  font-weight: 600;
}

.navbar.orange-menu .navbar-link.active::after {
  width: calc(100% - 36px);
  background: linear-gradient(90deg, #e38b2d, #f5a04a);
  opacity: 1;
}

.navbar.orange-menu .navbar-link::after {
  background: linear-gradient(90deg, #e38b2d, #f5a04a);
}

.navbar.orange-menu .navbar-link:hover {
  color: #e38b2d;
}

.navbar.orange-menu .navbar-link:hover::before {
  background: linear-gradient(135deg, rgba(227, 139, 45, 0.1), rgba(227, 139, 45, 0.05));
}

.navbar.orange-menu .navbar-link:hover::after {
  background: linear-gradient(90deg, #e38b2d, #f5a04a);
  width: calc(100% - 36px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  background-attachment: scroll;
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero h1 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-visual-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-h2-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-weight: 400;
}

.hero-divider {
  width: 100px;
  height: 2px;
  background: white;
  margin: 20px auto 30px;
}

.hero-subtitle {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Sections */
.section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: 80px;
  min-height: 100vh;
  min-height: 100svh;
  box-sizing: border-box;
}

#objetivos.section {
  padding-top: 130px;
}

#evaluacion-inicial.section {
  padding-top: 80px;
}

.value-bullets {
  text-align: center;
  font-size: 1.15rem;
  color: #666;
  letter-spacing: 2px;
  margin-top: -2rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

@media (max-width: 500px) {
  .value-bullets {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-top: -1.5rem;
  }
}

#sesiones.section {
  padding-top: 35px;
}

#sobre-mi.section {
  padding-top: 60px;
}

.section h2,
.section h1.section-h1 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #e38b2d;
  text-align: center;
  font-weight: 700;
}

.section h1.section-h1 + .section-lede {
  text-align: center;
  font-size: 1.15rem;
  color: #555;
  max-width: 720px;
  margin: -2rem auto 3rem;
  font-weight: 400;
  line-height: 1.5;
}

/* Visually hidden but readable by screen readers and search engines.
   Used for accessibility-friendly SEO context (e.g. extending page H1
   without changing the visible heading). */
.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;
}

#objetivos.section h2 {
  margin-bottom: 1rem;
  text-align: center;
}

#objetivos.section {
  text-align: center;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.sobre-mi-content {
  max-width: 800px;
  margin: 30px auto 0;
}

.sobre-mi-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: left;
  margin-bottom: 20px;
}

.bg-light {
  background: #faf9f7;
}

/* Objetivos Section */
.objetivos-section {
  background: white;
}

/* Sesiones Section */
.sesiones-content {
  max-width: 900px;
  margin: 30px auto 0;
}

.sesion-step {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.sesion-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #e38b2d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  color: #e38b2d;
  margin-bottom: 15px;
  font-weight: 700;
}

.step-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: left;
  margin: 0;
}

.objetivos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1000px;
  margin: 30px auto;
  justify-items: center;
  justify-content: center;
}

.objetivos-column {
  width: 100%;
  max-width: 450px;
  display: flex;
  justify-content: center;
}

.objetivos-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: left;
  width: 100%;
}

.objetivos-list li {
  font-size: 1.15rem;
  padding: 18px 0 18px 50px;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.objetivos-list li:last-child {
  border-bottom: none;
}

.objetivos-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #e38b2d, #f5a04a);
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(227, 139, 45, 0.3);
  line-height: 35px;
  text-align: center;
}

.objetivos-list li:hover {
  color: #e38b2d;
  padding-left: 55px;
}

.objetivos-list li:hover::before {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(227, 139, 45, 0.4);
}

/* Carousel */
.carousel-container {
  margin-top: 10px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 400px;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  color: #333;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

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

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

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

.list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.list li {
  font-size: 1.1rem;
  padding: 12px 0;
  color: #555;
  position: relative;
  padding-left: 35px;
  display: inline-block;
  text-align: left;
}

.list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e38b2d;
  font-size: 1.3rem;
  font-weight: bold;
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 139, 45, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #e38b2d;
}

.card p {
  color: #666;
  font-size: 1rem;
}

.cta {
  background: #e38b2d;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

/* Why GrauCoach section */
#porque {
  padding-top: 80px;
  background: #f6f1ea;
}

#porque h2 {
  margin-bottom: 10px;
}

.why-subtitle {
  text-align: center;
  color: #333;
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto 30px;
  line-height: 1.5;
  font-weight: 600;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto 20px;
  justify-content: center;
}

.why-card {
  flex: 0 1 calc(33.333% - 12px);
  min-width: 260px;
  background: white;
  border-radius: 14px;
  padding: 18px 16px;
  border: 1px solid #eee;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.why-quote {
  margin: 14px 0 0;
  padding: 10px 0 0 14px;
  border-left: 3px solid #e38b2d;
  font-style: italic;
  font-size: 0.9rem;
  color: #888;
  line-height: 1.5;
}

.why-cta {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.why-cta p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 14px;
}

@media (max-width: 700px) {
  .why-card {
    flex: 0 1 100%;
    min-width: 0;
    padding: 22px 18px;
  }

  .why-subtitle {
    font-size: 1rem;
  }
}

/* Pricing section */
#precios.section {
  padding: 20px 20px 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#precios.section > * {
  width: 100%;
  max-width: 700px;
}

#precios.section > .duration-toggle {
  width: max-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

#precios.section h2 {
  margin-bottom: 20px;
}

#precios .pricing-category {
  margin-bottom: 15px;
}

#precios .duration-toggle {
  margin-bottom: 25px;
}

#precios .pricing-bonos {
  margin-bottom: 20px;
}

#precios .pricing-smallprint {
  margin-top: 15px;
}

.pricing-toggle {
  display: inline-flex;
  background: #f0ebe4;
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 30px;
}

.pricing-toggle-btn {
  padding: 10px 28px;
  border: none;
  border-radius: 50px;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  transition: all 0.3s;
}

.pricing-toggle-btn.active {
  background: #e38b2d;
  color: white;
  box-shadow: 0 2px 10px rgba(227,139,45,0.3);
}

#precios h2 {
  margin-bottom: 10px;
}

.pricing-intro {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.pricing-category {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 5px;
  text-align: center;
  font-weight: 700;
}

.pricing-category-desc {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 35px;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 850px;
  margin: 0 auto 20px;
  padding-top: 15px;
}

.duration-toggle {
  display: flex;
  width: max-content;
  background: #f0f0f0;
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 25px;
  gap: 4px;
}

.duration-toggle-btn {
  border: none;
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.duration-toggle-btn:hover {
  color: #333;
}

.duration-toggle-btn.is-active {
  background: #e38b2d;
  color: #fff;
}

.pricing-bonos {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
}

.pricing-bonos[hidden] {
  display: none;
}

.pricing-per-session {
  text-align: center;
  color: #e38b2d;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: -8px;
  margin-bottom: 10px;
}

.pricing-pair span {
  color: #999;
  font-size: 0.85rem;
  font-weight: 400;
}

.pricing-bonos:has(.pricing-bono-card:only-child) {
  grid-template-columns: 1fr;
  max-width: 280px;
}

.pricing-card {
  background: white;
  border: 2px solid #eee;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card--popular {
  border-color: #e38b2d;
  border-width: 2px;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e38b2d;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-bono-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pricing-bono-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e38b2d;
  color: white;
  font-size: 14px;
  font-weight: 700;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
}

.pricing-bono-card h4 {
  margin: 0;
}

.pricing-card h4 {
  font-size: 1.3rem;
  color: #333;
  margin: 0 0 6px;
  font-weight: 700;
}

.pricing-freq {
  color: #888;
  font-size: 0.9rem;
  margin: 0 0 12px;
}

.pricing-icon {
  color: #e38b2d;
  vertical-align: middle;
  display: inline-block;
}

.pricing-price {
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 4px;
  line-height: 1;
  letter-spacing: -0.5px;
}

.pricing-price span {
  font-size: 0.8rem;
  color: #999;
  font-weight: 400;
}

p.pricing-per-session {
  color: #bbb;
  font-size: 0.7rem;
  margin: 2px 0 0;
  font-weight: 400;
  line-height: 1.2;
}

.pricing-pair {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.pricing-divider {
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: #ddd;
  margin: 5px auto 10px;
}

/* Small print */
.pricing-smallprint {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pricing-smallprint p {
  color: #aaa;
  font-size: 0.8rem;
  margin: 4px 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pricing-plans {
    grid-template-columns: 1fr 1fr;
    max-width: 600px;
  }

  .pricing-bonos {
    max-width: 400px;
  }

  .pricing-card {
    padding: 18px 14px;
  }

  .pricing-price {
    font-size: 2rem;
  }
}

@media (max-width: 500px) {
  .pricing-plans {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .pricing-bonos {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .pricing-card {
    padding: 16px 12px;
  }

  .pricing-price {
    font-size: 1.8rem;
  }

  .pricing-bono-badge {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .pricing-badge {
    font-size: 10px;
    padding: 3px 12px;
  }

  .pricing-smallprint p {
    font-size: 0.85rem;
  }
}

/* FAQ accordion */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border-color: #e0d6c8;
}

.faq-item.open {
  border-color: #e38b2d;
  box-shadow: 0 4px 14px rgba(227, 139, 45, 0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 22px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-arrow {
  font-size: 1.4rem;
  color: #e38b2d;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 22px 22px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Lead capture form */
.lead-section {
  background: #f6f1ea;
  padding: 80px 20px;
  min-height: 100vh;
  min-height: 100svh;
  box-sizing: border-box;
}

.lead-container {
  max-width: 700px;
  margin: 0 auto;
}

.lead-title {
  text-align: center;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.lead-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.lead-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s;
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  outline: none;
  border-color: #e38b2d;
}

.lead-field textarea {
  resize: vertical;
}

.lead-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: #e38b2d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
  font-family: inherit;
}

.lead-submit:hover {
  background: #cc7a24;
}

.lead-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lead-wa-alt {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: #888;
}

.lead-wa-alt a {
  color: #25d366;
  font-weight: 600;
  text-decoration: none;
}

.lead-wa-alt a:hover {
  text-decoration: underline;
}

/* Thank you message */
.lead-thankyou {
  text-align: center;
  padding: 40px 20px;
}

.lead-thankyou-check {
  width: 60px;
  height: 60px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.lead-thankyou h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.lead-thankyou p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 8px;
}

.lead-thankyou-calendly {
  color: #888;
  font-size: 0.95rem;
}

.lead-thankyou-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 28px;
  font-size: 16px;
  text-decoration: none;
}

@media (max-width: 600px) {
  .lead-form-row {
    grid-template-columns: 1fr;
  }

  .lead-title {
    font-size: 1.6rem;
  }

  .lead-section {
    padding: 50px 15px;
  }
}

.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.btn-primary {
  background: #e38b2d;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #e38b2d;
  box-shadow: 0 4px 15px rgba(227, 139, 45, 0.3);
}

.btn-primary:hover {
  background: #d67a1f;
  border-color: #d67a1f;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 139, 45, 0.4);
}

.btn-secondary {
  background: white;
  color: #e38b2d;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: transparent;
  color: white;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
}

.lang-btn {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: #666;
  border-radius: 4px;
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
}

.lang-btn:hover {
  color: #333;
}

.lang-btn.active {
  color: #e38b2d;
  background: rgba(227, 139, 45, 0.1);
}

/* Quiz Form */
.quiz-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
}

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

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e38b2d;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-inline {
  flex-direction: row;
  gap: 20px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.radio-option:hover {
  background: rgba(227, 139, 45, 0.05);
}

.radio-option input[type="radio"] {
  accent-color: #e38b2d;
}

/* Quiz Results */
.quiz-results {
  text-align: center;
}

.result-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.result-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.result-card h3 {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.result-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.bmi-bar {
  height: 6px;
  background: linear-gradient(to right, #3498db 0%, #27ae60 30%, #e38b2d 60%, #e74c3c 100%);
  border-radius: 3px;
  position: relative;
  margin-top: 15px;
}

.bmi-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  transform: translateX(-50%);
  border: 2px solid white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  transition: left 0.5s ease;
}

.fitness-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 15px;
}

.fitness-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e0e0e0;
  transition: background 0.3s ease;
}

.fitness-dot.active {
  background: #e38b2d;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background: #f0ebe4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-initial {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e38b2d;
}

.testimonial-stars {
  color: #e38b2d;
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
  text-align: left;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 3rem;
  color: #e38b2d;
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}

.testimonial-text::after {
  content: '\201D';
  font-size: 3rem;
  color: #e38b2d;
  line-height: 0;
  vertical-align: -0.5em;
  margin-left: 4px;
}

.testimonial-author {
  font-size: 0.95rem;
  color: #333;
}

.testimonial-author strong {
  color: #e38b2d;
}

/* Case study cards */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.cs-card {
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 24px;
  background: white;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.cs-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.cs-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.cs-photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e38b2d;
}

.cs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 20px;
  font-weight: 700;
}

.cs-meta {
  flex: 1;
}

.cs-meta strong {
  display: block;
  font-size: 0.95rem;
  color: #333;
}

.cs-meta span {
  font-size: 0.8rem;
  color: #999;
}

.cs-stars {
  color: #e38b2d;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.cs-body {
  flex: 1;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 14px 0;
  margin-bottom: 14px;
}

.cs-row {
  display: flex;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.85rem;
}

.cs-label {
  font-weight: 700;
  color: #333;
  min-width: 100px;
  flex-shrink: 0;
}

.cs-value {
  color: #555;
}

.cs-value--result {
  color: #28a745;
  font-weight: 600;
}

.cs-quote {
  font-size: 0.9rem;
  font-style: italic;
  color: #555;
  border-left: 3px solid #e38b2d;
  padding-left: 14px;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }

  .cs-row {
    flex-direction: column;
    gap: 2px;
  }

  .cs-label {
    min-width: auto;
  }
}

/* Sticky CTA (mobile) */
.sticky-cta {
  position: fixed;
  bottom: -60px;
  left: 0;
  right: 0;
  z-index: 998;
  transition: bottom 0.3s ease;
  display: none;
}

.sticky-cta.visible {
  bottom: 0;
}

.sticky-cta a {
  display: block;
  background: #e38b2d;
  color: white;
  text-align: center;
  padding: 16px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.sticky-cta a:hover {
  background: #d07a1f;
}

/* Exit Intent Popup */
.exit-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.exit-popup {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.exit-popup h2 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 10px;
}

.exit-popup p {
  color: #666;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.exit-email-form {
  display: flex;
  gap: 10px;
}

.exit-email-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}

.exit-email-form input[type="email"]:focus {
  outline: none;
  border-color: #e38b2d;
}

.exit-email-form button {
  white-space: nowrap;
}

.exit-success {
  color: #28a745;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 500px) {
  .exit-email-form {
    flex-direction: column;
  }

  .exit-popup {
    padding: 30px 20px;
  }

  .exit-popup h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 1024px) {
  .sticky-cta {
    display: block;
  }

  .whatsapp-float {
    bottom: 70px !important;
    right: 15px !important;
    width: 50px !important;
    height: 50px !important;
  }

  .whatsapp-float svg {
    width: 24px !important;
    height: 24px !important;
  }

  .promo-float {
    bottom: 130px !important;
    right: 15px !important;
    width: 50px !important;
    height: 50px !important;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Promo Popup */
.promo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.promo-popup {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.promo-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.promo-close:hover {
  color: #333;
}

.promo-badge-label {
  display: inline-block;
  background: #e38b2d;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.promo-title {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.3;
}

.promo-desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.promo-spots-bar {
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.promo-spots-fill {
  height: 100%;
  background: linear-gradient(90deg, #e38b2d, #e74c3c);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.promo-spots-text {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 24px;
  font-weight: 600;
}

.promo-cta {
  display: block;
  background: #e38b2d;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.promo-cta:hover {
  background: #d07a1f;
  transform: translateY(-1px);
}

.promo-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.promo-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo-form input {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.promo-form input:focus {
  outline: none;
  border-color: #e38b2d;
}

.promo-code {
  font-family: 'Raleway', monospace;
  font-size: 1.8rem;
  font-weight: 800;
  color: #e38b2d;
  background: rgba(227, 139, 45, 0.08);
  padding: 12px 24px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

/* Promo Float Button */
.promo-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #e38b2d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(227, 139, 45, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: bounceIn 0.4s ease;
}

.promo-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(227, 139, 45, 0.6);
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar-container {
    padding: 0 15px;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-container {
    padding: 0 20px;
    min-height: 50px;
  }

  .navbar-logo img {
    height: 60px;
  }

  .navbar-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(243, 240, 234, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    flex-direction: column;
    gap: 4px;
    padding: 15px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }

  .navbar-menu li {
    width: 100%;
  }

  .navbar-link {
    display: block;
    padding: 14px 18px;
    font-size: 15px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 4px;
  }

  .navbar-link::after {
    display: none;
  }

  .navbar-link::before {
    border-radius: 10px;
  }

  .navbar-link:hover {
    transform: translateX(4px);
  }

  .hero {
    padding: 100px 15px 60px;
    min-height: 100vh;
    min-height: 100svh;
    background-attachment: scroll !important;
  }

  .hero h1 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .hero-divider {
    width: 60px;
    margin: 15px auto 20px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .btn-primary {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .section {
    padding: 60px 15px;
  }

  .section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .section p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .objetivos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px auto;
  }

  .objetivos-list li {
    font-size: 1rem;
    padding: 14px 0 14px 45px;
  }

  .carousel-container {
    margin-top: 40px;
  }

  .carousel-slide {
    height: 250px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-dots {
    bottom: 15px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .card {
    padding: 25px 20px;
  }

  .card h3 {
    font-size: 1.3rem;
  }

  .cta {
    padding: 60px 15px;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .cta p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .list li {
    font-size: 1rem;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .navbar-logo img {
    height: 50px;
  }

  .hero {
    padding: 80px 15px 50px;
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero h1 {
    font-size: 0.95rem;
  }

  .hero-visual-title {
    font-size: 1.8rem;
  }

  .hero-h2-sub {
    font-size: 0.85rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-subtitle br {
    display: none;
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .section {
    padding: 40px 12px;
  }

  .section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .section p {
    font-size: 0.95rem;
    padding: 0 5px;
  }

  .objetivos-list li {
    font-size: 0.9rem;
    padding: 12px 0 12px 38px;
  }

  .objetivos-list li::before {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    line-height: 28px;
  }

  .carousel-slide {
    height: 200px;
  }

  .sesiones-content {
    margin: 20px auto 0;
  }

  .sesion-step {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    text-align: center;
  }

  .step-number {
    align-self: center;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .step-content h3 {
    font-size: 1.1rem;
    text-align: center;
  }

  .step-content p {
    text-align: center;
    font-size: 0.9rem;
  }

  .grid {
    gap: 15px;
  }

  .card {
    padding: 20px 15px;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .testimonial-text::before,
  .testimonial-text::after {
    font-size: 2rem;
  }

  .sobre-mi-content p {
    font-size: 0.95rem;
  }

  .cta {
    padding: 40px 15px;
  }

  .cta h2 {
    font-size: 1.4rem;
  }

  .cta p {
    font-size: 0.9rem;
  }

  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .promo-popup {
    padding: 30px 20px;
  }

  .promo-discount {
    font-size: 3rem;
  }

  .exit-popup {
    padding: 30px 20px;
  }

  .exit-popup h2 {
    font-size: 1.3rem;
  }

  .result-cards {
    grid-template-columns: 1fr;
  }

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

  .lang-switcher {
    gap: 2px;
  }

  .lang-btn {
    padding: 3px 6px;
    font-size: 11px;
  }

  .footer {
    padding: 20px 15px;
    margin-bottom: 55px;
  }

  .footer p {
    font-size: 0.85rem;
  }
}
