﻿/* Estilos base y tema premium AlbaVera Origen */

:root {
  --color-bg: #fdf4ec;
  --color-bg-soft: #fbefe3;
  --color-bg-soft-alt: #f7e7d6;
  --color-card: #fff8f1;
  --color-dark: #15110f;
  --color-deep-green: #0f3b32;
  --color-brown: #3f2a22;
  --color-accent: #c25a24;
  --color-accent-soft: #e5b086;
  --color-border-soft: rgba(0, 0, 0, 0.06);
  --color-muted: #9a8f86;
  --color-white: #ffffff;

  --shadow-soft: 0 22px 40px rgba(15, 16, 19, 0.14);
  --shadow-subtle: 0 14px 30px rgba(15, 16, 19, 0.08);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-pill: 14px;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top left, #fdf8f2 0, #f5e7da 26%, #f1e1d2 46%, #efe0d3 60%, #f5ebe1 100%);
  color: var(--color-brown);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

.honey-pot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.page {
  min-height: 100vh;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.narrow {
  width: min(760px, 100% - 3rem);
}

.center {
  text-align: center;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--color-muted);
}

.eyebrow {
  font-size: 0.84rem; /* +~20% para resaltar más en el hero */
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.hero-home .hero-copy .eyebrow {
  color: #ffc15e; /* tono específico para "Acompañamiento Personalizado" */
}

#bienvenida .welcome-copy > .eyebrow,
#herramientas .section-header .eyebrow,
#recursos .section-header--center > .eyebrow {
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  color: var(--color-brown);
}

h1 {
  font-size: clamp(2.7rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 0.9rem;
  line-height: 1.82;
}

.highlight {
  color: var(--color-accent);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(253, 244, 236, 0.92), rgba(253, 244, 236, 0.82));
  border-bottom: none;
}

/* Header transparente y menú hamburguesa para Inicio */

.page-home .site-header {
  position: absolute;
  inset-inline: 0;
  top: 0;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  transition: background 0.45s ease-out, backdrop-filter 0.45s ease-out, border-color 0.45s ease-out;
}

.page-home .site-header.is-scrolled {
  position: sticky;
  background: #fff6e7;
  border-bottom: none;
  backdrop-filter: blur(12px);
}

.page-home .site-header.is-scrolled .nav-toggle-label {
  display: inline-block;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding-block: 0.8rem;
  gap: 1.5rem;
  position: relative;
}

.page-home .header-inner {
  justify-content: flex-start;
}

.page-home .header-inner .btn-small {
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
}

/* Logo de header solo visible cuando la barra tiene fondo sólido en Inicio */

.page-home .site-header .brand-logo {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.page-home .site-header.is-scrolled .brand-logo {
  opacity: 1;
}

/* Menú hamburguesa fijo en Inicio */

.page-home .nav-toggle {
  display: inline-flex;
}

.page-home .site-header:not(.is-scrolled) .nav-toggle-icon span {
  background: #1F1300;
}

.page-home .site-header:not(.is-scrolled) .nav-toggle-label {
  color: #1F1300;
}

.page-home .site-nav {
  position: absolute;
  left: calc(3.35rem + 2px);
  top: 50%;
  padding: 0;
  margin-left: 0;
  background: transparent;
  box-shadow: none;
  transform-origin: left center;
  transform: translateY(-50%) translateX(-10px);
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: max-width 0.28s ease-out, transform 0.24s ease-out, opacity 0.24s ease-out;
}

.page-home .site-nav ul {
  flex-direction: row;
  gap: 1rem;
}

.page-home .site-nav a {
  color: rgba(248, 250, 252, 0.86);
}

.page-home .site-nav a.is-active {
  color: #facc6b;
}

.page-home .site-header.is-scrolled .site-nav a,
.page-home .site-header.is-scrolled .site-nav a.is-active {
  color: #1F1300;
}

.page-home .site-header.is-open .site-nav {
  max-width: min(560px, 72vw);
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.page-home .site-header.is-open .site-nav a.is-active {
  color: #d4a64a;
  text-shadow: 0 0 14px rgba(212, 166, 74, 0.24);
}

.page-home .site-header.is-open .site-nav a.is-active::after {
  width: 100%;
  background: linear-gradient(90deg, #f1d08a, #d4a64a);
}

.page-home .site-header.is-open .nav-toggle-label {
  display: none;
}

.site-nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
  color: var(--color-muted);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #f5c48e, #c25a24);
  transition: width 0.22s ease-out;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.site-nav a.is-active {
  color: var(--color-brown);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.2rem 0.35rem;
  flex-direction: row;
  align-items: center;
  gap: 0.9rem; /* "Menú" ~50% más hacia la derecha */
  cursor: pointer;
}

.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 0.22rem;
}

.nav-toggle-icon span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-brown);
}

.nav-toggle-icon span:first-child {
  width: 32px;
}

.nav-toggle-label {
  display: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-brown);
}

/* Botones */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: transparent;
  color: var(--color-brown);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, background 0.16s ease-out,
    border-color 0.16s ease-out, color 0.16s ease-out;
}

.btn-primary {
  background: linear-gradient(140deg, #1F1300 0, #1F1300 100%);
  color: #f5e8d8;
  border-color: rgba(245, 232, 216, 0.32);
  box-shadow: 0 12px 24px rgba(10, 8, 7, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(140deg, #00293c 0, #00293c 100%);
  border-color: rgba(245, 232, 216, 0.5);
  box-shadow: 0 18px 32px rgba(10, 8, 7, 0.3);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 232, 216, 0.22), 0 18px 32px rgba(10, 8, 7, 0.3);
}

.btn-outline {
  border-color: transparent;
  background: #1F1300;
  color: #f5e8d8;
  box-shadow: 0 8px 22px rgba(31, 19, 0, 0.22);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #3a2510;
  border-color: rgba(245, 232, 216, 0.18);
  color: #fdf0e0;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(31, 19, 0, 0.34);
  outline: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(31, 19, 0, 0.18);
  box-shadow: 0 6px 16px rgba(31, 19, 0, 0.08);
  backdrop-filter: blur(2px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 248, 239, 0.92), rgba(245, 221, 193, 0.92));
  border-color: rgba(31, 19, 0, 0.36);
  color: #1F1300;
  box-shadow: 0 14px 28px rgba(31, 19, 0, 0.18), 0 0 0 3px rgba(245, 196, 142, 0.2);
  outline: none;
}

/* Botón fantasma sobre el hero de video */

.hero-home .btn-ghost {
  background: rgba(15, 23, 42, 0.32);
  border-color: rgba(248, 250, 252, 0.7);
  color: #e5e7eb;
}

.hero-home .btn-ghost:hover,
.hero-home .btn-ghost:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.22), rgba(255, 231, 202, 0.2));
  border-color: rgba(255, 231, 202, 0.9);
  color: #fefce8;
  box-shadow: 0 16px 30px rgba(3, 7, 18, 0.34), 0 0 0 3px rgba(255, 231, 202, 0.2);
  outline: none;
}

.btn-small {
  padding-inline: 1.1rem;
  padding-block: 0.6rem;
  font-size: 0.78rem;
}

/* Hover refinado para CTA clave sin alterar su paleta */

.site-header .btn-small.btn-primary,
.hero-home .hero-cta .btn-primary,
.hero-about-us .hero-cta .btn-primary,
.cta-section .btn-primary,
.contact-form .btn-outline.btn-block,
.contact-column--support .btn-whatsapp {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.24s ease-out, box-shadow 0.24s ease-out, border-color 0.24s ease-out, background 0.24s ease-out;
}

.site-header .btn-small.btn-primary::before,
.hero-home .hero-cta .btn-primary::before,
.hero-about-us .hero-cta .btn-primary::before,
.cta-section .btn-primary::before,
.contact-form .btn-outline.btn-block::before,
.contact-column--support .btn-whatsapp::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% -120%;
  width: 62%;
  background: linear-gradient(100deg, transparent 0, rgba(245, 232, 216, 0.32) 48%, transparent 100%);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  transition: left 0.5s ease, opacity 0.35s ease;
}

.site-header .btn-small.btn-primary:hover,
.site-header .btn-small.btn-primary:focus-visible,
.hero-home .hero-cta .btn-primary:hover,
.hero-home .hero-cta .btn-primary:focus-visible,
.hero-about-us .hero-cta .btn-primary:hover,
.hero-about-us .hero-cta .btn-primary:focus-visible,
.cta-section .btn-primary:hover,
.cta-section .btn-primary:focus-visible,
.contact-form .btn-outline.btn-block:hover,
.contact-form .btn-outline.btn-block:focus-visible,
.contact-column--support .btn-whatsapp:hover,
.contact-column--support .btn-whatsapp:focus-visible {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 20px 34px rgba(10, 8, 7, 0.3);
}

.site-header .btn-small.btn-primary:hover::before,
.site-header .btn-small.btn-primary:focus-visible::before,
.hero-home .hero-cta .btn-primary:hover::before,
.hero-home .hero-cta .btn-primary:focus-visible::before,
.hero-about-us .hero-cta .btn-primary:hover::before,
.hero-about-us .hero-cta .btn-primary:focus-visible::before,
.cta-section .btn-primary:hover::before,
.cta-section .btn-primary:focus-visible::before,
.contact-form .btn-outline.btn-block:hover::before,
.contact-form .btn-outline.btn-block:focus-visible::before,
.contact-column--support .btn-whatsapp:hover::before,
.contact-column--support .btn-whatsapp:focus-visible::before {
  left: 135%;
  opacity: 1;
}

.btn-block {
  width: 100%;
}

.btn-whatsapp {
  background: #1F1300;
  color: #f5e8d8;
  font-weight: 700;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  width: 100%;
  line-height: 1.25;
  padding-block: 0.9rem;
  box-shadow: 0 8px 22px rgba(31, 19, 0, 0.22);
  border: 1px solid rgba(245, 232, 216, 0.1);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(31, 19, 0, 0.38);
  border-color: rgba(245, 232, 216, 0.28);
  outline: none;
}

.btn-whatsapp::before {
  content: none;
}

.btn-whatsapp-image {
  width: min(100%, 170px);
  height: auto;
  display: block;
}

.link-arrow {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.link-arrow::after {
  content: "→";
  font-size: 0.9em;
}

/* Secciones */

.section {
  padding-block: 8rem;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), var(--color-bg-soft));
}

/* Entradas escalonadas al hacer scroll */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.64s ease-out, transform 0.64s ease-out;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Aparición de cards de abajo hacia arriba escalonada */

@keyframes card-slide-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-on-scroll {
  opacity: 0;
}

.card-on-scroll.is-visible {
  animation: card-slide-up 0.58s ease-out both;
  animation-delay: calc(var(--card-index, 0) * 110ms);
}

@media (prefers-reduced-motion: reduce) {
  .card-on-scroll,
  .card-on-scroll.is-visible {
    opacity: 1;
    animation: none;
  }
}

/* Fondos específicos para secciones de Inicio */
#bienvenida,
#nataly,
#herramientas,
#recursos {
  background: #fff6e7;
}

#nataly {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(210, 142, 93, 0.2) 0, rgba(210, 142, 93, 0) 45%),
    radial-gradient(circle at 15% 85%, rgba(23, 65, 56, 0.34) 0, rgba(23, 65, 56, 0) 48%),
    linear-gradient(140deg, #2b1d17 0, #1a1513 42%, #17211f 100%);
  color: #f2e8de;
}

#nataly::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21, 17, 15, 0.6), rgba(21, 17, 15, 0.4));
  pointer-events: none;
  z-index: 1;
}

#nataly .container {
  position: relative;
  z-index: 2;
}

#nataly h2,
#nataly .eyebrow,
#nataly .link-arrow {
  color: #f8d2a8;
}

#nataly .link-arrow {
  margin-top: 1.1rem;
}

#nataly p {
  color: rgba(245, 233, 220, 0.9);
  line-height: 1.8;
}

#nataly .portrait-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34);
}

#nataly .portrait-photo {
  border-radius: var(--radius-lg);
}

.nataly-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
  opacity: 0.92;
  mix-blend-mode: screen;
  filter: saturate(112%);
}

#nataly::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 223, 183, 0.08) 0, rgba(255, 223, 183, 0) 42%),
    radial-gradient(circle at 25% 80%, rgba(181, 229, 219, 0.06) 0, rgba(181, 229, 219, 0) 46%);
}

.section-dark {
  background: #15110f;
  color: #f3e6d9;
}

.section-dark h2,
.section-dark h3,
.section-dark .eyebrow {
  color: inherit;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Bienvenida Home */

.section-welcome .welcome-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.7fr);
  gap: 3rem;
  align-items: center;
}

.welcome-copy .lead {
  margin-bottom: 0;
  color: #6a584b;
  font-weight: 500;
}

.welcome-visual {
  display: flex;
  justify-content: flex-end;
}

.section-welcome .welcome-visual.reveal-on-scroll {
  transform: translateX(54px);
}

.section-welcome .welcome-visual.reveal-on-scroll.is-visible {
  transform: translateX(0);
}

.welcome-image {
  max-width: 1000px; /* ~40% más grande que 714px */
  width: 100%;
  height: auto;
  transform: translateX(15%);
  border-radius: 18px;
}

/* Hero */

.hero {
  position: relative;
  padding-block: 3.8rem 4.2rem;
}

.hero-home {
  background: radial-gradient(circle at 10% 0, #164136 0, #16826f 30%, #0f3b32 55%, #0b2520 100%);
  color: var(--color-white);
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-home .hero-copy h1 {
  color: var(--color-white);
}

.hero-home .hero-title .highlight {
  color: #1f1300c8; /* tono claridad y proposito */
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  align-items: center;
  gap: 3rem;
}

.hero-grid--reverse {
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 2.8fr);
}

.hero-text {
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  line-height: 1.78;
}

.hero-home .hero-text {
  margin-bottom: 1.4rem;
}

/* Video de hero Inicio */

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.1);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Gradiente de contraste: más denso bajo el texto (izquierda) y transparente hacia la derecha */
  background: linear-gradient(
    90deg,
    rgba(31, 19, 0, 0.72) 0%,
    rgba(31, 19, 0, 0.56) 24%,
    rgba(31, 19, 0, 0.28) 48%,
    rgba(31, 19, 0, 0) 78%
  );
}

.hero-home .hero-grid {
  position: relative;
  z-index: 1;
}

.hero-title {
  text-shadow: 0 28px 60px rgba(0, 0, 0, 0.85);
  will-change: transform;
}

.hero-text--emphasis {
  font-size: 1.02rem;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

/* Animaciones hero */

@keyframes fade-up-soft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow-underline {
  from {
    text-shadow: 0 0 0 rgba(245, 196, 142, 0.2);
  }
  to {
    text-shadow: 0 0 26px rgba(245, 196, 142, 0.9);
  }
}

.hero-home .hero-copy > * {
  opacity: 0;
  transform: translateX(-28px);
  animation: fade-up-soft 0.9s ease-out forwards;
}

.hero-home .hero-copy .eyebrow {
  font-weight: 1000;
  animation-delay: 0.05s;
}

.hero-home .hero-title {
  /* Aumentar peso para más cuerpo de blanco sobre el video */
  font-weight: 1200;
  animation-delay: 0.16s;
}

.hero-home .hero-text--emphasis {
  /* Texto de apoyo algo más robusto que Regular */
  font-weight: 600;
  animation-delay: 0.3s;
}

.hero-home .hero-cta {
  animation-delay: 0.45s;
}

.hero-home .hero-title .highlight {
  animation: glow-underline 1.6s ease-in-out 0.4s forwards;
}

@keyframes hero-about-us-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.page-about-us .hero-about-us .hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  animation: hero-about-us-enter 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-about-us .hero-about-us .hero-copy .eyebrow {
  animation-delay: 0.04s;
  font-weight: 850;
}

.page-about-us .hero-about-us .hero-copy h1 {
  animation-delay: 0.16s;
  font-weight: 950;
}

.page-about-us .hero-about-us .hero-copy .hero-text {
  animation-delay: 0.32s;
  font-weight: 500;
}

.page-about-us .hero-about-us .hero-copy .hero-cta {
  animation-delay: 0.48s;
}

/* ── Animación de entrada hero Contacto ── */
@keyframes hero-contact-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.page-contact .hero-contact .container > * {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  animation: hero-contact-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-contact .hero-contact .container .eyebrow {
  animation-delay: 0.05s;
}

.page-contact .hero-contact .container h1 {
  animation-delay: 0.18s;
}

.page-contact .hero-contact .container .hero-text {
  animation-delay: 0.34s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-home .hero-copy > *,
  .page-about-us .hero-about-us .hero-copy > *,
  .page-contact .hero-contact .container > *,
  .hero-home .hero-title .highlight {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
    text-shadow: none;
  }

  .page-services .hero-services .hero-copy > * {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

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

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-figure {
  position: relative;
  width: 260px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 15%, #fdf3e4 0, #f6dec2 35%, transparent 60%),
    radial-gradient(circle at 100% 100%, #0b2520 0, #000000 65%);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.hero-moon {
  position: absolute;
  width: 82%;
  height: 82%;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 18%, #ffffff 0, #f9e8cf 45%, #f0dac3 70%);
  transform: translate(6%, 6%);
}

.hero-orbit {
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-services,
.hero-contact {
  background: var(--color-bg-soft);
}

.hero-services {
  position: relative;
  overflow: hidden;
  background: #1f1300;
  color: #fff3e3;
}

.hero-services .hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  justify-items: end;
  min-height: 420px;
}

.hero-services h1 {
  color: #fff3e3;
}

.hero-services .hero-copy {
  max-width: 34rem;
  text-align: right;
  align-self: end;
}

.hero-services .eyebrow {
  color: #1F1300;
  font-weight: 700;
}

.hero-services .hero-text {
  color: rgba(255, 243, 227, 0.96);
  margin-left: auto;
  font-weight: 700;
}

@keyframes hero-services-enter-left {
  from {
    opacity: 0;
    transform: translateX(-42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.page-services .hero-services .hero-copy > * {
  opacity: 0;
  transform: translateX(-42px);
  animation: hero-services-enter-left 1.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-services .hero-services .hero-copy .eyebrow {
  animation-delay: 0.04s;
}

.page-services .hero-services .hero-copy h1 {
  animation-delay: 0.2s;
}

.page-services .hero-services .hero-copy .hero-text {
  animation-delay: 0.42s;
}

.hero-overlay--services {
  background: linear-gradient(
    100deg,
    rgba(31, 19, 0, 0.72) 0%,
    rgba(31, 19, 0, 0.56) 30%,
    rgba(31, 19, 0, 0.24) 56%,
    rgba(31, 19, 0, 0.1) 100%
  );
}

.hero-about {
  position: relative;
  overflow: hidden;
  background: url("../img/HeroCHAlbaVera.webp") center/cover no-repeat;
}

.hero-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(31, 19, 0, 0.74) 0%,
    rgba(31, 19, 0, 0.58) 28%,
    rgba(31, 19, 0, 0.3) 52%,
    rgba(31, 19, 0, 0) 80%
  );
  pointer-events: none;
}

.hero-about .container {
  position: relative;
  z-index: 1;
}

.hero-about .hero-copy h1,
.hero-about .eyebrow {
  color: #fff3e3;
}

.hero-about .hero-text {
  color: rgba(255, 243, 227, 0.9);
}

.hero-about .hero-grid,
.hero-services .hero-grid {
  align-items: stretch;
}

.portrait-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fdf5eb, #f0dfcf);
  padding: 0.55rem;
  box-shadow: var(--shadow-soft);
}

/* Sin marco en la foto de la sección "Conoce a Nataly" del home */
#nataly .portrait-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.35rem;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34);
}

/* Centrado vertical del bloque de texto respecto a la imagen en "Conoce a Nataly" */
#nataly .two-column {
  align-items: stretch;
}

#nataly .two-column .column.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#nataly .column.visual .portrait-card.reveal-on-scroll {
  transform: translateX(-54px);
}

#nataly .column.visual .portrait-card.reveal-on-scroll.is-visible {
  transform: translateX(0);
}

.portrait-card--large {
  max-width: 360px;
  margin-left: auto;
}

.portrait-photo {
  border-radius: calc(var(--radius-lg) - 4px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 3/4;
}

/* Ilustraciones simuladas / retratos reales */

.portrait-photo--primary {
  background-image: url("../img/NatalyAVo.png");
}

.portrait-photo--about {
  background-image: linear-gradient(160deg, #fcd2c2, #f9e4d4);
}

.resource-thumb,
.whatsapp-photo,
.story-photo-inner,
.mission-tile--texture {
  background-image: linear-gradient(135deg, #c5b39e, #7b5b3f);
  background-size: cover;
  background-position: center;
}

.resource-thumb {
  height: 150px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.4s ease-out;
  background-size: cover;
  background-position: center;
}

.resource-thumb--meditacion {
  background-image: url("../img/ReconectarAVo.webp");
}

.resource-thumb--varon {
  background-image: url("../img/SintomasAVo.webp");
}

.resource-thumb--nino {
  background-image: url("../img/PerdonAVo.webp");
}

.whatsapp-photo {
  height: 130px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.story-photo {
  margin-bottom: 1.5rem;
  border-radius: 0;
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.story-photo-inner {
  border-radius: calc(var(--radius-lg) - 4px);
  aspect-ratio: 4/3;
}

.story-photo-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.origin-image {
  width: 100%;
  margin-top: 1.5rem;
  border-radius: 10px;
  box-shadow: none;
}

.origin-bridge-image {
  width: min(76%, 360px);
  margin-top: 1.1rem;
  align-self: center;
  border-radius: 10px;
  box-shadow: none;
}

/* Layouts */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 12.7rem;
  align-items: center;
}

.two-column--stack {
  align-items: flex-start;
}

.section-origin .two-column {
  align-items: stretch;
}

.section-origin {
  background: #fdf4ec;
  padding-bottom: 4.9rem;
}

.section-origin .column:first-child {
  display: flex;
  flex-direction: column;
}

.section-origin .column:first-child .origin-image {
  margin-top: auto;
}

.section-origin .column:first-child > .eyebrow {
  color: #c25a24;
  font-weight: 700;
}

.story-block {
  align-self: start;
}

.story-block .founder-quote {
  margin-top: 0.35rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #b5481b;
}

.story-block strong,
.section-origin .column strong {
  font-weight: 700;
  color: #6a2f1f;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  border-radius: var(--radius-md);
  background: #fffaf5;
  border: 1px solid rgba(63, 42, 34, 0.05);
  padding: 1.7rem 1.8rem;
  box-shadow: none;
}

/* Cards específicas de la sección Herramientas con más aire interno */
.tool-card {
  padding: 2rem 2.2rem 2.4rem;
  text-decoration: none;
  color: inherit;
  display: block;
}

.tool-card h3 {
  margin-bottom: 1.7rem; /* más espacio entre título y párrafo */
}

.tool-card .tool-icon {
  width: 100%;
  height: 150px;
  margin-bottom: 1.1rem;
  border: 1px solid #00293c;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.4s ease-out;
}

.tool-icon--access {
  background-image: url("../img/AccessConsciousness.webp");
}

.tool-icon--numerologia {
  background-image: url("../img/Numerologia.webp");
}

.tool-icon--pendulo {
  background-image: url("../img/Pendulo.webp");
}

.tool-icon--pnl {
  background-image: url("../img/PNL.webp");
}

.tool-icon--arbol {
  background-image: url("../img/ArbolTransgeneracional.webp");
}

.card-number {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
  margin-bottom: 0.8rem;
}

/* Carrusel de herramientas (Inicio) */

.tools-carousel {
  position: relative;
  padding-inline: 3.6rem;
}

.tools-viewport {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 0.8rem 0.7rem 1rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0.7rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: auto;
  touch-action: pan-y;
}

.tools-viewport::-webkit-scrollbar {
  display: none;
}

.tools-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.tools-viewport.is-dragging .tool-card {
  user-select: none;
}

.tools-track {
  display: flex;
  gap: 1.8rem;
  align-items: stretch;
  padding-block: 0;
}

.tools-track .tool-card {
  --tool-card-bg: #00293c;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 2 * 1.8rem) / 3);
  min-width: 18.2rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--tool-card-bg);
  border-color: rgba(248, 250, 252, 0.14);
  box-shadow: none;
  transform-origin: center;
  transition: transform 0.2s ease-out, border-color 0.2s ease-out, background 0.2s ease-out;
}

.tools-track .tool-card h3 {
  color: #ffd39e;
}

.tools-track .tool-card p {
  color: rgba(223, 235, 242, 0.9);
  flex: 1;
}

.tools-track .tool-card .link-arrow {
  color: #f5c48e;
  margin-top: auto;
  align-self: flex-start;
}

.tools-track .tool-card:hover .tool-icon,
.tools-track .tool-card:focus-within .tool-icon {
  transform: scale(1.06);
}

.tools-track .tool-card:hover,
.tools-track .tool-card:focus-within {
  --tool-card-bg: #fff7ef;
  transform: scale(1.04);
  box-shadow: none;
  border-color: rgba(63, 42, 34, 0.09);
  background: #fff7ef;
  cursor: pointer;
  z-index: 1;
}

.tools-track .tool-card:hover h3,
.tools-track .tool-card:focus-within h3 {
  color: var(--color-brown);
}

.tools-track .tool-card:hover p,
.tools-track .tool-card:focus-within p {
  color: #6f6258;
}

.tools-track .tool-card:hover .link-arrow,
.tools-track .tool-card:focus-within .link-arrow {
  color: var(--color-accent);
}

.tools-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(31, 19, 0, 0.22);
  background: rgba(255, 248, 241, 0.22);
  color: transparent;
  box-shadow: 0 8px 22px rgba(31, 19, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background 0.2s ease-out, border-color 0.2s ease-out;
  z-index: 3;
}

.tools-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(31, 19, 0, 0.84);
  border-bottom: 1.5px solid rgba(31, 19, 0, 0.84);
  transition: border-color 0.2s ease-out, transform 0.2s ease-out;
}

.tools-arrow--prev::before {
  transform: rotate(135deg);
}

.tools-arrow--next::before {
  transform: rotate(-45deg);
}

.tools-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(31, 19, 0, 0.12);
  background: #1f1300b9;
  box-shadow: 0 14px 30px rgba(31, 19, 0, 0.2);
}

.tools-arrow:hover::before {
  border-right-color: rgba(255, 241, 228, 0.96);
  border-bottom-color: rgba(255, 241, 228, 0.96);
}

.tools-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.tools-arrow--prev {
  left: 0;
}

.tools-arrow--next {
  right: 0;
}

.resources-grid .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.4rem 1.1rem 1.4rem; /* más aire lateral y abajo */
}

.resources-grid .card-body h3 {
  margin-bottom: 1.7rem; /* más espacio entre título y párrafo */
}

.resources-grid .resource-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.22s ease-out, border-color 0.22s ease-out, background 0.22s ease-out;
}

.resources-grid .card-body p:not(.eyebrow) {
  flex: 1;
}

.resources-grid .resource-card .link-arrow {
  margin-top: auto;
  align-self: flex-start;
}

.resources-grid .resource-card:hover .resource-thumb,
.resources-grid .resource-card:focus-within .resource-thumb {
  transform: scale(1.06);
}

.resources-grid .resource-card:hover,
.resources-grid .resource-card:focus-within {
  transform: scale(1.04);
  box-shadow: none;
  border-color: rgba(63, 42, 34, 0.09);
  background: #fff7ef;
  cursor: pointer;
  z-index: 1;
}

/* Testimonio */

.testimonial-section {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-block: 4rem 3.6rem;
  background: none;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: -7% 0;
  background:
    linear-gradient(to bottom, rgba(5, 5, 8, 0.6), rgba(5, 5, 8, 0.3)),
    url("../img/FondoTestimonioAVo1.webp") center/cover no-repeat;
  transform: translate3d(0, var(--testimonial-parallax-y, 0px), 0) scale(1.08);
  will-change: transform;
  z-index: 0;
}

.testimonial-section > * {
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  position: relative;
  min-height: 170px;
  margin-bottom: 1.4rem;
}

.testimonial-slide {
  display: none;
  max-width: 760px;
  margin-inline: auto;
  padding: 1.2rem 1.1rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.testimonial-slide.is-active {
  display: block;
}

.quote-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1.1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 1.6rem;
  color: rgba(255, 248, 241, 0.98);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.55);
}

.testimonial-name {
  font-weight: 600;
  color: #ffe7ca;
}

.testimonial-meta {
  display: inline-block;
  margin-top: 0.2rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffe7ca;
  background: rgba(255, 231, 202, 0.12);
  border: 1px solid rgba(255, 231, 202, 0.34);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.6);
  background: rgba(15, 23, 42, 0.55);
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.testimonial-arrow--prev {
  left: 1.5rem;
}

.testimonial-arrow--next {
  right: 1.5rem;
}

.testimonial-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.testimonial-dot {
  width: 26px;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.18s ease-out, background 0.18s ease-out, opacity 0.18s ease-out;
}

.testimonial-dot:hover,
.testimonial-dot:focus-visible {
  transform: scaleX(1.08);
  background: rgba(255, 255, 255, 0.62);
  opacity: 1;
  outline: none;
}

.testimonial-dot.is-active {
  width: 34px;
  background: #f5c48e;
  opacity: 1;
  transform: none;
}

/* Cierre */

.closing-quote {
  position: relative;
  /* Fondo de nebulosa muy sutil con overlay marrón oscuro casi opaco */
  background:
    linear-gradient(to bottom, rgba(63, 42, 34, 0.8), rgba(21, 17, 15, 1)),
    url("../img/FondoCierre.webp") center/cover no-repeat;
  color: #f9fafb;
  font-weight: 1000;
  padding-block: 10.5rem 6rem; /* ~30% más alta respecto al ajuste anterior */
}

.closing-quote .container {
  position: relative;
  z-index: 2;
}

.closing-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
  opacity: 0.92;
  mix-blend-mode: screen;
  filter: saturate(112%);
}

.closing-quote .lead {
  font-size: 1.2rem;
  color: inherit;
  font-style: italic;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.closing-cta {
  margin-top: 2rem;
  padding: 1rem 2.4rem;
  border: 1px solid rgba(255, 220, 190, 0.34);
  background: linear-gradient(135deg, rgba(194, 90, 36, 0.98), rgba(194, 90, 36, 0.98));
  color: #fff9f4;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 244, 232, 0.34);
  letter-spacing: 0.14em;
}

.closing-cta:hover,
.closing-cta:focus-visible {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, #d46a31, #d46a31 58%, #a9441a 100%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34), 0 0 0 8px rgba(245, 196, 142, 0.12);
  outline: none;
}

/* Filosofía */

.philosophy-section {
  background: #fdf4ec;
  padding-top: 4.9rem;
}

.philosophy-section .container.narrow.center > .eyebrow {
  font-weight: 600;
}

.philosophy-section .lead {
  max-width: 62ch;
  margin-inline: auto;
  color: #7a5a4d;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.12rem, 1.03rem + 0.24vw, 1.28rem);
  line-height: 1.86;
  font-weight: 500;
  text-transform: none;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2.6rem;
}

.philosophy-pill {
  position: relative;
  border-radius: var(--radius-md);
  padding: 2.25rem 1.7rem 1.8rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(63, 42, 34, 0.05);
  box-shadow: none;
}

.philosophy-pill::after {
  position: absolute;
  top: 0.78rem;
  right: 0.82rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  font-weight: 700;
  background: rgba(194, 90, 36, 0.14);
  color: #8f3c19;
}

.philosophy-pill--integridad::after {
  content: "◆";
}

.philosophy-pill--presencia::after {
  content: "☼";
}

.philosophy-pill--expansion::after {
  content: "➶";
}

/* Misión */

.mission-section {
  background: #1f1300;
  padding-block: 4.4rem 4.6rem;
}

.mission-section .eyebrow {
  color: #ffd46b;
  font-weight: 700;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: center;
}

.mission-visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: center;
}

.mission-image {
  width: 100%;
  max-height: 560px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.mission-tile {
  border-radius: var(--radius-lg);
  min-height: 140px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-tile--quote {
  background: radial-gradient(circle at 10% 0, #f6dac5 0, #f2c19a 35%, #b96b39 100%);
  color: #20120d;
  text-align: center;
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
}

.cta-section h2 {
  margin-bottom: 2.2rem;
}

/* Servicios */

.hero-visual--disc {
  align-items: center;
}

.service-disc {
  width: 270px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 40%, #44403c 0, #111827 60%, #020617 100%);
  position: relative;
}

.service-disc::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: inherit;
  border: 1px solid rgba(148, 163, 184, 0.38);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.services-catalog-section {
  background: #fff6e7;
}

.services-section-eyebrow {
  font-weight: 700;
  margin-bottom: 3rem;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(0, 1.5fr);
  gap: 1.8rem;
  padding: 1.9rem 2rem;
  background: #fffaf5;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(63, 42, 34, 0.05);
  box-shadow: none;
}

.service-row--access,
.service-row--numerologia,
.service-row--pendulo,
.service-row--pnl,
.service-row--arbol {
  grid-template-columns: minmax(0, 2.9fr) minmax(0, 1.8fr);
}

.service-row--access .tag-row,
.service-row--numerologia .tag-row,
.service-row--pendulo .tag-row,
.service-row--pnl .tag-row,
.service-row--arbol .tag-row {
  margin-top: 1.2rem;
}

.service-row--reverse .service-meta {
  order: 2;
}

.service-row--reverse .service-cta {
  order: 1;
}

.service-meta p {
  color: #5f4d42dc;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.tag {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.service-cta {
  align-self: center;
}

.service-cta--with-image {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  align-self: stretch;
  gap: 0;
}

.service-cta-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-bottom: 1rem;
  filter: brightness(0.88);
}

.service-cta--with-image .btn {
  margin-top: 0;
}

.service-row--reverse .service-cta--with-image {
  justify-content: flex-start;
}

.service-row--reverse .service-cta--with-image .btn {
  margin-top: auto;
}

.page-services main .btn-primary:not(.btn-small),
.page-services main .closing-cta {
  position: relative;
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.32s ease, filter 0.32s ease, border-color 0.32s ease,
    background 0.32s ease;
}

.page-services main .btn-primary:not(.btn-small)::before,
.page-services main .closing-cta::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 58%;
  height: 320%;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(12deg) translateX(-140%);
  transition: transform 0.62s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.page-services main .btn-primary:not(.btn-small):hover,
.page-services main .btn-primary:not(.btn-small):focus-visible,
.page-services main .closing-cta:hover,
.page-services main .closing-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(10, 8, 7, 0.26);
  filter: saturate(105%);
}

.page-services main .btn-primary:not(.btn-small):hover::before,
.page-services main .btn-primary:not(.btn-small):focus-visible::before,
.page-services main .closing-cta:hover::before,
.page-services main .closing-cta:focus-visible::before {
  transform: rotate(12deg) translateX(255%);
}

/* FAQ / Acordeón */

.faq-section {
  background: #fff6e7;
}

.accordion {
  margin-top: 2.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(63, 42, 34, 0.05);
  box-shadow: none;
}

.accordion-item + .accordion-item {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.accordion-header {
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.98rem;
  text-align: left;
  cursor: pointer;
}

.accordion-body {
  padding: 0 1.6rem 1.5rem;
  color: #5f4d42dc;
}

.faq-section .lead {
  color: #6a5649;
}

.accordion-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 9px;
  height: 1px;
  background: rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open .accordion-icon::after {
  opacity: 0;
}

.accordion-item:not(.is-open) .accordion-body {
  display: none;
}

/* ── Páginas legales ── */

.legal-doc {
  max-width: 800px;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2rem) clamp(4rem, 8vw, 7rem);
}

.legal-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(194, 130, 76, 0.18);
}

.legal-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-heading, #2c1a0e);
}

.legal-meta {
  font-size: 0.85rem;
  color: #8a7060;
  margin: 0;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.legal-section h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: #2c1a0e;
  margin-bottom: 0.9rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(194, 130, 76, 0.14);
}

.legal-section p {
  font-size: 0.975rem;
  line-height: 1.8;
  color: #4a3728;
  margin-bottom: 0.9rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-section ul li {
  font-size: 0.975rem;
  line-height: 1.75;
  color: #4a3728;
}

.legal-section a {
  color: #b05b27;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: #7a3a15;
}

/* Descargo de responsabilidad — destacado visualmente */
.legal-section--disclaimer {
  background: rgba(255, 244, 230, 0.6);
  border: 1px solid rgba(194, 130, 76, 0.28);
  border-radius: 10px;
  padding: 2rem;
}

.legal-section--disclaimer h2 {
  border-bottom-color: rgba(194, 130, 76, 0.26);
}

.disclaimer-intro {
  font-style: italic;
  font-weight: 500;
  color: #7a3a15 !important;
  margin-bottom: 1.1rem !important;
}

.legal-closing {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(194, 130, 76, 0.18);
  text-align: center;
}

.legal-closing p {
  font-size: 1rem;
  color: #4a3728;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-closing-signature {
  font-size: 0.95rem;
  color: #8a7060 !important;
}

.legal-closing-signature em {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: #7a3a15;
}

/* Contacto */

.hero-contact {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  text-align: center;
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
  background:
    linear-gradient(
      100deg,
      rgba(31, 19, 0, 0.72) 0%,
      rgba(31, 19, 0, 0.56) 34%,
      rgba(31, 19, 0, 0.32) 62%,
      rgba(31, 19, 0, 0.2) 100%
    ),
    url("../img/HeroContact.webp") center/cover no-repeat;
  color: #fff3e3;
}

.hero-contact h1 {
  color: #fff3e3;
}

.hero-contact .eyebrow {
  font-weight: 700;
}

.hero-contact .hero-text {
  color: rgba(255, 243, 227, 0.92);
  margin-inline: auto;
  font-weight: 700;
}

.contact-layout {
  padding-top: clamp(2.5rem, 5vw, 4.25rem);
}

.contact-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
  gap: 1.6rem;
  align-items: stretch;
}

.contact-column {
  border-radius: var(--radius-lg);
  background: #fffaf5;
  padding: 1.8rem 1.7rem;
  border: 1px solid rgba(63, 42, 34, 0.05);
  box-shadow: none;
}

.contact-column--support {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.support-social {
  margin-top: 0.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(63, 42, 34, 0.08);
}

.support-social-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #5c4a3e;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.support-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.6rem;
}

.support-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(63, 42, 34, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3f2a22;
  background: rgba(63, 42, 34, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.16s ease-out, transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}

.support-social-icon:hover {
  background: #1F1300;
  color: #f5e8d8;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(31, 19, 0, 0.22);
}

.support-social-icon::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.support-social-icon--instagram::before { background-image: url("../img/instagram.webp"); }
.support-social-icon--facebook::before  { background-image: url("../img/facebook.webp"); }
.support-social-icon--tiktok::before    { background-image: url("../img/tiktok.webp"); }
.support-social-icon--youtube::before   { background-image: url("../img/youtube.webp"); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr;
  gap: 1.6rem;
  align-items: flex-start;
}

.contact-panel {
  border-radius: var(--radius-lg);
  background: #fffaf5;
  padding: 1.8rem 1.7rem;
  border: 1px solid rgba(63, 42, 34, 0.05);
  box-shadow: none;
}

.panel-title {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.panel-intro {
  font-size: 0.95rem;
  color: #5c4a3e;
  line-height: 1.76;
}

/* Calendario */

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.calendar-month {
  font-family: var(--font-display);
  font-size: 1rem;
}

.calendar-arrow {
  border-radius: 999px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.calendar-grid {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.6rem 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.7);
}

.calendar-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.3rem;
}

.calendar-row--labels {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

.calendar-day {
  border-radius: 999px;
  border: none;
  padding: 0.35rem 0;
  font-size: 0.8rem;
  background: transparent;
  cursor: pointer;
}

.calendar-day.is-selected {
  background: var(--color-accent);
  color: var(--color-white);
}

.calendar-day.is-muted {
  opacity: 0.35;
}

.timezone {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* Horarios */

.time-slot-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.time-slot {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 0.9rem;
}

.time-slot.is-selected {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: transparent;
}

/* Formulario */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 1.8rem;
}

.field span {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.45rem;
  color: #5c4a3e;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.8rem 0.9rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
}

.field textarea {
  resize: vertical;
}

/* WhatsApp panel */

.whatsapp-panel {
  padding: 0;
  overflow: hidden;
}

.whatsapp-body {
  padding: 1.3rem 1.5rem 1.5rem;
}

/* Footer */

.site-footer {
  background: #15110f;
  color: #e5d7c8;
  padding-block: 3.2rem 2.4rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.brand-footer-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.86rem;
}

.brand-footer-logo {
  display: block;
  max-width: 180px;
  height: auto;
  margin-bottom: 0.8rem;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.9rem;
}

.footer-small {
  font-size: 0.78rem;
  color: #b2a192;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
}

.footer-column li + li {
  margin-top: 0.45rem;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social li + li {
  margin-top: 0;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  background: rgba(15, 23, 42, 0.4);
  font-size: 0.78rem;
  text-decoration: none;
  transition: background 0.16s ease-out, transform 0.16s ease-out, box-shadow 0.16s ease-out;
}

.social-icon:hover {
  background: rgba(248, 250, 252, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.social-icon::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.social-icon--instagram::before {
  background-image: url("../img/instagram.webp");
}

.social-icon--facebook::before {
  background-image: url("../img/facebook.webp");
}

.social-icon--tiktok::before {
  background-image: url("../img/tiktok.webp");
}

.social-icon--youtube::before {
  background-image: url("../img/youtube.webp");
}

.footer-bottom {
  margin-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1.3rem;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 0.74rem;
}

/* Flotante WhatsApp/chat */

.floating-chat {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  cursor: pointer;
  z-index: 30;
}

.floating-icon {
  font-size: 1.3rem;
}

.floating-icon-image {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
  transition: transform 0.24s ease-out, filter 0.24s ease-out;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.floating-chat:hover .floating-icon-image,
.floating-chat:focus-visible .floating-icon-image {
  transform: scale(1.08);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

/* Utilidades */

.story-block p:last-child {
  margin-bottom: 0;
}

.closing-quote .highlight {
  font-weight: 700;
  color: #fde68a;
}

/* About us page */

.hero-about-us {
  position: relative;
  overflow: hidden;
  background: url("../img/HeroCHAlbaVera.webp") center 76%/cover no-repeat;
}

.hero-about-us .hero-text {
  color: rgba(255, 243, 227, 0.9);
}

.hero-about-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    102deg,
    rgba(24, 14, 2, 0.4) 0%,
    rgba(24, 14, 2, 0.3) 34%,
    rgba(24, 14, 2, 0.46) 56%,
    rgba(24, 14, 2, 0.15) 82%
  );
  pointer-events: none;
}

.hero-about-us .hero-copy {
  position: relative;
}

.hero-about-us .hero-copy::before {
  content: "";
  position: absolute;
  inset: -1.1rem -1.6rem;
  background: radial-gradient(
    ellipse at 20% 38%,
    rgba(19, 11, 2, 0.34) 0%,
    rgba(19, 11, 2, 0.2) 46%,
    rgba(19, 11, 2, 0) 76%
  );
  z-index: -1;
  pointer-events: none;
}

.hero-about-us .highlight {
  color: #6AB187;
  font-weight: 600;
}

.hero-about-us .container {
  position: relative;
  z-index: 1;
}

.hero-about-us h1,
.hero-about-us .eyebrow {
  color: #ffd46b;
}

.hero-about-us h1 {
  color: #fff3e3;
}

.about-us-shape {
  width: min(380px, 90%);
  aspect-ratio: 1 / 1;
  border-radius: 38% 62% 55% 45% / 42% 38% 62% 58%;
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.85) 0, rgba(255, 255, 255, 0) 46%),
    linear-gradient(135deg, #1f1300 0, #4b2e20 44%, #c25a24 100%);
  box-shadow: 0 28px 52px rgba(31, 19, 0, 0.22);
}

.about-us-note {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(63, 42, 34, 0.08);
  padding: 1.6rem 1.5rem;
}

.about-us-values {
  background: #fff6e7;
}

.about-us-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.about-us-value-card {
  border: 1px solid rgba(63, 42, 34, 0.08);
  min-height: 100%;
}

.about-us-approach {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.about-us-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.about-us-steps li {
  border-radius: var(--radius-md);
  padding: 1.2rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.about-us-steps h3 {
  margin-bottom: 0.3rem;
}

.about-us-steps p {
  margin-bottom: 0;
  color: rgba(243, 230, 217, 0.86);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-about-us {
    background-position: center 56%;
  }

  .section-origin {
    padding-bottom: 4.2rem;
  }

  .philosophy-section {
    padding-top: 4.2rem;
  }

  .section {
    padding-block: 6.4rem;
  }

  .hero-grid,
  .hero-grid--reverse,
  .two-column,
  .mission-grid,
  .contact-columns,
  .contact-grid,
  .service-row,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .origin-bridge-image {
    width: 100%;
    max-width: none;
  }

  .two-column {
    gap: 3rem;
  }

  .section-welcome .welcome-layout {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .section-welcome .welcome-copy {
    max-width: 34rem;
    margin-inline: auto;
  }

  .section-welcome .welcome-image {
    transform: none;
  }

  .hero-grid,
  .hero-grid--reverse {
    gap: 2.4rem;
  }

  .hero-visual {
    order: -1;
  }

  .card-grid,
  .philosophy-grid,
  .about-us-values-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    gap: 1.3rem;
  }

  .contact-columns {
    gap: 1.3rem;
  }

  .service-row {
    padding-inline: 1.4rem;
  }

  .service-row--reverse .service-meta,
  .service-row--reverse .service-cta {
    order: initial;
  }

  .footer-grid {
    gap: 1.6rem;
  }

  .site-nav {
    position: absolute;
    left: calc(3.15rem + 2px);
    top: 50%;
    padding: 0;
    margin-left: 0;
    background: transparent;
    box-shadow: none;
    transform-origin: left center;
    transform: translateY(-50%) translateX(-8px);
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: max-width 0.26s ease-out, transform 0.22s ease-out, opacity 0.22s ease-out;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 0.8rem;
    font-size: 0.82rem;
  }

  .site-header.is-open .site-nav {
    max-width: min(520px, 76vw);
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header.is-open .nav-toggle-label {
    display: none;
  }

  .site-header .brand {
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
  }

  .site-header.is-open .brand {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header .btn-small {
    display: none;
  }

  .tools-carousel {
    padding-inline: 3rem;
  }

  .tools-track .tool-card {
    flex: 0 0 calc((100% - 1.8rem) / 2);
  }
}

@media (max-width: 640px) {
  .tools-viewport {
    overflow-x: auto;
  }

  .tools-viewport {
    cursor: grab;
  }

  .tools-viewport.is-dragging {
    cursor: grabbing;
  }

  .resources-grid .resource-card {
    border-color: rgba(31, 19, 0, 0.34);
  }

  #herramientas .section-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.95rem;
  }

  #herramientas .section-header .btn {
    align-self: flex-start;
    margin-top: 0.1rem;
  }

  .section-welcome .welcome-layout {
    text-align: left;
  }

  .section-welcome .welcome-copy {
    margin-inline: 0;
  }

  .section {
    padding-block: 5.4rem;
  }

  .section-origin {
    padding-bottom: 3.7rem;
  }

  .philosophy-section {
    padding-top: 3.7rem;
  }

  p {
    line-height: 1.74;
  }

  .lead {
    line-height: 1.7;
  }

  .hero-text {
    line-height: 1.72;
  }

  #nataly p {
    line-height: 1.74;
  }

  .section,
  .hero {
    padding-inline: 0;
  }

  .header-inner {
    padding-block: 0.7rem;
  }

  .hero-home {
    padding-top: 3.2rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .tools-carousel {
    padding-inline: 2.6rem;
  }

  .tools-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
    transition: opacity 0.18s ease-out, visibility 0.18s ease-out, transform 0.18s ease-out;
  }

  .tools-arrow.is-hidden-mobile {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%) scale(0.92);
  }

  .tools-track .tool-card {
    flex: 0 0 82%;
  }

  .floating-chat {
    right: 1.1rem;
    bottom: 1.1rem;
  }
}
