@charset "UTF-8";

/* =========================================================
   DAI MARKETING TURÍSTICO — CSS CORREGIDO Y ESTABLE
   ========================================================= */

:root {
  --ff-display: "Syne", system-ui, sans-serif;
  --ff-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --color-navy: #000d4a;
  --color-magenta: #d1005c;
  --color-orange: #fb6e0c;
  --color-white: #ffffff;
  --color-bg: #fafafa;
  --color-text: #12204d;
  --color-light: #f0f4ff;
  --color-border: rgba(0, 13, 74, 0.1);

  --gradient-brand: linear-gradient(-225deg, #231557 0%, #44107a 29%, #ff1361 67%, #fff800 100%);
  --gradient-footer: radial-gradient(ellipse at 50% 100%, #fb6e0c 0%, #d1005c 50%, #6b0832 100%);
  --gradient-ia: linear-gradient(135deg, #000d4a 0%, #0a1060 40%, #1a0535 100%);

  --shadow-card: 0 8px 28px rgba(0, 0, 0, 0.09);
  --shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.16);

  --radius-card: 18px;
  --radius-pill: 999px;
  --transition: 0.32s ease;
  --container: 1200px;
  --container-narrow: 900px;
}

/* ===== RESET / BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.container.narrow {
  width: min(var(--container-narrow), calc(100% - 2rem));
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--color-bg);
  padding: 5rem 0;
}

.section-dark {
  background: var(--gradient-ia);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-dark::before,
.section-dark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.section-dark::before {
  width: 38rem;
  height: 38rem;
  left: -12rem;
  top: -14rem;
  background: radial-gradient(circle, rgba(209, 0, 92, 0.14), transparent 65%);
}

.section-dark::after {
  width: 34rem;
  height: 34rem;
  right: -10rem;
  bottom: -14rem;
  background: radial-gradient(circle, rgba(251, 110, 12, 0.12), transparent 65%);
}

h1,
h2,
h3,
h4,
strong {
  font-family: var(--ff-display);
}

h1,
h2,
h3,
h4,
p,
ul,
blockquote {
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--color-white);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--color-navy);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text);
}

p + p {
  margin-top: 1.15rem;
}

ul + p,
p + ul {
  margin-top: 1.25rem;
}

p a {
  color: var(--color-magenta);
  text-decoration: none;
  font-weight: 700;
}

p a:hover,
.footer-legal a:hover,
.footer-col a:hover {
  text-decoration: underline;
}

.texto-degradado3 {
  background-image: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.texto-blanco {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 3rem;
}

.section-subtitle,
.sectores-subtitle {
  margin-top: 0.85rem;
  color: rgba(0, 13, 74, 0.65);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===== HEADER ===== */
.header-outer {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 13, 74, 0.06);
}

.header-inner {
  width: min(var(--container), calc(100% - 2rem));
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo {
  flex: 0 0 auto;
  width: 84px;
}

.logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  margin-left: auto;
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list a {
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.96rem;
}

.menu-list a:hover {
  color: var(--color-magenta);
}

.nav-ia {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 999px;
  padding: 0.18rem 0.45rem;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.nav-cta {
  background: var(--color-magenta);
  color: var(--color-white) !important;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-pill);
}

.nav-cta:hover {
  background: #e70069;
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-magenta);
  border-radius: 10px;
  transition: transform var(--transition), opacity var(--transition);
  position: relative;
}

.hamburger::before {
  position: absolute;
  top: -8px;
  left: 0;
}

.hamburger::after {
  position: absolute;
  top: 8px;
  left: 0;
}

.menu-toggle.is-active .hamburger {
  transform: rotate(45deg);
}

.menu-toggle.is-active .hamburger::before {
  opacity: 0;
}

.menu-toggle.is-active .hamburger::after {
  transform: rotate(-90deg) translateX(8px);
}

/* ===== HERO ===== */
.hero-section {
  padding: 0;
}

.bg-video-wrap {
  position: relative;
  min-height: clamp(540px, 82vh, 860px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: url("../imagenes/marketing-turistico.jpg") center / cover no-repeat;
}

.bg-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 13, 74, 0.78), rgba(209, 0, 92, 0.28)),
    linear-gradient(to top, rgba(0, 0, 0, 0.38), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 2rem));
  text-align: center;
  padding: 4rem 0;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hero-accent {
  display: block;
  background: linear-gradient(90deg, #ff6b9d, #ffb347);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 720px;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

.hero-sub strong {
  font-family: var(--ff-body);
}

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== BOTONES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-magenta);
  color: var(--color-white);
  box-shadow: 0 8px 22px rgba(209, 0, 92, 0.28);
}

.btn-primary:hover {
  background: #e70069;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline-light {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-primary-gradient {
  background: linear-gradient(135deg, var(--color-magenta), var(--color-orange));
  color: var(--color-white);
  box-shadow: 0 10px 28px rgba(209, 0, 92, 0.28);
}

.btn-link-light {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  font-weight: 700;
}

.btn-link-light:hover {
  color: var(--color-white);
}

/* ===== STATS ===== */
.stats-bar {
  background: var(--color-navy);
  padding: 2.5rem 0;
}

.stats-inner {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number,
.stat-plus {
  font-family: var(--ff-display);
  color: var(--color-white);
  line-height: 1;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}

.stat-plus {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--color-magenta);
  margin-left: 0.15rem;
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* ===== QUOTE ===== */
.quote-section {
  padding: 4rem 0 1rem;
}

.quote-text {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.05em;
  font-style: italic;
  font-weight: 800;
}

.separator {
  width: min(420px, 100%);
  margin: 2rem auto 0;
  height: 1px;
  background: #e3e8ff;
}

/* ===== SERVICIOS ===== */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.servicio-card {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-card);
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition);
}

.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

#auditoria {
  background: url("../imagenes/auditoria.jpg") center / cover no-repeat;
}

#gestion {
  background: url("../imagenes/gestion.jpg") center / cover no-repeat;
}

#formacion {
  background: url("../imagenes/formacion.jpg") center / cover no-repeat;
}

#ia-card {
  background: var(--gradient-ia);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2) 50%, transparent);
  z-index: -1;
}

#ia-card .card-overlay {
  background: linear-gradient(to top, rgba(209, 0, 92, 0.35), rgba(0, 13, 74, 0.18) 55%, transparent);
}

.card-content {
  width: 100%;
  padding: 1.5rem;
  color: var(--color-white);
}

.card-content h3 {
  text-align: left;
}

.card-content h3 a {
  text-decoration: none;
  color: var(--color-white);
}

.card-desc {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== IMAGE CTA ===== */
.image-cta-section {
  padding: 0;
}

.image-cta {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-cta-consulta {
  background-image: url("../imagenes/consulta-marketing.jpg");
}

.image-cta-mision {
  background-image: url("../imagenes/marketing-turistico-online.webp");
}

.image-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 13, 74, 0.65), rgba(209, 0, 92, 0.28));
}

.image-cta-content {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 2rem));
  text-align: center;
  padding: 4rem 0;
}

.galeria-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.galeria-titulo {
  color: var(--color-white);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.35;
}

.image-cta-content .btn {
  margin-top: 1.8rem;
}

/* ===== MISIONES ===== */
.misiones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.mision-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mision-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.mision-icono {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(209, 0, 92, 0.06);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.mision-icono img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.mision-title {
  color: var(--color-magenta);
  margin-bottom: 0.65rem;
}

.mision-desc {
  font-size: 0.98rem;
  color: rgba(0, 13, 74, 0.75);
  line-height: 1.65;
}

/* ===== IA ===== */
#ia-section .container {
  position: relative;
  z-index: 1;
}

.ia-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3rem;
}

.ia-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--color-magenta), var(--color-orange));
  color: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.95rem;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#ia-titulo {
  color: var(--color-white);
  margin-top: 1rem;
}

.ia-subtitle {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.ia-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.ia-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.ia-card-highlight {
  background: rgba(209, 0, 92, 0.13);
  border-color: rgba(209, 0, 92, 0.28);
}

.ia-card-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.ia-card h3 {
  color: var(--color-white);
}

.ia-card p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
}

.ia-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.ia-features li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

.ia-features li + li {
  margin-top: 0.45rem;
}

.ia-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-magenta);
  font-weight: 800;
}

.ia-cta-block {
  text-align: center;
  margin-top: 2.5rem;
}

.ia-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.ia-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

/* ===== SECTORES ===== */
#nosotros {
  width: 100%;
}

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

.sector-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.sector-card h3 a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--color-navy);
}

.sector-card h3 a:hover {
  color: var(--color-magenta);
}

.sector-card img {
  width: min(110px, 36%);
  height: auto;
}

.sector-desc {
  margin-top: 1rem;
  color: rgba(0, 13, 74, 0.66);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ===== TESTIMONIOS ===== */
#testimonios {
  padding-top: 5rem;
}

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

.testimonio-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonio-estrellas {
  color: #ffb347;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonio-texto {
  color: rgba(0, 13, 74, 0.8);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
}

.testimonio-autor {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 13, 74, 0.08);
}

.testimonio-info strong {
  display: block;
  font-size: 1rem;
  color: var(--color-navy);
}

.testimonio-info span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92rem;
  color: rgba(0, 13, 74, 0.58);
}

/* ===== FAQ ===== */
#faq-section {
  padding-top: 5rem;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.04);
}

.faq-item[open] {
  border-color: rgba(209, 0, 92, 0.28);
  box-shadow: 0 8px 26px rgba(209, 0, 92, 0.08);
}

.faq-pregunta {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.4rem;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-pregunta::-webkit-details-marker {
  display: none;
}

.faq-pregunta::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.5rem;
  color: var(--color-magenta);
  line-height: 1;
}

.faq-item[open] .faq-pregunta::after {
  content: "−";
}

.faq-respuesta {
  padding: 0 1.4rem 1.25rem;
}

.faq-respuesta p {
  font-size: 1rem;
  color: rgba(0, 13, 74, 0.74);
  line-height: 1.75;
}

/* ===== CIERRE ===== */
.closing-copy {
  max-width: 980px;
  margin: 5rem auto 0;
}

.closing-copy h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.advantages-list {
  padding-left: 1.25rem;
  color: var(--color-text);
}

.advantages-list li {
  line-height: 1.75;
}

.advantages-list li + li {
  margin-top: 0.8rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background-image: var(--gradient-footer);
  color: var(--color-white);
  padding: 3.5rem 0 2.5rem;
  margin-top: 0;
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand {
  flex: 0 0 auto;
}

.logo-footer img {
  width: 120px;
  height: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 2rem;
  width: 100%;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col strong {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--color-white);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-social a {
  transition: transform var(--transition);
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social img {
  width: 52px;
  height: 52px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.footer-copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

/* ===== ANIMACIONES SUAVES ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .servicios-grid,
  .ia-grid,
  .sectores-grid,
  .testimonios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 1px solid rgba(0, 13, 74, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .site-nav.site-nav-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

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

  .menu-list a {
    display: block;
    padding: 0.95rem 1rem;
    border-radius: 12px;
  }

  .menu-list a:hover {
    background: rgba(209, 0, 92, 0.06);
  }

  .nav-cta {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .section,
  .section-light,
  .section-dark {
    padding: 4rem 0;
  }

  .servicios-grid,
  .ia-grid,
  .sectores-grid,
  .testimonios-grid,
  .misiones-grid,
  .stats-inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 3.5rem 0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: min(320px, 100%);
  }

  .image-cta {
    min-height: 360px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer-legal span {
    display: none;
  }

  .faq-pregunta {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}