@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@200;300;400;500;600&family=DM+Mono:wght@300;400&display=swap');

:root {
  /* 3 Main Colors */
  --burgundy: #37070c;
  --forest: #1e2421;
  --cream: #fbe2ca;

  /* 3 Complementary / Support Colors */
  --rust: #bd5633;
  --mauve: #aa667c;
  --teal: #25444e;

  /* UI Tokens */
  --bg-main: var(--forest);
  --bg-card: rgba(37, 68, 78, 0.25);
  /* Glassmorphic Teal */
  --border-color: rgba(251, 226, 202, 0.15);
  --text-main: var(--cream);
  --text-muted: rgba(251, 226, 202, 0.65);
  --text-faint: rgba(251, 226, 202, 0.4);

  --glass-bg: rgba(30, 36, 33, 0.8);
  --glass-border: rgba(251, 226, 202, 0.1);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* ...variables existentes... */
  --nav-h: 75px;
  /* altura del nav fijo */
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-main);
}

@keyframes gradientBg {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
  background: linear-gradient(-45deg, #1e2421, #25444e, #1e2421, #1e2421);
  background-size: 400% 400%;
  animation: gradientBg 20s ease infinite;
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text-main);
  line-height: 1.15;
}

code,
pre,
.mono-text,
.lang-toggle,
.ag-key,
.stat-item,
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-weight: 300;
}

/* UTILITIES */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 2rem;
}

.section-title em {
  font-style: italic;
  color: var(--mauve);
}

.ruled-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--rust), transparent);
  margin: 2rem 0;
}

/* FIXED GLOBAL LANGUAGE SWITCH */
.global-lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(30, 36, 33, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 99px;
  overflow: hidden;
  padding: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.global-lang-toggle button {
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(251, 226, 202, 0.6);
  border-radius: 99px;
  transition: var(--transition);
}

.global-lang-toggle button.active {
  background: var(--rust);
  color: var(--cream);
  font-weight: 500;
}

/* NAV */
nav#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(30, 36, 33, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

nav#navbar.scrolled {
  padding: 0.8rem 3rem;
  background: rgba(30, 36, 33, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo:hover {
  color: var(--mauve);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--rust);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-contact-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  background: var(--burgundy);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.2rem;
  border-radius: 99px;
  transition: var(--transition);
}

.nav-contact-btn:hover {
  background: var(--rust);
  color: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(189, 86, 51, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: rgba(251, 226, 202, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  padding: 10px;
  transition: var(--transition);
}

.hamburger:hover {
  border-color: var(--rust);
  background: rgba(251, 226, 202, 0.1);
}

.hamburger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--cream);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* MOBILE NAV MENU */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 36, 33, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 850;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
  transition: var(--transition);
  gap: 2rem;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--rust);
  transform: scale(1.1);
}

/* HERO SECTION */

#hero {
  background: transparent;
  padding-top: var(--nav-h);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(55, 7, 12, 0.65) 0%, transparent 70%);
  z-index: 1;
  filter: blur(45px);
  animation: pulseGlow 10s ease-in-out infinite alternate;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
  font-size: clamp(3.5rem, 6vw, 6.2rem);
  line-height: 0.95;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title em {
  font-style: italic;
  color: var(--rust);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--forest) 0%, transparent 15%, transparent 85%, var(--forest) 100%),
    linear-gradient(to bottom, transparent 70%, rgba(30, 36, 33, 0.95) 100%);
  z-index: 2;
}

.hero-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  filter: saturate(0.85) brightness(0.9);
  transition: transform 10s ease;
}

.hero:hover .hero-visual {
  transform: scale(1.05);
}

.hero-bg-text {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16vw;
  font-weight: 600;
  color: rgba(251, 226, 202, 0.03);
  line-height: 0.8;
  user-select: none;
  z-index: 0;
}

.hero-stat-band {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 36, 33, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  display: flex;
  z-index: 3;
}

.stat-item {
  flex: 1;
  padding: 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin-top: 0.3rem;
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-cal-primary,
.btn-cal-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--rust);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(189, 86, 51, 0.2);
}

.btn-primary:hover {
  background: #d4633d;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(189, 86, 51, 0.45);
}

.btn-secondary {
  background: rgba(251, 226, 202, 0.05);
  color: var(--cream);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(251, 226, 202, 0.1);
  border-color: var(--cream);
  transform: translateY(-3px);
}

/* CAL.COM BUTTONS */
.cal-booking-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-cal-primary {
  background: var(--burgundy);
  color: var(--cream);
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  padding: 1.2rem;
}

.btn-cal-primary:hover {
  background: var(--rust);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(189, 86, 51, 0.3);
}

.cal-booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-cal-secondary {
  background: rgba(37, 68, 78, 0.2);
  color: var(--cream);
  border: 1px solid var(--border-color);
  padding: 1rem;
}

.btn-cal-secondary:hover {
  border-color: var(--mauve);
  background: rgba(170, 102, 124, 0.15);
  transform: translateY(-3px);
}

/* ABOUT SECTION & PHOTO GRID */
.about {
  padding: 10rem 0;
  border-top: 1px solid var(--border-color);
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.about-body p+p {
  margin-top: 1.5rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  background: rgba(251, 226, 202, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  border-radius: 99px;
  transition: var(--transition);
}

.tag:hover {
  border-color: var(--rust);
  color: var(--cream);
  background: rgba(189, 86, 51, 0.1);
}

/* EXTENDED PHOTO GALLERY SPACES */
.photo-gallery-wrapper {
  margin-top: 6rem;
}

.photo-gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.photo-item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: grayscale(0.2) contrast(1.05);
}

.photo-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1);
}

.photo-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.about-portrait-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-premium);
  filter: saturate(0.9) brightness(0.95);
  transition: var(--transition);
}

.about-portrait-img:hover {
  filter: saturate(1) brightness(1);
  transform: scale(1.02);
}

/* PRODUCTS GRID */
.products {
  padding: 10rem 0;
  background: transparent;
  border-top: 1px solid var(--border-color);
}

.products-header {
  margin-bottom: 5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--rust));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.product-card:hover {
  background: rgba(37, 68, 78, 0.4);
  transform: translateY(-8px);
  border-color: var(--mauve);
  box-shadow: var(--shadow-premium);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-visual-preview {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(251, 226, 202, 0.08);
  filter: brightness(0.85);
  transition: var(--transition);
}

.product-card:hover .product-visual-preview {
  filter: brightness(1);
}

.product-type {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve);
}

.product-name {
  font-size: 1.8rem;
  color: var(--cream);
  line-height: 1.2;
}

.product-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
}

.product-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  transition: var(--transition);
}

.product-link::after {
  content: '→';
  transition: var(--transition);
}

.product-card:hover .product-link {
  color: var(--cream);
}

.product-card:hover .product-link::after {
  transform: translateX(6px);
}

/* SERVICES */
.services-overview {
  padding: 10rem 0;
  border-top: 1px solid var(--border-color);
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: rgba(55, 7, 12, 0.15);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(circle at top right, rgba(170, 102, 124, 0.15), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(55, 7, 12, 0.35);
  transform: translateY(-8px);
  border-color: var(--rust);
  box-shadow: var(--shadow-premium);
}

.service-card:hover::after {
  opacity: 1;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--border-color);
  line-height: 1;
}

.service-card:hover .service-num {
  color: var(--rust);
}

.service-card-name {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
}

.service-card-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.service-card-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mauve);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  transition: var(--transition);
}

.service-card-link::after {
  content: '→';
  transition: var(--transition);
}

.service-card:hover .service-card-link::after {
  transform: translateX(6px);
}

/* TOOLS */
.tools-overview {
  padding: 10rem 0;
  background: transparent;
  color: var(--cream);
  border-top: 1px solid var(--border-color);
}

.tools-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 3rem;
  flex-wrap: wrap;
}

.tools-header-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(251, 226, 202, 0.7);
  max-width: 480px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tool-card {
  background: rgba(30, 36, 33, 0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 226, 202, 0.08);
  border-radius: 8px;
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  color: inherit;
  width: 100%;
}

.tool-card:hover {
  background: rgba(30, 36, 33, 0.75);
  border-color: var(--cream);
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.tool-icon {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
  height: 50px;
  display: flex;
  align-items: center;
}

.tool-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve);
}

.tool-name {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.25;
}

.tool-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-muted);
  flex: 1;
}

.tool-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  transition: var(--transition);
}

.tool-link::after {
  content: '→';
  transition: var(--transition);
}

.tool-card:hover .tool-link::after {
  transform: translateX(6px);
}

/* COMUNIDAD SECTION CARD GRID (IN INDEX) */
.index-comunidad {
  padding: 10rem 0;
  background: transparent;
  color: var(--cream);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.index-comunidad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.comunidad-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(251, 226, 202, 0.1);
  padding: 4rem 3rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.comunidad-card.free:hover {
  background: rgba(251, 226, 202, 0.06);
  border-color: var(--cream);
  transform: translateY(-5px);
}

.comunidad-card.premium {
  opacity: 0.75;
  background: rgba(30, 36, 33, 0.4);
}

.comunidad-card-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve);
}

.comunidad-card-title {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

.comunidad-card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(251, 226, 202, 0.7);
}

.comunidad-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0;
}

.comunidad-card-features li {
  font-size: 0.9rem;
  color: rgba(251, 226, 202, 0.65);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.comunidad-card-features li::before {
  content: '✓';
  color: var(--rust);
  font-weight: bold;
}

.comunidad-card-btn {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  transition: var(--transition);
}

.comunidad-card:hover .comunidad-card-btn {
  color: var(--cream);
}

/* SOCIAL BAND */
.social-band {
  padding: 5rem 0;
  background: transparent;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.social-band-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.social-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'DM Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  background: rgba(251, 226, 202, 0.02);
  transition: var(--transition);
}

.social-pill:hover {
  background: var(--rust);
  color: var(--cream);
  border-color: var(--rust);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(189, 86, 51, 0.25);
}

/* CONTACT */
.contact {
  padding: 10rem 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(55, 7, 12, 0.5) 0%, transparent 70%);
  z-index: 1;
  filter: blur(45px);
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-visual-wrapper {
  margin-top: 2.5rem;
}

.contact-portrait-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-premium);
  filter: saturate(0.95);
  transition: var(--transition);
}

.contact-portrait-img:hover {
  transform: scale(1.01);
  filter: saturate(1.05);
}

.contact-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(30, 36, 33, 0.3);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(37, 68, 78, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  outline: none;
  transition: var(--transition);
  resize: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--rust);
  background: rgba(37, 68, 78, 0.2);
  box-shadow: 0 0 0 3px rgba(189, 86, 51, 0.15);
}

.form-field select option {
  background: var(--forest);
  color: var(--cream);
}

/* FOOTER */
footer {
  background: var(--burgundy) !important;
  color: rgba(251, 226, 202, .55) !important;
  padding: 48px 24px 32px !important;
  text-align: center !important;
}

.ft-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ft-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.ft-tagline {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(251, 226, 202, .45);
  margin-bottom: 28px;
}

.ft-social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
}

.ft-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(251, 226, 202, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 226, 202, .45);
  transition: all .2s;
}

.ft-social a:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.ft-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 24px;
}

.ft-links a {
  font-size: 12px;
  color: rgba(251, 226, 202, .45);
  transition: color .2s;
}

.ft-links a:hover {
  color: var(--cream);
}

.ft-copy {
  font-size: 11px;
  color: rgba(251, 226, 202, .28);
}

/* SERVICE & PRODUCT DETAILS */
.service-detail {
  display: none;
  min-height: 100vh;
}

.service-detail.active {
  display: block;
}

.service-hero {
  padding: 12rem 0 6rem;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(30, 36, 33, 0.9) 100%);
  pointer-events: none;
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.service-hero-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(251, 226, 202, 0.85);
  margin-top: 1.5rem;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(251, 226, 202, 0.6);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.4rem;
  border-radius: 99px;
  margin-bottom: 2.5rem;
  transition: var(--transition);
}

.back-btn:hover {
  color: var(--cream);
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-4px);
}

.back-btn::before {
  content: '←';
}

.service-body {
  padding: 8rem 0;
  background: var(--forest);
}

.service-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.service-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-premium);
}

.yt-embed {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-premium);
}

.yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.service-detail-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.service-detail-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.service-detail-text p+p {
  margin-top: 1.5rem;
}

.service-includes {
  margin-top: 3rem;
  padding: 2.5rem;
  background: rgba(37, 68, 78, 0.15);
  border-left: 3px solid var(--rust);
  border-radius: 0 8px 8px 0;
}

.service-includes h4 {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.5rem;
}

.service-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-includes li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}

.service-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rust);
}

.service-cta-block {
  margin-top: 3.5rem;
}

.service-cta-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* MARKETING sales page structure for "De Cero a Estrellita" */
.marketing-sales-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.sales-hero-badge {
  background: rgba(189, 86, 51, 0.15);
  border: 1px solid var(--rust);
  color: var(--cream);
  padding: 0.4rem 1.2rem;
  border-radius: 99px;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.pain-point-card {
  background: rgba(55, 7, 12, 0.15);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: 8px;
}

.pain-point-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pain-point-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

.pain-point-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.method-step {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: rgba(37, 68, 78, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.method-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--rust);
  line-height: 1;
}

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.module-item {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.02);
}

.module-header {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.module-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.offer-box {
  background: radial-gradient(circle at center, rgba(37, 68, 78, 0.3) 0%, rgba(55, 7, 12, 0.3) 100%);
  border: 2px solid var(--rust);
  border-radius: 12px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-premium);
  max-width: 700px;
  margin: 4rem auto 0;
}

.price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--cream);
  margin: 1.5rem 0;
}

.price-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* IFRAME PAGES FOR TOOLS */
.tool-detail {
  display: none;
  flex-direction: column;
  height: 100vh;
}

.tool-detail.active {
  display: flex;
}

.tool-detail-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 3rem;
  background: #151a17;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.tool-detail-bar .back-btn {
  margin: 0;
  font-size: 0.72rem;
}

.tool-detail-bar-title {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.tool-iframe {
  width: 100%;
  flex: 1;
  border: none;
  display: block;
  background: var(--bg-main);
}

/* REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MODAL AGENDAR ── */
#modal-agendar {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: var(--forest);
  overflow-y: auto;
}

.ag-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--rust);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1600;
  width: 0%;
}

.ag-modal-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  z-index: 1600;
  background: linear-gradient(to bottom, var(--forest) 60%, transparent);
}

.ag-counter {
  font-size: 0.85rem;
  color: var(--mauve);
  letter-spacing: 0.1em;
}

.ag-close-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 99px;
  transition: var(--transition);
}

.ag-close-btn:hover {
  border-color: var(--rust);
  color: var(--rust);
}

.ag-nav-arrows {
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  gap: 0.8rem;
  z-index: 1600;
}

.ag-nav-arrows button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.ag-nav-arrows button:hover:not(:disabled) {
  border-color: var(--rust);
  background: var(--rust);
}

.ag-nav-arrows button:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.ag-screens-container {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ag-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.ag-screen.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.ag-screen.out-up {
  opacity: 0;
  transform: translateY(-30px);
}

.ag-inner {
  max-width: 640px;
  width: 100%;
}

.ag-qnum {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.ag-badge {
  width: 30px;
  height: 30px;
  background: var(--rust);
  color: var(--cream);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ag-arrow {
  color: var(--rust);
  opacity: 0.5;
}

.ag-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.ag-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.ag-choices {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.ag-choice {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: rgba(251, 226, 202, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  text-align: left;
  transition: var(--transition);
}

.ag-choice:hover {
  border-color: var(--rust);
  background: rgba(189, 86, 51, 0.05);
}

.ag-choice.selected {
  border-color: var(--rust);
  background: var(--rust);
  color: var(--cream);
}

.ag-key {
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.ag-choice.selected .ag-key {
  border-color: var(--cream);
  opacity: 1;
}

.ag-inst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.ag-inst {
  padding: 1rem 1.2rem;
  background: rgba(251, 226, 202, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--cream);
  text-align: left;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ag-inst:hover {
  border-color: var(--mauve);
  background: rgba(170, 102, 124, 0.05);
}

.ag-inst.selected {
  border-color: var(--mauve);
  background: var(--mauve);
  color: var(--cream);
}

.ag-icheck {
  width: 20px;
  height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  opacity: 0.5;
}

.ag-inst.selected .ag-icheck {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

.ag-date-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.ag-date-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ag-date-field label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.ag-date-field input {
  width: 90px;
  padding: 1rem;
  background: rgba(251, 226, 202, 0.03);
  border: 1px solid var(--border-color);
  border-bottom: 2px solid var(--rust);
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  text-align: center;
  transition: var(--transition);
}

.ag-date-field input:focus {
  border-bottom-color: var(--mauve);
  background: rgba(251, 226, 202, 0.08);
}

.ag-date-year input {
  width: 120px;
}

.ag-date-sep {
  font-size: 1.8rem;
  color: var(--border-color);
  opacity: 0.4;
  padding-bottom: 0.8rem;
}

.ag-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ag-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ag-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ag-form-field label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.ag-form-field input {
  background: rgba(251, 226, 202, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 1rem;
  outline: none;
  font-size: 0.95rem;
  color: var(--cream);
  transition: var(--transition);
}

.ag-form-field input:focus {
  border-color: var(--rust);
  background: rgba(251, 226, 202, 0.08);
}

.ag-btn-ok {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2rem;
  background: var(--rust);
  color: var(--cream);
  border: none;
  border-radius: 4px;
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.ag-btn-ok:hover {
  background: #d4633d;
  transform: translateY(-2px);
}

.ag-enter {
  font-size: 0.72rem;
  opacity: 0.6;
}

/* ERROR VISUAL VALIDATION */
.invalid-input {
  border-color: var(--rust) !important;
  border-bottom: 2px solid var(--rust) !important;
  background-color: rgba(189, 86, 51, 0.08) !important;
  box-shadow: 0 0 0 3px rgba(189, 86, 51, 0.2) !important;
}

/* ANIMATIONS */
@keyframes pulseGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-4%, -4%) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE LAYOUT */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 8rem 2rem 4rem 2rem;
  }

  .hero-right {
    height: 50vh;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Reduce section padding */
  .about,
  .products,
  .services-overview,
  .tools-overview,
  .index-comunidad,
  .contact {
    padding: 6rem 0;
  }

  .service-body {
    padding: 5rem 0;
  }

  .service-hero {
    padding: 10rem 0 4rem;
  }

  .products-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 820px) {
  nav#navbar {
    padding: 1rem 1.5rem;
  }

  nav#navbar.scrolled {
    padding: 0.7rem 1.5rem;
  }

  .nav-right {
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-contact-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo {
    font-size: 1.05rem;
  }

  /* Hero adjustments */
  .hero-left {
    padding: 7rem 1.5rem 3rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin-bottom: 1.5rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-cta {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
  }

  .hero-right {
    height: 40vh;
  }

  .hero-stat-band {
    flex-wrap: nowrap;
  }

  .stat-item {
    padding: 1rem 0.5rem;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  /* Tools grid */
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tools-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  /* Community grid */
  .index-comunidad-grid {
    grid-template-columns: 1fr;
  }

  /* Service/product body grid */
  .service-body-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Service hero */
  .service-hero {
    padding: 8rem 0 3rem;
  }

  .service-hero-desc {
    font-size: 1rem;
  }

  /* Section paddings */
  .about,
  .products,
  .services-overview,
  .tools-overview,
  .index-comunidad,
  .contact {
    padding: 5rem 0;
  }

  .service-body {
    padding: 4rem 0;
  }

  .service-detail-title {
    font-size: 1.8rem;
  }

  /* Contact form */
  .contact-form {
    padding: 2rem;
  }

  /* Cards */
  .product-card {
    padding: 2.5rem 2rem;
  }

  .service-card {
    padding: 2.5rem 2rem;
  }

  .tool-card {
    padding: 2.5rem 1.8rem;
  }

  .comunidad-card {
    padding: 2.5rem 2rem;
  }

  /* Modal agendar */
  .ag-nav-arrows {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .ag-modal-nav {
    padding: 1.2rem 1.5rem;
  }

  .ag-screen {
    padding: 6rem 1.5rem 4rem;
  }

  /* Tool detail bar */
  .tool-detail-bar {
    padding: 0.8rem 1.5rem;
  }

  .tool-detail-bar .back-btn {
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
  }

  .tool-detail-bar-title {
    font-size: 0.7rem;
    display: none;
  }

  /* Back button */
  .back-btn {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  /* Offer box */
  .offer-box {
    padding: 3rem 2rem;
  }

  .price-tag {
    font-size: 3rem;
  }

  /* Service includes */
  .service-includes {
    padding: 2rem;
    margin-top: 2rem;
  }

  .service-cta-block {
    margin-top: 2.5rem;
  }

  /* Buttons */
  .btn-primary,
  .btn-secondary {
    padding: 0.85rem 1.8rem;
    font-size: 0.78rem;
  }

  /* Footer */
  footer {
    padding: 36px 16px 24px !important;
  }

  .ft-brand {
    font-size: 18px;
  }

  .ft-tagline {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.2rem;
  }

  /* Hero */
  .hero-left {
    padding: 6.5rem 1.2rem 2.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-desc {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-right {
    height: 35vh;
  }

  .hero-bg-text {
    font-size: 30vw;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    margin-bottom: 1.5rem;
  }

  /* About */
  .about-grid {
    gap: 2rem;
  }

  .about-body {
    font-size: 0.95rem;
  }

  /* Photo grid */
  .photo-grid {
    grid-template-columns: 1fr;
  }

  /* Section padding */
  .about,
  .products,
  .services-overview,
  .tools-overview,
  .index-comunidad,
  .contact {
    padding: 4rem 0;
  }

  .service-body {
    padding: 3rem 0;
  }

  .service-hero {
    padding: 7rem 0 2.5rem;
  }

  .products-header {
    margin-bottom: 2rem;
  }

  .services-grid {
    margin-top: 2.5rem;
  }

  .tools-header {
    margin-bottom: 2.5rem;
  }

  /* Product card image */
  .product-visual-preview {
    height: 140px;
  }

  .product-name {
    font-size: 1.5rem;
  }

  .service-card-name {
    font-size: 1.5rem;
  }

  .tool-name {
    font-size: 1.5rem;
  }

  .comunidad-card-title {
    font-size: 1.5rem;
  }

  .service-num {
    font-size: 2.2rem;
  }

  /* Pain points grid */
  .pain-points-grid {
    grid-template-columns: 1fr;
  }

  /* Method step */
  .method-step {
    flex-direction: column;
    gap: 1rem;
  }

  /* Agendar modal */
  .ag-form-row {
    grid-template-columns: 1fr;
  }

  .ag-inst-grid {
    grid-template-columns: 1fr;
  }

  .ag-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .ag-choice {
    padding: 0.9rem 1.2rem;
    font-size: 0.88rem;
  }

  /* Contact */
  .contact-form {
    padding: 1.5rem;
  }

  .contact-body {
    font-size: 0.95rem;
  }

  /* Cal booking */
  .cal-booking-row {
    grid-template-columns: 1fr;
  }

  .btn-cal-primary {
    font-size: 0.82rem;
    padding: 1rem;
  }

  /* Service detail */
  .service-detail-title {
    font-size: 1.5rem;
  }

  .service-detail-text {
    font-size: 0.95rem;
  }

  /* Footer links */
  .ft-links {
    gap: 12px;
  }

  /* Index comunidad section flex */
  .index-comunidad .reveal[style] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
  }

  /* Social pills */
  .social-pill {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
  }

  /* Tool detail */
  .tool-detail-bar {
    padding: 0.6rem 1rem;
  }

  .tool-detail-bar .back-btn {
    font-size: 0.6rem;
    padding: 0.4rem 0.8rem;
  }
}