/* ── web-sections.css — Base styles for layout builder sections ── */
/* All colors use CSS variables from web.css / web-themes.css */

/* ── Section Base ── */
.wt-section {
  width: 100%;
  position: relative;
}
.wt-section-wrapper {
  position: relative;
  width: 100%;
}

/* ── Editor Mode (when iframe loaded with ?_editor=1) ── */
body.web-editor-mode .wt-section-wrapper {
  cursor: pointer;
  transition: outline .15s ease;
}
body.web-editor-mode .wt-section-wrapper:hover {
  outline: 2px dashed #3b82f6;
  outline-offset: -2px;
}
body.web-editor-mode .wt-section-wrapper:hover::before {
  content: attr(data-section-name);
  position: absolute;
  top: 0;
  left: 0;
  background: #3b82f6;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  z-index: 100;
  border-radius: 0 0 6px 0;
  font-family: -apple-system,system-ui,sans-serif;
  pointer-events: none;
}
body.web-editor-mode .wt-section-wrapper.wt-section-selected {
  outline: 3px solid #3b82f6;
  outline-offset: -3px;
}
body.web-editor-mode .wt-section-wrapper.wt-section-selected::before {
  content: attr(data-section-name);
  position: absolute;
  top: 0;
  left: 0;
  background: #3b82f6;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  z-index: 100;
  border-radius: 0 0 6px 0;
  font-family: -apple-system,system-ui,sans-serif;
  pointer-events: none;
}
/* Disable interactive elements visually in editor mode */
body.web-editor-mode a,
body.web-editor-mode button,
body.web-editor-mode input,
body.web-editor-mode form {
  pointer-events: none;
}
/* Re-enable pointer-events on the section wrapper itself for click capture */
body.web-editor-mode .wt-section-wrapper {
  pointer-events: auto;
}
.wt-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--web-heading, var(--web-text, #111));
  margin-bottom: 8px;
  text-align: center;
}
.wt-section-subtitle {
  font-size: 1.05rem;
  color: var(--web-muted, #666);
  text-align: center;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Announcement Bar ── */
.wt-section-announcement-bar {
  padding: 10px 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 50;
}
.wt-announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}
.wt-announce-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 0 4px;
  line-height: 1;
}
.wt-announce-close:hover { opacity: 1; }

/* ── Hero Fullscreen ── */
.wt-section-hero-fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  text-align: center;
}
.wt-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.4;
  z-index: 1;
}
.wt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 24px;
}
.wt-hero-logo {
  max-width: 200px;
  max-height: 120px;
  margin: 0 auto 24px;
  display: block;
}
.wt-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.wt-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 32px;
  opacity: 0.9;
  font-weight: 400;
}
.wt-hero-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.wt-hero-btn-primary {
  background: var(--web-primary, #2563eb);
  color: #fff;
  border-color: var(--web-primary, #2563eb);
}
.wt-hero-btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); }
.wt-hero-btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.wt-hero-btn-outline:hover { background: rgba(255,255,255,0.15); }
.wt-hero-btn-white {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.wt-hero-btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }

/* ── Hero Carousel ── */
.wt-section-hero-carousel {
  position: relative;
  overflow: hidden;
}
.wt-section-hero-carousel .wt-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.wt-hero-slide {
  min-width: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}
.wt-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
}
.wt-hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  max-width: 700px;
}

/* ── Carousel Base ── */
.wt-carousel {
  position: relative;
  overflow: hidden;
}
.wt-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.wt-carousel-prev, .wt-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.2s;
  color: #333;
}
.wt-carousel-prev { left: 12px; }
.wt-carousel-next { right: 12px; }
.wt-carousel-prev:hover, .wt-carousel-next:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.wt-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}
.wt-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.wt-carousel-dot.active {
  background: var(--web-primary, #2563eb);
  width: 28px;
  border-radius: 5px;
}

/* ── Promo Banners ── */
.wt-section-promo-banners {
  padding: 32px 0;
}
.wt-promo-grid {
  display: grid;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-promo-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-promo-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-promo-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.wt-promo-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 180px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease;
}
.wt-promo-card:hover { transform: translateY(-4px); }
.wt-promo-card-content {
  padding: 20px;
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.wt-promo-card-title {
  font-size: 1.1rem;
  font-weight: 700;
}

/* ── Products Section ── */
.wt-section-products-featured,
.wt-section-products-brand,
.wt-section-best-sellers {
  padding: 48px 0;
}
.wt-products-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.wt-products-tab {
  padding: 8px 20px;
  border: 2px solid var(--web-line, #ddd);
  border-radius: 50px;
  background: transparent;
  color: var(--web-text, #333);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.wt-products-tab.active {
  background: var(--web-primary, #2563eb);
  color: #fff;
  border-color: var(--web-primary, #2563eb);
}
.wt-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-product-card {
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wt-product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.wt-product-img {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--web-surface, #f8f9fa);
  overflow: hidden;
}
.wt-product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.wt-product-card:hover .wt-product-img img { transform: scale(1.05); }
.wt-product-img-placeholder { color: var(--web-muted, #ccc); }
.wt-product-info {
  padding: 14px;
}
.wt-product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--web-text, #111);
  margin-bottom: 6px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wt-product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--web-primary, #2563eb);
}

/* ── Services Grid ── */
.wt-section-services-grid {
  padding: 48px 0;
}
.wt-services-grid {
  display: grid;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-services-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-services-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-services-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.wt-service-card {
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.wt-service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.wt-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--web-primary, #2563eb) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--web-primary, #2563eb);
}
.wt-service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--web-text, #111);
  margin-bottom: 8px;
}
.wt-service-desc {
  font-size: 0.9rem;
  color: var(--web-muted, #666);
  line-height: 1.5;
}
.wt-service-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--web-primary, #2563eb);
  margin-top: 12px;
}

/* ── Services Pricing (barbershop style) ── */
.wt-section-services-pricing {
  padding: 48px 0;
}
.wt-pricing-grid {
  display: grid;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-pricing-grid[data-cols="1"] { grid-template-columns: 1fr; }
.wt-pricing-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-pricing-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 10px;
  transition: background 0.2s;
}
.wt-pricing-item:hover {
  background: var(--web-surface, #f8f9fa);
}
.wt-pricing-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--web-text, #111);
}
.wt-pricing-duration {
  font-size: 0.85rem;
  color: var(--web-muted, #666);
  margin-top: 2px;
}
.wt-pricing-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wt-pricing-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--web-primary, #2563eb);
  white-space: nowrap;
}
.wt-pricing-book-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--web-primary, #2563eb);
  background: transparent;
  color: var(--web-primary, #2563eb);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.wt-pricing-book-btn:hover {
  background: var(--web-primary, #2563eb);
  color: #fff;
}

/* ── Team Grid ── */
.wt-section-team-grid {
  padding: 48px 0;
}
.wt-team-grid {
  display: grid;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-team-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-team-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-team-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.wt-team-grid[data-cols="5"] { grid-template-columns: repeat(5, 1fr); }
.wt-team-card {
  text-align: center;
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.wt-team-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.wt-team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--web-surface, #f0f0f0);
}
.wt-team-info {
  padding: 16px;
}
.wt-team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--web-text, #111);
  margin-bottom: 4px;
}
.wt-team-role {
  font-size: 0.85rem;
  color: var(--web-muted, #666);
  margin-bottom: 8px;
}
.wt-team-location {
  font-size: 0.8rem;
  color: var(--web-muted, #999);
  margin-bottom: 12px;
}
.wt-team-book-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--web-primary, #2563eb);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.wt-team-book-btn:hover { filter: brightness(1.1); }

/* ── Locations / Map ── */
.wt-section-locations-map {
  padding: 48px 0;
}
.wt-locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-location-card {
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 14px;
  padding: 24px;
}
.wt-location-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--web-text, #111);
  margin-bottom: 12px;
}
.wt-location-detail {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--web-muted, #666);
}
.wt-location-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--web-primary, #2563eb);
}

/* ── Brands Carousel ── */
.wt-section-brands-carousel {
  padding: 48px 0;
  background: var(--web-surface, #f8f9fa);
}
.wt-brands-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: wtBrandsScroll 30s linear infinite;
}
.wt-brand-logo {
  height: 48px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
  flex-shrink: 0;
}
.wt-brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes wtBrandsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Testimonials ── */
.wt-section-testimonials {
  padding: 48px 0;
}
.wt-testimonial-card {
  min-width: 100%;
  padding: 40px 24px;
  text-align: center;
}
.wt-testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--web-text, #333);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.wt-testimonial-author {
  font-weight: 700;
  color: var(--web-text, #111);
}
.wt-testimonial-role {
  font-size: 0.85rem;
  color: var(--web-muted, #666);
}

/* ── Gallery Tabs ── */
.wt-section-gallery-tabs {
  padding: 48px 0;
}
.wt-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.wt-gallery-tab {
  padding: 8px 20px;
  border: 2px solid var(--web-line, #ddd);
  border-radius: 50px;
  background: transparent;
  color: var(--web-text, #333);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.wt-gallery-tab.active {
  background: var(--web-primary, #2563eb);
  color: #fff;
  border-color: var(--web-primary, #2563eb);
}
.wt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}
.wt-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.wt-gallery-item:hover img { transform: scale(1.05); }

/* ── Blog / News ── */
.wt-section-blog-news {
  padding: 48px 0;
}
.wt-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-blog-card {
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.wt-blog-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.wt-blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.wt-blog-info {
  padding: 20px;
}
.wt-blog-date {
  font-size: 0.8rem;
  color: var(--web-muted, #999);
  margin-bottom: 8px;
}
.wt-blog-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--web-text, #111);
  margin-bottom: 8px;
  line-height: 1.3;
}
.wt-blog-excerpt {
  font-size: 0.9rem;
  color: var(--web-muted, #666);
  line-height: 1.5;
}

/* ── Newsletter ── */
/* v3.1 (2026-04-27 update): tematizar newsletter para que combine con cada theme.
   Antes era blanco hardcoded → chocaba en themes oscuros (barbería, gym, etc.).
   Ahora usa un tinte sutil del accent sobre el fondo del theme (color-mix). */
.wt-section-newsletter {
  padding: 56px 0;
  background:
    radial-gradient(ellipse at top, color-mix(in srgb, var(--web-primary, #2563eb) 18%, transparent), transparent 70%),
    color-mix(in srgb, var(--web-primary, #2563eb) 6%, var(--web-bg, #0f172a));
  border-top: 1px solid color-mix(in srgb, var(--web-primary, #2563eb) 22%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--web-primary, #2563eb) 22%, transparent);
  text-align: center;
  color: var(--web-text, #f1f5f9);
}
.wt-newsletter-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-newsletter-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--web-text, #f1f5f9);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.wt-newsletter-subtitle {
  font-size: 1rem;
  color: var(--web-muted, #94a3b8);
  margin-bottom: 28px;
  opacity: 0.9;
}
.wt-newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.wt-newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--web-line, #ddd);
  border-radius: 50px;
  font-size: 1rem;
  background: var(--web-card, #fff);
  color: var(--web-text, #111);
  outline: none;
  transition: border-color 0.2s;
}
.wt-newsletter-input:focus {
  border-color: var(--web-primary, #2563eb);
}
.wt-newsletter-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  background: var(--web-primary, #2563eb);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.wt-newsletter-btn:hover { filter: brightness(1.1); }

/* ── Banner Fullwidth ── */
.wt-section-banner-fullwidth {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  text-decoration: none;
  color: #fff;
}
.wt-banner-overlay {
  position: absolute;
  inset: 0;
  background: #000;
}
.wt-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
}
.wt-banner-title {
  font-size: 2.5rem;
  font-weight: 900;
}
.wt-banner-subtitle {
  font-size: 1.2rem;
  margin-top: 8px;
  opacity: 0.9;
}

/* ── Image Links (2 cols) ── */
.wt-section-image-links {
  padding: 32px 0;
}
.wt-image-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-image-link {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}
.wt-image-link-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.wt-image-link-title {
  font-size: 1.3rem;
  font-weight: 800;
}

/* ── Contact Form ── */
.wt-section-contact-form {
  padding: 48px 0;
}
.wt-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wt-contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--web-text, #333);
}
.wt-contact-info-item a {
  color: inherit;
  text-decoration: none;
}
.wt-contact-info-item a:hover {
  color: var(--web-primary, #2563eb);
}
.wt-contact-info-item svg {
  flex-shrink: 0;
  color: var(--web-primary, #2563eb);
}

/* ── Footer Enhanced ── */
.wt-section-footer-enhanced {
  background: var(--web-footer-bg, #111);
  color: var(--web-footer-text, #ccc);
  padding: 48px 0 0;
}
.wt-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 32px;
}
/* v3.1 (2026-04-27 fix): primera columna (brand) más estrecha que las demás
   para no dejar el logo perdido con mucho espacio en blanco a la derecha (image #21). */
.wt-footer-inner[data-cols="2"] { grid-template-columns: minmax(220px, 1fr) 2fr; }
.wt-footer-inner[data-cols="3"] { grid-template-columns: minmax(220px, 1fr) 1.5fr 1.5fr; }
.wt-footer-inner[data-cols="4"] { grid-template-columns: minmax(220px, 1fr) 1.4fr 1.4fr 1.4fr; }
.wt-footer-brand { align-self: start; }
@media (max-width: 768px) {
  .wt-footer-inner[data-cols="2"],
  .wt-footer-inner[data-cols="3"],
  .wt-footer-inner[data-cols="4"] {
    grid-template-columns: 1fr;
  }
}
.wt-footer-logo {
  max-height: 56px;
  min-height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}
.wt-footer-brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}
.wt-footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
}
.wt-footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wt-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.wt-footer-contact-item svg { opacity: 0.7; }
.wt-footer-social {
  display: flex;
  gap: 12px;
}
.wt-footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.wt-footer-social-link:hover {
  background: var(--web-primary, #2563eb);
}
.wt-footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.wt-badge {
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  font-size: 0.8rem;
  font-weight: 600;
}
.wt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wt-footer-copyright {
  font-size: 0.85rem;
  opacity: 0.6;
}
.wt-footer-powered {
  font-size: 0.8rem;
  opacity: 0.4;
}
.wt-footer-powered a {
  color: inherit;
  text-decoration: underline;
}

/* ── Header Ecommerce ── */
.wt-section-header-ecommerce {
  background: var(--web-card, #fff);
  border-bottom: 1px solid var(--web-line, #eee);
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.wt-section-header-ecommerce.wt-header-sticky {
  position: sticky;
  top: 0;
}
.wt-ecom-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.wt-ecom-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.wt-ecom-logo img {
  max-height: 40px;
  object-fit: contain;
}
.wt-ecom-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--web-text, #111);
}
/* v3 (2026-04-24): nav principal integrada al header-ecommerce */
.wt-ecom-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.wt-ecom-nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--web-text, #111);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.wt-ecom-nav-link:hover {
  background: color-mix(in srgb, var(--web-primary, #2563eb) 10%, transparent);
  color: var(--web-primary, #2563eb);
}
.wt-ecom-nav-link-active {
  color: var(--web-primary, #2563eb);
  background: color-mix(in srgb, var(--web-primary, #2563eb) 12%, transparent);
}

.wt-ecom-search {
  flex: 1;
  max-width: 400px;
  position: relative;
}
.wt-ecom-search input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border: 2px solid var(--web-line, #ddd);
  border-radius: 50px;
  font-size: 0.95rem;
  background: var(--web-surface, #f8f9fa);
  color: var(--web-text, #111);
  outline: none;
  transition: border-color 0.2s;
}
.wt-ecom-search input:focus {
  border-color: var(--web-primary, #2563eb);
}
.wt-ecom-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--web-muted, #999);
}
.wt-ecom-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.wt-ecom-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: none;
  background: transparent;
  color: var(--web-text, #333);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}
.wt-ecom-action-btn:hover {
  background: var(--web-surface, #f0f0f0);
}
.wt-ecom-cart-btn {
  position: relative;
}
.wt-ecom-cart-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--web-primary, #2563eb);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ── Category Nav ── */
.wt-section-category-nav {
  background: var(--web-surface, #f8f9fa);
  border-bottom: 1px solid var(--web-line, #eee);
}
.wt-catnav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.wt-catnav-item {
  position: relative;
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--web-text, #333);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  cursor: pointer;
  background: transparent;
  border: none;
}
.wt-catnav-item:hover {
  color: var(--web-primary, #2563eb);
}
.wt-catnav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--web-card, #fff);
  border: 1px solid var(--web-line, #eee);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 50;
  padding: 8px 0;
}
.wt-catnav-item:hover .wt-catnav-dropdown {
  display: block;
}
.wt-catnav-sub {
  display: block;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--web-text, #333);
  text-decoration: none;
  transition: background 0.15s;
}
.wt-catnav-sub:hover {
  background: var(--web-surface, #f0f0f0);
  color: var(--web-primary, #2563eb);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .wt-hero-title { font-size: 2.2rem; }
  .wt-hero-subtitle { font-size: 1.05rem; }
  .wt-section-title { font-size: 1.5rem; }

  .wt-contact-inner { grid-template-columns: 1fr; }
  .wt-image-links-grid { grid-template-columns: 1fr; }
  .wt-promo-grid[data-cols="3"],
  .wt-promo-grid[data-cols="4"] { grid-template-columns: 1fr; }
  .wt-services-grid[data-cols="3"],
  .wt-services-grid[data-cols="4"] { grid-template-columns: 1fr; }
  .wt-pricing-grid[data-cols="3"] { grid-template-columns: 1fr; }
  .wt-team-grid[data-cols="4"],
  .wt-team-grid[data-cols="5"] { grid-template-columns: repeat(2, 1fr); }
  .wt-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .wt-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .wt-ecom-header-inner { flex-wrap: wrap; gap: 10px; }
  .wt-ecom-nav { order: 5; flex-basis: 100%; justify-content: center; gap: 2px; overflow-x: auto; padding-bottom: 2px; }
  .wt-ecom-nav-link { padding: 6px 10px; font-size: 0.78rem; }
  .wt-ecom-search { max-width: 100%; order: 3; flex-basis: 100%; }
  .wt-catnav-inner { gap: 0; }

  .wt-footer-inner { grid-template-columns: 1fr; }
  .wt-footer-bottom { flex-direction: column; gap: 8px; }

  .wt-newsletter-form { flex-direction: column; }
  .wt-newsletter-btn { width: 100%; }
}

@media (max-width: 430px) {
  .wt-hero-title { font-size: 1.8rem; }
  .wt-section-title { font-size: 1.3rem; }
  .wt-products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .wt-product-img { height: 150px; }
  .wt-product-info { padding: 10px; }
  .wt-product-name { font-size: 0.85rem; }
  .wt-product-price { font-size: 1rem; }
  .wt-team-grid[data-cols="3"],
  .wt-team-grid[data-cols="4"],
  .wt-team-grid[data-cols="5"] { grid-template-columns: repeat(2, 1fr); }
  .wt-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .wt-blog-grid { grid-template-columns: 1fr; }
  .wt-locations-grid { grid-template-columns: 1fr; }
  .wt-ecom-action-btn span { display: none; } /* Hide text on very small screens */
  .wt-pricing-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .wt-pricing-right { width: 100%; justify-content: space-between; }
  .wt-hero-slide { min-height: 280px !important; }
  .wt-hero-slide-content h2 { font-size: 1.5rem; }
}

/* Ultra-small screens (iPhone SE, 320-360px) */
@media (max-width: 360px) {
  .wt-products-grid { grid-template-columns: 1fr; }
  .wt-team-grid[data-cols="2"],
  .wt-team-grid[data-cols="3"],
  .wt-team-grid[data-cols="4"],
  .wt-team-grid[data-cols="5"] { grid-template-columns: 1fr; }
  .wt-gallery-grid { grid-template-columns: 1fr; }
  .wt-promo-grid[data-cols="2"] { grid-template-columns: 1fr; }
  .wt-ecom-header-inner { padding: 8px 12px; }
}

/* ==========================================================================
   v2 (2026-04-23) — Secciones ricas para templates por tier
   Theme-safe: usa CSS vars del tema (no hardcoded colors)
   ========================================================================== */

/* video-hero ---------------------------------------------------------------- */
.wt-v2-videohero { position: relative; width: 100%; overflow: hidden; background-color: #000; }
/* v3 (2026-04-24): poster siempre visible al fondo (z:0), video encima (z:1).
   Si video carga OK se superpone vía opacity; si falla, queda la imagen. */
.wt-v2-videohero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.wt-v2-videohero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.wt-v2-videohero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,var(--wt-v2-overlay, 0.45)); z-index: 1; }
.wt-v2-videohero-content { position: relative; z-index: 2; max-width: 960px; margin: 0 auto; padding: 24px; text-align: center; color: #fff; display: flex; flex-direction: column; gap: 16px; align-items: center; justify-content: center; min-height: inherit; }
.wt-v2-videohero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin: 0; line-height: 1.1; }
.wt-v2-videohero-subtitle { font-size: clamp(1rem, 2vw, 1.3rem); opacity: 0.95; margin: 0; max-width: 720px; }
.wt-v2-videohero-cta { display: inline-block; padding: 14px 36px; min-height: 48px; border-radius: 10px; background: var(--blue); color: #fff; font-weight: 700; text-decoration: none; transition: transform .15s ease; }
.wt-v2-videohero-cta:hover { transform: translateY(-2px); }
.wt-v2-videohero-cta[data-style="outline"] { background: transparent; border: 2px solid #fff; color: #fff; }
/* v3.1 (2026-04-27): forzar texto oscuro cuando el botón es blanco — antes usaba
   var(--text) que en algunos themes resolvía a #fff y dejaba el CTA ilegible. */
.wt-v2-videohero-cta[data-style="white"] { background: #fff !important; color: #111 !important; border: 2px solid #fff; }
.wt-v2-videohero-cta[data-style="white"]:hover { background: rgba(255,255,255,.95) !important; }

/* video-embed --------------------------------------------------------------- */
.wt-v2-videoembed { padding: 60px 24px; }
.wt-v2-videoembed-inner { max-width: 960px; margin: 0 auto; }
.wt-v2-videoembed-header { text-align: center; margin-bottom: 32px; }
.wt-v2-videoembed-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-videoembed-desc { color: var(--text); opacity: 0.75; max-width: 640px; margin: 0 auto; }
.wt-v2-videoembed-frame { position: relative; width: 100%; border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 20px 60px color-mix(in srgb, var(--text) 15%, transparent); }
.wt-v2-videoembed-frame[data-aspect="16:9"] { aspect-ratio: 16/9; }
.wt-v2-videoembed-frame[data-aspect="4:3"] { aspect-ratio: 4/3; }
.wt-v2-videoembed-frame[data-aspect="9:16"] { aspect-ratio: 9/16; max-width: 380px; margin: 0 auto; }
.wt-v2-videoembed-frame[data-aspect="1:1"] { aspect-ratio: 1/1; max-width: 560px; margin: 0 auto; }
.wt-v2-videoembed-frame iframe,
.wt-v2-videoembed-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.wt-v2-videoembed-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.wt-v2-videoembed-playicon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; border-radius: 50%; background: color-mix(in srgb, var(--blue) 90%, transparent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; cursor: pointer; pointer-events: none; }

/* before-after-slider ------------------------------------------------------- */
.wt-v2-ba { padding: 60px 24px; }
.wt-v2-ba-inner { max-width: 1200px; margin: 0 auto; }
.wt-v2-ba-header { text-align: center; margin-bottom: 32px; }
.wt-v2-ba-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-ba-subtitle { color: var(--text); opacity: 0.75; }
.wt-v2-ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.wt-v2-ba-item { background: var(--card); border-radius: 14px; overflow: hidden; box-shadow: 0 4px 16px color-mix(in srgb, var(--text) 6%, transparent); }
.wt-v2-ba-slider-wrap { position: relative; width: 100%; aspect-ratio: 4/3; user-select: none; overflow: hidden; cursor: col-resize; touch-action: none; }
.wt-v2-ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wt-v2-ba-img[data-role="after"] { clip-path: inset(0 0 0 50%); }
.wt-v2-ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #fff; pointer-events: none; box-shadow: 0 0 12px rgba(0,0,0,0.4); }
.wt-v2-ba-handle::after { content: "⇔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--text); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; box-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.wt-v2-ba-label { position: absolute; top: 12px; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; background: rgba(0,0,0,0.7); color: #fff; text-transform: uppercase; letter-spacing: 0.05em; }
.wt-v2-ba-label[data-side="before"] { left: 12px; }
.wt-v2-ba-label[data-side="after"] { right: 12px; }
.wt-v2-ba-caption { padding: 14px 16px; color: var(--text); font-weight: 600; text-align: center; }

/* timeline ------------------------------------------------------------------ */
.wt-v2-timeline { padding: 60px 24px; }
.wt-v2-timeline-inner { max-width: 1000px; margin: 0 auto; }
.wt-v2-timeline-header { text-align: center; margin-bottom: 40px; }
.wt-v2-timeline-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-timeline-list { position: relative; padding: 20px 0; }
.wt-v2-timeline-list[data-orientation="vertical"]::before { content: ""; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.wt-v2-timeline-list[data-orientation="vertical"] .wt-v2-timeline-item { position: relative; padding: 12px 0 28px 64px; }
.wt-v2-timeline-list[data-orientation="vertical"] .wt-v2-timeline-dot { position: absolute; left: 12px; top: 16px; width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; box-shadow: 0 0 0 4px var(--card); }
.wt-v2-timeline-list[data-orientation="horizontal"] { display: flex; gap: 16px; overflow-x: auto; padding: 20px 0; }
.wt-v2-timeline-list[data-orientation="horizontal"] .wt-v2-timeline-item { min-width: 260px; background: var(--card); border-radius: 12px; padding: 20px; border: 1px solid var(--line); }
.wt-v2-timeline-date { display: inline-block; padding: 2px 10px; border-radius: 999px; background: color-mix(in srgb, var(--blue) 15%, transparent); color: var(--blue); font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.wt-v2-timeline-item-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 4px 0 8px; }
.wt-v2-timeline-item-desc { color: var(--text); opacity: 0.8; line-height: 1.5; font-size: 0.95rem; }
.wt-v2-timeline-item-img { width: 100%; border-radius: 10px; margin-top: 12px; max-height: 200px; object-fit: cover; }

/* stats-counter ------------------------------------------------------------- */
.wt-v2-stats { padding: 60px 24px; }
.wt-v2-stats-inner { max-width: 1200px; margin: 0 auto; }
.wt-v2-stats-title { text-align: center; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--text); margin: 0 0 32px; }
.wt-v2-stats-grid { display: grid; gap: 24px; }
.wt-v2-stats-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-v2-stats-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-v2-stats-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.wt-v2-stats-item { text-align: center; padding: 24px 16px; background: var(--card); border-radius: 16px; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.wt-v2-stats-item:hover { transform: translateY(-4px); box-shadow: 0 10px 30px color-mix(in srgb, var(--blue) 10%, transparent); }
.wt-v2-stats-icon { font-size: 32px; color: var(--blue); margin-bottom: 8px; }
.wt-v2-stats-value { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--text); line-height: 1; }
.wt-v2-stats-suffix { color: var(--blue); margin-left: 2px; }
.wt-v2-stats-label { font-size: 0.95rem; color: var(--text); opacity: 0.75; margin-top: 8px; font-weight: 500; }

/* pricing-table ------------------------------------------------------------- */
.wt-v2-pricing { padding: 60px 24px; }
.wt-v2-pricing-inner { max-width: 1200px; margin: 0 auto; }
.wt-v2-pricing-header { text-align: center; margin-bottom: 40px; }
.wt-v2-pricing-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-pricing-toggle { display: inline-flex; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-top: 16px; }
.wt-v2-pricing-toggle button { background: transparent; border: 0; padding: 8px 20px; border-radius: 999px; font-weight: 600; color: var(--text); cursor: pointer; transition: background .15s; }
.wt-v2-pricing-toggle button.active { background: var(--blue); color: #fff; }
.wt-v2-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; align-items: stretch; }
.wt-v2-pricing-card { position: relative; display: flex; flex-direction: column; background: var(--card); border: 2px solid var(--line); border-radius: 16px; padding: 32px 24px; transition: transform .2s ease, border-color .2s ease; }
.wt-v2-pricing-card[data-highlighted="true"] { border-color: var(--blue); transform: scale(1.03); box-shadow: 0 20px 50px color-mix(in srgb, var(--blue) 20%, transparent); }
.wt-v2-pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase; }
.wt-v2-pricing-name { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 0 0 8px; }
.wt-v2-pricing-price { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--text); line-height: 1; margin: 8px 0; }
.wt-v2-pricing-period { font-size: 0.9rem; color: var(--text); opacity: 0.6; font-weight: 500; }
.wt-v2-pricing-features { list-style: none; padding: 0; margin: 20px 0; flex: 1; }
.wt-v2-pricing-features li { padding: 8px 0; color: var(--text); opacity: 0.85; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.wt-v2-pricing-features li::before { content: "✓"; color: var(--success-text, #059669); font-weight: 900; }
.wt-v2-pricing-cta { display: block; padding: 12px 20px; min-height: 44px; background: var(--blue); color: #fff; border-radius: 10px; text-align: center; font-weight: 700; text-decoration: none; transition: transform .15s; }
.wt-v2-pricing-cta:hover { transform: translateY(-2px); }
.wt-v2-pricing-card[data-highlighted="true"] .wt-v2-pricing-cta { box-shadow: 0 8px 24px color-mix(in srgb, var(--blue) 30%, transparent); }

/* faq-accordion ------------------------------------------------------------- */
.wt-v2-faq { padding: 60px 24px; }
.wt-v2-faq-inner { max-width: 800px; margin: 0 auto; }
.wt-v2-faq-header { text-align: center; margin-bottom: 32px; }
.wt-v2-faq-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-faq-list { display: flex; flex-direction: column; gap: 12px; }
.wt-v2-faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.wt-v2-faq-q { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 18px 20px; background: transparent; border: 0; color: var(--text); font-weight: 600; font-size: 1rem; text-align: left; cursor: pointer; min-height: 48px; }
.wt-v2-faq-q:hover { background: color-mix(in srgb, var(--blue) 5%, transparent); }
.wt-v2-faq-arrow { transition: transform .2s ease; color: var(--blue); font-weight: 900; }
.wt-v2-faq-item[data-open="true"] .wt-v2-faq-arrow { transform: rotate(180deg); }
.wt-v2-faq-a { padding: 0 20px 20px; color: var(--text); opacity: 0.8; line-height: 1.6; display: none; }
.wt-v2-faq-item[data-open="true"] .wt-v2-faq-a { display: block; }

/* lookbook-editorial -------------------------------------------------------- */
.wt-v2-lookbook { padding: 60px 0; }
.wt-v2-lookbook-header { text-align: center; padding: 0 24px; margin-bottom: 32px; }
.wt-v2-lookbook-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-lookbook-slides { display: flex; flex-direction: column; gap: 40px; }
.wt-v2-lookbook-slide { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 480px; align-items: stretch; }
.wt-v2-lookbook-slide[data-layout="right"] { direction: rtl; }
.wt-v2-lookbook-slide[data-layout="right"] > * { direction: ltr; }
.wt-v2-lookbook-slide[data-layout="fullbleed"] { grid-template-columns: 1fr; position: relative; min-height: 560px; }
.wt-v2-lookbook-img { width: 100%; height: 100%; object-fit: cover; }
.wt-v2-lookbook-content { display: flex; flex-direction: column; justify-content: center; padding: 40px; background: var(--card); }
.wt-v2-lookbook-slide[data-layout="fullbleed"] .wt-v2-lookbook-content { position: absolute; inset: auto 24px 40px 24px; background: rgba(0,0,0,0.6); color: #fff; border-radius: 14px; padding: 28px; max-width: 560px; }
.wt-v2-lookbook-stitle { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 800; color: var(--text); margin: 0 0 14px; line-height: 1.15; }
.wt-v2-lookbook-slide[data-layout="fullbleed"] .wt-v2-lookbook-stitle { color: #fff; }
.wt-v2-lookbook-caption { font-size: 1.05rem; line-height: 1.65; color: var(--text); opacity: 0.85; margin: 0 0 20px; }
.wt-v2-lookbook-slide[data-layout="fullbleed"] .wt-v2-lookbook-caption { color: rgba(255,255,255,0.9); opacity: 1; }
.wt-v2-lookbook-cta { display: inline-block; padding: 12px 28px; border-radius: 10px; background: var(--blue); color: #fff; font-weight: 700; text-decoration: none; align-self: flex-start; min-height: 44px; }

/* instagram-feed ------------------------------------------------------------ */
.wt-v2-ig { padding: 60px 24px; }
.wt-v2-ig-inner { max-width: 1200px; margin: 0 auto; }
.wt-v2-ig-header { text-align: center; margin-bottom: 24px; }
.wt-v2-ig-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--text); margin: 0 0 8px; }
.wt-v2-ig-subtitle { color: var(--text); opacity: 0.7; }
.wt-v2-ig-grid { display: grid; gap: 8px; }
.wt-v2-ig-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-v2-ig-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-v2-ig-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.wt-v2-ig-grid[data-cols="6"] { grid-template-columns: repeat(6, 1fr); }
.wt-v2-ig-post { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 8px; display: block; cursor: pointer; }
.wt-v2-ig-post img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.wt-v2-ig-post:hover img { transform: scale(1.05); }
.wt-v2-ig-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); opacity: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; transition: opacity .25s ease; }
.wt-v2-ig-post:hover .wt-v2-ig-overlay { opacity: 1; }

/* lottie-animation ---------------------------------------------------------- */
.wt-v2-lottie { padding: 60px 24px; text-align: center; }
.wt-v2-lottie-inner { max-width: 1000px; margin: 0 auto; }
.wt-v2-lottie-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-lottie-subtitle { color: var(--text); opacity: 0.75; max-width: 640px; margin: 0 auto 24px; }
.wt-v2-lottie-player { margin: 0 auto; }

/* trust-badges -------------------------------------------------------------- */
.wt-v2-trust { padding: 40px 24px; }
.wt-v2-trust-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.wt-v2-trust-title { font-size: 1rem; font-weight: 600; color: var(--text); opacity: 0.6; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 24px; }
.wt-v2-trust-grid { display: grid; gap: 20px; align-items: center; justify-items: center; }
.wt-v2-trust-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-v2-trust-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.wt-v2-trust-grid[data-cols="5"] { grid-template-columns: repeat(5, 1fr); }
.wt-v2-trust-grid[data-cols="6"] { grid-template-columns: repeat(6, 1fr); }
.wt-v2-trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.75; transition: opacity .2s, transform .2s; }
.wt-v2-trust-item:hover { opacity: 1; transform: translateY(-2px); }
.wt-v2-trust-logo { max-width: 120px; max-height: 60px; object-fit: contain; filter: grayscale(0.4); }
.wt-v2-trust-item:hover .wt-v2-trust-logo { filter: grayscale(0); }
.wt-v2-trust-label { font-size: 0.8rem; color: var(--text); opacity: 0.7; font-weight: 600; }

/* interactive-menu ---------------------------------------------------------- */
.wt-v2-menu { padding: 60px 24px; }
.wt-v2-menu-inner { max-width: 1100px; margin: 0 auto; }
.wt-v2-menu-header { text-align: center; margin-bottom: 32px; }
.wt-v2-menu-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--text); margin: 0 0 12px; }
.wt-v2-menu-tabs { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.wt-v2-menu-tab { background: transparent; border: 0; padding: 10px 18px; color: var(--text); font-weight: 600; cursor: pointer; position: relative; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.wt-v2-menu-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.wt-v2-menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.wt-v2-menu-dish { display: grid; grid-template-columns: 96px 1fr; gap: 14px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: transform .15s, box-shadow .15s; }
.wt-v2-menu-dish:hover { transform: translateY(-2px); box-shadow: 0 8px 24px color-mix(in srgb, var(--text) 8%, transparent); }
.wt-v2-menu-dish-img { width: 96px; height: 96px; object-fit: cover; background: var(--line); }
.wt-v2-menu-dish-body { padding: 12px 14px 12px 0; display: flex; flex-direction: column; gap: 4px; }
.wt-v2-menu-dish-title { font-weight: 700; color: var(--text); font-size: 0.98rem; }
.wt-v2-menu-dish-desc { color: var(--text); opacity: 0.7; font-size: 0.86rem; line-height: 1.4; }
.wt-v2-menu-dish-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.wt-v2-menu-dish-price { font-weight: 800; color: var(--blue); }
.wt-v2-menu-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.wt-v2-menu-tag { font-size: 10px; padding: 2px 6px; border-radius: 999px; background: color-mix(in srgb, var(--blue) 12%, transparent); color: var(--blue); font-weight: 700; text-transform: uppercase; }

/* class-schedule ------------------------------------------------------------ */
.wt-v2-sched { padding: 60px 24px; }
.wt-v2-sched-inner { max-width: 1100px; margin: 0 auto; }
.wt-v2-sched-header { text-align: center; margin-bottom: 24px; }
.wt-v2-sched-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-sched-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.wt-v2-sched-filter { background: var(--card); border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; color: var(--text); font-weight: 600; cursor: pointer; min-height: 36px; }
.wt-v2-sched-filter.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.wt-v2-sched-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.wt-v2-sched-day { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 12px; display: flex; flex-direction: column; gap: 8px; min-height: 180px; }
.wt-v2-sched-day h4 { font-size: 12px; font-weight: 700; color: var(--text); opacity: 0.7; text-transform: uppercase; letter-spacing: 0.05em; margin: 0; text-align: center; }
.wt-v2-sched-slot { background: color-mix(in srgb, var(--blue) 8%, transparent); border-left: 3px solid var(--blue); padding: 8px 10px; border-radius: 6px; font-size: 0.82rem; }
.wt-v2-sched-slot-time { font-weight: 700; color: var(--blue); }
.wt-v2-sched-slot-name { color: var(--text); font-weight: 600; font-size: 0.82rem; line-height: 1.3; margin-top: 2px; }
.wt-v2-sched-slot-inst { color: var(--text); opacity: 0.65; font-size: 0.75rem; margin-top: 2px; }

/* emergency-banner ---------------------------------------------------------- */
.wt-v2-emerg { position: fixed; left: 0; right: 0; z-index: 1000; padding: 10px 16px; color: #fff; background: #dc2626; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; box-shadow: 0 -4px 20px rgba(0,0,0,0.25); }
.wt-v2-emerg[data-position="top"] { top: 0; bottom: auto; box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.wt-v2-emerg[data-position="bottom"] { bottom: 0; top: auto; }
.wt-v2-emerg-icon { font-size: 22px; }
.wt-v2-emerg-text { font-weight: 700; font-size: 0.95rem; }
.wt-v2-emerg-cta { background: rgba(255,255,255,0.18); color: #fff; padding: 6px 14px; border-radius: 6px; font-weight: 800; text-decoration: none; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.4); min-height: 36px; display: inline-flex; align-items: center; gap: 6px; }
.wt-v2-emerg-close { background: transparent; color: #fff; border: 0; font-size: 22px; font-weight: 700; cursor: pointer; padding: 0 6px; opacity: 0.8; }

/* service-estimator --------------------------------------------------------- */
.wt-v2-est { padding: 60px 24px; }
.wt-v2-est-inner { max-width: 720px; margin: 0 auto; background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 36px; box-shadow: 0 20px 60px color-mix(in srgb, var(--text) 6%, transparent); }
.wt-v2-est-header { text-align: center; margin-bottom: 24px; }
.wt-v2-est-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--text); margin: 0 0 8px; }
.wt-v2-est-subtitle { color: var(--text); opacity: 0.7; }
.wt-v2-est-form { display: grid; gap: 14px; }
.wt-v2-est-field { display: flex; flex-direction: column; gap: 6px; }
.wt-v2-est-field label { font-size: 0.9rem; color: var(--text); font-weight: 600; }
.wt-v2-est-field select,
.wt-v2-est-field input { min-height: 44px; padding: 10px 14px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface, var(--card)); color: var(--text); font-size: 1rem; }
.wt-v2-est-result { padding: 16px; border-radius: 12px; background: color-mix(in srgb, var(--blue) 10%, transparent); color: var(--text); font-weight: 700; text-align: center; display: none; }
.wt-v2-est-result[data-visible="true"] { display: block; }
.wt-v2-est-submit { min-height: 48px; background: var(--blue); color: #fff; border: 0; border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer; padding: 12px; transition: transform .15s; }
.wt-v2-est-submit:hover { transform: translateY(-1px); }

/* case-studies -------------------------------------------------------------- */
.wt-v2-cases { padding: 60px 24px; }
.wt-v2-cases-inner { max-width: 1200px; margin: 0 auto; }
.wt-v2-cases-header { text-align: center; margin-bottom: 36px; }
.wt-v2-cases-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 12px; }
.wt-v2-cases-grid { display: grid; gap: 24px; }
.wt-v2-cases-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-v2-cases-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.wt-v2-case { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.wt-v2-case:hover { transform: translateY(-4px); box-shadow: 0 20px 50px color-mix(in srgb, var(--text) 10%, transparent); }
.wt-v2-case-thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--line); }
.wt-v2-case-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.wt-v2-case-industry { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); font-weight: 800; }
.wt-v2-case-client { font-size: 1.15rem; font-weight: 800; color: var(--text); margin: 0; }
.wt-v2-case-kpi { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--success-text, #059669); line-height: 1; }
.wt-v2-case-result-label { font-size: 0.88rem; color: var(--text); opacity: 0.75; margin-top: 2px; }
.wt-v2-case-testimonial { font-style: italic; color: var(--text); opacity: 0.85; font-size: 0.92rem; margin: 8px 0 0; border-left: 3px solid var(--blue); padding-left: 12px; }
.wt-v2-case-link { display: inline-block; margin-top: auto; padding-top: 12px; color: var(--blue); font-weight: 700; text-decoration: none; font-size: 0.92rem; }

/* ── Responsive: mobile <=768px y <=430px ── */
@media (max-width: 768px) {
  .wt-v2-stats-grid[data-cols="3"],
  .wt-v2-stats-grid[data-cols="4"] { grid-template-columns: repeat(2, 1fr); }
  .wt-v2-ig-grid[data-cols="4"],
  .wt-v2-ig-grid[data-cols="6"] { grid-template-columns: repeat(3, 1fr); }
  .wt-v2-trust-grid[data-cols="5"],
  .wt-v2-trust-grid[data-cols="6"] { grid-template-columns: repeat(3, 1fr); }
  .wt-v2-lookbook-slide,
  .wt-v2-lookbook-slide[data-layout="right"] { grid-template-columns: 1fr; direction: ltr; }
  .wt-v2-lookbook-img { height: 320px; }
  .wt-v2-cases-grid[data-cols="3"] { grid-template-columns: 1fr; }
  .wt-v2-sched-days { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .wt-v2-sched-day { min-height: auto; }
  .wt-v2-pricing-card[data-highlighted="true"] { transform: scale(1); }
}

@media (max-width: 430px) {
  .wt-v2-videohero-content { padding: 16px; }
  .wt-v2-stats-grid[data-cols="2"],
  .wt-v2-stats-grid[data-cols="3"],
  .wt-v2-stats-grid[data-cols="4"] { grid-template-columns: 1fr; }
  .wt-v2-ig-grid[data-cols="3"],
  .wt-v2-ig-grid[data-cols="4"],
  .wt-v2-ig-grid[data-cols="6"] { grid-template-columns: repeat(2, 1fr); }
  .wt-v2-trust-grid[data-cols="3"],
  .wt-v2-trust-grid[data-cols="4"],
  .wt-v2-trust-grid[data-cols="5"],
  .wt-v2-trust-grid[data-cols="6"] { grid-template-columns: repeat(2, 1fr); }
  .wt-v2-cases-grid[data-cols="2"],
  .wt-v2-cases-grid[data-cols="3"] { grid-template-columns: 1fr; }
  .wt-v2-menu-dish { grid-template-columns: 72px 1fr; }
  .wt-v2-menu-dish-img { width: 72px; height: 72px; }
  .wt-v2-sched-days { grid-template-columns: 1fr; }
  .wt-v2-est-inner { padding: 24px 18px; border-radius: 14px; }
  .wt-v2-emerg { font-size: 0.85rem; flex-direction: column; gap: 8px; padding: 12px 14px; }
}

/* customer-reviews v3 (2026-04-23) - Reseñas reales de clientes --------- */
.wt-v2-reviews { padding: 60px 24px; }
.wt-v2-reviews-inner { max-width: 1200px; margin: 0 auto; }
.wt-v2-reviews-header { text-align: center; margin-bottom: 28px; }
.wt-v2-reviews-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); margin: 0 0 8px; }
.wt-v2-reviews-subtitle { color: var(--text); opacity: 0.7; margin: 0 0 14px; }
.wt-v2-reviews-avg { min-height: 36px; }
.wt-v2-reviews-avg-wrap { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; color: var(--text); font-size: 1rem; }
.wt-v2-reviews-avg-wrap strong { font-size: 1.2rem; color: var(--blue); }
.wt-v2-reviews-avg-wrap span { color: var(--text); opacity: 0.7; font-size: 0.88rem; }

.wt-v2-reviews-stars { display: inline-flex; gap: 2px; letter-spacing: 1px; }
.wt-v2-reviews-star { color: color-mix(in srgb, var(--text) 25%, transparent); }
.wt-v2-reviews-star.on { color: #f59e0b; }

.wt-v2-reviews-list { display: grid; gap: 18px; margin-bottom: 30px; }
.wt-v2-reviews-list[data-cols="1"] { grid-template-columns: 1fr; }
.wt-v2-reviews-list[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.wt-v2-reviews-list[data-cols="3"] { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.wt-v2-reviews-list.is-carousel { grid-auto-flow: column; grid-auto-columns: min(90%, 380px); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
.wt-v2-reviews-list.is-carousel .wt-v2-reviews-card { scroll-snap-align: start; }

.wt-v2-reviews-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 10px; transition: transform .15s ease, box-shadow .15s ease; }
.wt-v2-reviews-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px color-mix(in srgb, var(--text) 6%, transparent); }
.wt-v2-reviews-card-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.wt-v2-reviews-card-date { font-size: 0.78rem; color: var(--text); opacity: 0.6; }
.wt-v2-reviews-card-comment { margin: 0; color: var(--text); line-height: 1.6; }
.wt-v2-reviews-card-author { color: var(--text); opacity: 0.75; font-weight: 600; font-size: 0.92rem; }

.wt-v2-reviews-empty,
.wt-v2-reviews-loading { grid-column: 1 / -1; text-align: center; padding: 30px 16px; color: var(--text); opacity: 0.6; background: var(--card); border: 1px dashed var(--line); border-radius: 12px; }

.wt-v2-reviews-login { text-align: center; padding: 18px 20px; background: color-mix(in srgb, var(--blue) 6%, transparent); border: 1px solid color-mix(in srgb, var(--blue) 30%, transparent); border-radius: 12px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; }
.wt-v2-reviews-login span { color: var(--text); }
.wt-v2-reviews-login-btn { padding: 10px 22px; background: var(--blue); color: #fff; border-radius: 8px; font-weight: 700; text-decoration: none; min-height: 40px; display: inline-flex; align-items: center; }

.wt-v2-reviews-form { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px; max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.wt-v2-reviews-form h3 { margin: 0; color: var(--text); font-size: 1.15rem; }
.wt-v2-reviews-rate { display: inline-flex; gap: 4px; }
.wt-v2-reviews-star-btn { background: transparent; border: 0; font-size: 1.7rem; color: color-mix(in srgb, var(--text) 25%, transparent); cursor: pointer; padding: 2px 4px; transition: transform .1s; }
.wt-v2-reviews-star-btn:hover { transform: scale(1.15); }
.wt-v2-reviews-star-btn.on { color: #f59e0b; }
.wt-v2-reviews-text { width: 100%; min-height: 110px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface, var(--card)); color: var(--text); font-family: inherit; font-size: 1rem; resize: vertical; }
.wt-v2-reviews-form-foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.wt-v2-reviews-note { font-size: 0.8rem; color: var(--text); opacity: 0.6; }
.wt-v2-reviews-submit { padding: 10px 24px; min-height: 44px; background: var(--blue); color: #fff; border: 0; border-radius: 10px; font-weight: 700; cursor: pointer; transition: transform .1s; }
.wt-v2-reviews-submit:hover { transform: translateY(-1px); }
.wt-v2-reviews-status { min-height: 22px; font-size: 0.88rem; color: var(--text); opacity: 0.8; }
.wt-v2-reviews-status.is-success { color: var(--success-text, #059669); opacity: 1; font-weight: 600; }
.wt-v2-reviews-status.is-error { color: var(--danger-text, #dc2626); opacity: 1; font-weight: 600; }
.wt-v2-reviews-status.is-info { color: var(--blue); opacity: 1; font-weight: 600; }
.wt-v2-reviews-author { width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface, var(--card)); color: var(--text); font-size: 0.95rem; font-family: inherit; }
.wt-v2-reviews-turnstile { display: flex; justify-content: center; min-height: 65px; }
.wt-v2-reviews-form.is-anonymous { background: color-mix(in srgb, var(--blue) 4%, var(--card)); }

@media (max-width: 768px) {
  .wt-v2-reviews-list[data-cols="2"],
  .wt-v2-reviews-list[data-cols="3"] { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .wt-v2-reviews { padding: 40px 16px; }
  .wt-v2-reviews-card { padding: 16px; }
  .wt-v2-reviews-form { padding: 18px 14px; }
  .wt-v2-reviews-form-foot { flex-direction: column; align-items: stretch; }
  .wt-v2-reviews-submit { width: 100%; }
}

/* =============================================================
   v4 (2026-04-25) — RESPONSIVE FIXES MOBILE/TABLET para v2 secciones
   y secciones legacy que tenían gaps. Cubre los 6 BREAKING reportados:
   video-hero, video-embed, before-after-slider, testimonials,
   hero-fullscreen, header-ecommerce. Más reducciones de padding 60px→40px
   en tablet y mejoras de touch-targets en mobile.
   ============================================================= */

/* ── TABLET 1023px ── ajusta secciones grandes con padding excesivo ── */
@media (max-width: 1023px) {
  .wt-v2-videoembed,
  .wt-v2-faq,
  .wt-v2-stats,
  .wt-v2-pricing,
  .wt-v2-trust,
  .wt-v2-cases,
  .wt-v2-reviews,
  .wt-v2-instagram,
  .wt-v2-timeline,
  .wt-v2-lookbook,
  .wt-v2-menu,
  .wt-v2-sched,
  .wt-v2-est,
  .wt-v2-lottie { padding: 50px 20px; }

  .wt-v2-ba-grid { grid-template-columns: 1fr; }

  /* hero-fullscreen min-height demasiado alto en iPad portrait */
  .wt-section-hero-fullscreen { min-height: clamp(420px, 75vh, 100vh); }
}

/* ── MOBILE 768px ── stacking, reduce padding ── */
@media (max-width: 768px) {
  .wt-v2-videoembed,
  .wt-v2-faq,
  .wt-v2-stats,
  .wt-v2-pricing,
  .wt-v2-trust,
  .wt-v2-cases,
  .wt-v2-reviews,
  .wt-v2-instagram,
  .wt-v2-timeline,
  .wt-v2-lookbook,
  .wt-v2-menu,
  .wt-v2-sched,
  .wt-v2-est,
  .wt-v2-lottie { padding: 40px 18px; }

  /* video-hero contenido más comprimido (el min-height lo define el preset) */
  .wt-v2-videohero-content { padding: 20px 16px; gap: 12px; }
  .wt-v2-videohero-cta { padding: 12px 28px; }

  /* video-embed frame */
  .wt-v2-videoembed-header { margin-bottom: 22px; }

  /* before-after-slider — handle más grande para touch */
  .wt-v2-ba-handle { width: 44px; height: 44px; touch-action: none; }
  .wt-v2-ba-slider-wrap { aspect-ratio: 1 / 1; }

  /* timeline horizontal scroll en tablet */
  .wt-v2-timeline-list[data-orient="horizontal"] { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* testimonials */
  .wt-testimonial-card,
  .wt-testimonials-carousel .wt-testimonial-card { padding: 28px 20px !important; min-width: 100% !important; }
  .wt-testimonial-card blockquote,
  .wt-testimonial-card p { font-size: 1rem !important; }

  /* hero-fullscreen tipografías y min-height en mobile */
  .wt-section-hero-fullscreen { min-height: clamp(380px, 65vh, 90vh); padding: 40px 16px; }
  .wt-hero-title { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; }
  .wt-hero-subtitle { font-size: 1rem !important; }
  .wt-hero-logo { max-width: 140px !important; }
}

/* ── PHONE 430px iPhone SE / 12 mini ── último ajuste ── */
@media (max-width: 430px) {
  .wt-v2-videoembed,
  .wt-v2-faq,
  .wt-v2-stats,
  .wt-v2-pricing,
  .wt-v2-trust,
  .wt-v2-cases,
  .wt-v2-reviews,
  .wt-v2-instagram,
  .wt-v2-timeline,
  .wt-v2-lookbook,
  .wt-v2-menu,
  .wt-v2-sched,
  .wt-v2-est,
  .wt-v2-lottie { padding: 32px 14px; }

  /* video-hero título más chico, CTA full width */
  .wt-v2-videohero-content { padding: 16px 14px; gap: 10px; }
  .wt-v2-videohero-title { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .wt-v2-videohero-subtitle { font-size: 0.95rem; }
  .wt-v2-videohero-cta { padding: 14px 24px; width: 100%; max-width: 320px; text-align: center; }

  /* video-embed — aspect-ratio reducido en mobile */
  .wt-v2-videoembed-frame[data-aspect="9:16"],
  .wt-v2-videoembed-frame[data-aspect="1:1"] { max-width: 100%; }

  /* before-after-slider — handle aún más grande en iPhone */
  .wt-v2-ba-handle { width: 48px; height: 48px; }
  .wt-v2-ba-label { font-size: 0.78rem; padding: 4px 10px; }

  /* pricing-table tier highlighted no debe escalar (lo aprieta) */
  .wt-v2-pricing-card { padding: 24px 18px; }
  .wt-v2-pricing-card[data-highlighted="true"] { transform: none; }
  .wt-v2-pricing-cta { width: 100%; }

  /* lookbook columns SIEMPRE 1 col en mobile */
  .wt-v2-lookbook-slide,
  .wt-v2-lookbook-grid { grid-template-columns: 1fr !important; }

  /* timeline estructura compacta */
  .wt-v2-timeline-item { padding-left: 36px; }

  /* faq-accordion pregunta más legible */
  .wt-v2-faq-q { font-size: 0.95rem; padding: 14px 16px; }
  .wt-v2-faq-a { padding: 0 16px 14px; font-size: 0.92rem; }

  /* interactive-menu tabs scrollable horizontalmente */
  .wt-v2-menu-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .wt-v2-menu-tab { white-space: nowrap; flex-shrink: 0; padding: 8px 14px; font-size: 0.88rem; }
  .wt-v2-menu-dish { grid-template-columns: 72px 1fr !important; gap: 10px; }
  .wt-v2-menu-dish-img { width: 72px !important; height: 72px !important; }

  /* class-schedule grid 1 col + slot legibles */
  .wt-v2-sched-day { font-size: 0.95rem; }
  .wt-v2-sched-slot { padding: 8px 10px; font-size: 0.88rem; }

  /* service-estimator inputs/selects 100% width + tipografía legible */
  .wt-v2-est-input,
  .wt-v2-est-select { width: 100%; font-size: 1rem; padding: 12px 14px; }

  /* emergency-banner */
  .wt-v2-emerg { padding: 10px 12px; }
  .wt-v2-emerg-text { font-size: 0.92rem; }

  /* testimonials — refuerzo (legacy) */
  .wt-testimonial-card,
  .wt-testimonials-carousel .wt-testimonial-card { padding: 24px 16px !important; }
  .wt-testimonial-card blockquote,
  .wt-testimonial-card p { font-size: 0.95rem !important; line-height: 1.5; }

  /* hero-fullscreen — ya cubierto en 768px, refuerzo CTA */
  .wt-hero-btn { padding: 12px 24px !important; min-height: 48px; width: 100%; max-width: 320px; text-align: center; }

  /* services-pricing — book button no debe quebrar (white-space) */
  .wt-pricing-book-btn { white-space: nowrap; padding: 8px 14px; font-size: 0.85rem; }
  .wt-pricing-name { font-size: 0.95rem; }
  .wt-pricing-price { font-size: 1.05rem; }

  /* footer-enhanced — gap menor en columnas */
  .wt-footer-inner { gap: 24px !important; padding: 32px 16px !important; }
  .wt-footer-heading { font-size: 0.95rem !important; margin-bottom: 8px; }
  .wt-footer-contact-item { font-size: 0.88rem; }

  /* header-ecommerce — barra unificada en iPhone */
  .wt-ecom-header-inner { padding: 6px 10px !important; gap: 6px !important; }
  .wt-ecom-search-input { padding: 8px 14px 8px 36px !important; font-size: 0.92rem; }
  .wt-ecom-search-icon { left: 12px !important; }
  .wt-ecom-action-btn { padding: 6px 10px !important; min-width: 40px; }
  .wt-ecom-cart-badge { right: -4px !important; top: -4px !important; min-width: 16px; height: 16px; font-size: 0.65rem; }
  .wt-ecom-nav-link { padding: 4px 8px !important; font-size: 0.72rem !important; }

  /* announcement-bar close button más pequeño */
  .wt-announce-close { font-size: 1.1rem; padding: 0 6px; }

  /* contact-form inputs full-width */
  .wt-contact-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .wt-contact-input,
  .wt-contact-textarea { width: 100%; padding: 10px 12px; font-size: 0.95rem; }

  /* newsletter — ya en 768px, refuerzo */
  .wt-newsletter { padding: 32px 14px !important; }
  .wt-newsletter-title { font-size: 1.3rem !important; }
}

/* ── ULTRA-NARROW 360px (iPhone SE 1st gen, Galaxy S5) ── */
@media (max-width: 360px) {
  .wt-v2-videohero-title { font-size: 1.4rem; }
  .wt-v2-videohero-subtitle { font-size: 0.9rem; }
  .wt-v2-pricing-card,
  .wt-v2-faq-list { margin: 0 -4px; }
  .wt-v2-menu-dish { grid-template-columns: 60px 1fr !important; }
  .wt-v2-menu-dish-img { width: 60px !important; height: 60px !important; }
}

/* ============================================================
   v4 (2026-04-25) — HERO FALLBACK GLOBAL (33 themes hero-fullscreen)
   Garantiza que NUNCA quede pantalla negra mientras carga la imagen
   o si la imagen falla. Aplica a TODOS los themes via .wt-section-hero-fullscreen.
   ============================================================ */
.wt-section-hero-fullscreen,
.wt-v2-videohero,
.wt-section-video-hero {
  /* Gradient fallback como background-color — visible si la imagen falla
     o aún no cargó. Usa el accent color del tenant (--blue) o azul oscuro. */
  background-color: color-mix(in srgb, var(--blue, #1e40af) 60%, #0a0a0a);
}

/* v4 (2026-04-25) — text-shadow MÁS FUERTE en hero title/subtitle/btn:
   Asegura legibilidad del texto AÚN si la imagen de fondo falla, demora,
   o tiene áreas claras. El text-shadow de 4 capas crea un halo oscuro
   sólido alrededor del texto blanco. Aplica a hero-fullscreen + video-hero. */
.wt-section-hero-fullscreen .wt-hero-title,
.wt-v2-videohero .wt-v2-videohero-title,
.wt-section-video-hero .wt-v2-videohero-title {
  text-shadow:
    0 2px 8px rgba(0,0,0,0.7),
    0 0 22px rgba(0,0,0,0.55),
    0 1px 2px rgba(0,0,0,0.95) !important;
  color: #ffffff !important;
}
.wt-section-hero-fullscreen .wt-hero-subtitle,
.wt-v2-videohero .wt-v2-videohero-subtitle,
.wt-section-video-hero .wt-v2-videohero-subtitle {
  text-shadow:
    0 2px 6px rgba(0,0,0,0.65),
    0 0 14px rgba(0,0,0,0.5),
    0 1px 2px rgba(0,0,0,0.9) !important;
  color: #ffffff !important;
  opacity: 1 !important;
}
.wt-section-hero-fullscreen .wt-hero-btn,
.wt-v2-videohero .wt-v2-videohero-cta,
.wt-section-video-hero .wt-v2-videohero-cta {
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  font-weight: 700 !important;
}

/* Cuando NO hay overlay (imagen falla → solo gradient fallback), el contenido
   sigue legible porque el background-color ya es oscuro y el text-shadow es heavy. */
.wt-section-hero-fullscreen .wt-hero-overlay,
.wt-v2-videohero .wt-v2-videohero-overlay,
.wt-section-video-hero .wt-v2-videohero-overlay {
  pointer-events: none; /* No bloquea clicks en CTAs */
}

/* Min-height mobile responsivo para hero-fullscreen — antes 100vh forzaba
   un espacio enorme negro mientras cargaba la imagen Unsplash 1920px. */
@media (max-width: 768px) {
  .wt-section-hero-fullscreen {
    min-height: clamp(380px, 65vh, 80vh) !important;
    background-size: cover;
    background-position: center;
  }
  .wt-v2-videohero,
  .wt-section-video-hero {
    min-height: clamp(380px, 65vh, 80vh) !important;
  }
}
@media (max-width: 430px) {
  .wt-section-hero-fullscreen {
    min-height: clamp(360px, 55vh, 70vh) !important;
  }
  .wt-v2-videohero,
  .wt-section-video-hero {
    min-height: clamp(360px, 55vh, 70vh) !important;
  }
}
