/* ══════════════════════════════════════════════════════════
   RENACER CON SENTIDO Y FE — Premium Design System
   ══════════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  color-scheme: light;

  /* Core palette — harmonized gold & slate blue */
  --bg: #f9f6f2;
  --bg-warm: #f3ede5;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.65);
  --border: #e4ddd3;
  --border-light: rgba(255, 255, 255, 0.6);

  /* Brand colors */
  --accent: #b08c5a;
  /* Warm gold */
  --accent-deep: #8a6d3e;
  /* Deep gold for contrast */
  --blue: #6a96ae;
  /* Serene slate blue */
  --blue-soft: #8fb5ca;
  /* Lighter blue */
  --sage: #7a9e7e;
  /* Sage green accent */

  /* Text hierarchy */
  --text: #3d3630;
  --text-soft: #6b5f54;
  --muted: #8c8078;

  /* Effects */
  --gold: #b08c5a;
  --teal: #6a96ae;
  --magenta: #b08c5a;
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --shadow-sm: 0 2px 8px rgba(61, 54, 48, 0.06);
  --shadow-md: 0 8px 30px rgba(61, 54, 48, 0.08);
  --shadow-lg: 0 20px 50px rgba(61, 54, 48, 0.1);
  --shadow-glow: 0 8px 40px rgba(106, 150, 174, 0.15);
  --glow-teal: rgba(106, 150, 174, 0.3);
  --glow-magenta: rgba(176, 140, 90, 0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: var(--accent);
  letter-spacing: -0.01em;
}

h2 {
  position: relative;
  display: inline-block;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ── Utility ── */
.section {
  padding: 6rem 10vw;
  position: relative;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0.5rem auto 2.5rem;
  text-align: center;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(106, 150, 174, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(176, 140, 90, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(122, 158, 126, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  min-height: 92vh;
  padding: 2.5rem 10vw 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Subtle top-border glow */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--sage), var(--accent));
  opacity: 0.5;
}

.nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 600;
}

.logo-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 250px;
  width: auto;
  transition: transform 0.4s var(--ease-out);
  mix-blend-mode: multiply;
  margin-left: -1rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.06));
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-slogan {
  margin-left: 0;
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--accent);
  line-height: 1.25;
}

.nav-link {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(176, 140, 90, 0.3);
  color: var(--accent);
  background: var(--surface-glass);
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-out);
  font-size: 0.95rem;
}

.nav-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(176, 140, 90, 0.25);
}

.hero-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 0.5rem;
  flex-wrap: nowrap;
}

.hero-content {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  animation: fadeUp 0.8s var(--ease-out);
}

.hero-image-content {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  animation: fadeUp 1s var(--ease-out) 0.15s both;
  position: sticky;
  top: 2rem;
}

.hero-cover {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow:
    0 25px 50px rgba(61, 54, 48, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.7);
  object-fit: cover;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.hero-cover:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 30px 60px rgba(61, 54, 48, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.6);
}

.hero-image-content .highlight-text {
  max-width: 500px;
  text-align: left;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 1rem;
  color: var(--blue);
  font-weight: 600;
  opacity: 0.85;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.12;
  color: var(--accent-deep);
  -webkit-text-fill-color: initial;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.hero-subtitle {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-soft);
  opacity: 0.9;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Hero description text */
.hero-description {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

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

.learn-intro {
  font-weight: 600;
  color: var(--text) !important;
  margin-top: 0.4rem;
}

.hero-learn-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-learn-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.25rem 0;
  transition: transform 0.2s var(--ease-out);
}

.hero-learn-item:hover {
  transform: translateX(4px);
}

.hero-learn-item span {
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-learn-item p {
  font-size: 1rem;
  color: var(--text);
}

/* Hero audience cards */
.hero-audience {
  margin-top: 1.2rem;
}

.audience-heading {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1rem 1.1rem;
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.audience-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.audience-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
}

.audience-item:hover::before {
  opacity: 1;
}

.audience-item span {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.audience-item p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.45;
}

/* Scroll indicator */
.scroll-indicator {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.scroll-indicator span {
  width: 28px;
  height: 44px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  position: relative;
  opacity: 0.4;
}

.scroll-indicator span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

/* ════════════════════════════════════════
   AUDIENCE SECTION
   ════════════════════════════════════════ */
.audience {
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.audience h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ── Card System ── */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(176, 140, 90, 0.04), rgba(106, 150, 174, 0.04));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

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

.glass {
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
}

.card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.7rem;
}

.card p {
  font-size: 1.05rem;
  color: var(--text);
}

/* ════════════════════════════════════════
   DESCRIPTION SECTION
   ════════════════════════════════════════ */
.description {
  background: var(--bg);
}

.description-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.description-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.description-text h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
}

.description-text p {
  font-size: 1.05rem;
  color: var(--text-soft);
}

.highlight-text {
  font-size: 1.15rem !important;
  color: var(--text) !important;
  padding: 1.3rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: linear-gradient(135deg, rgba(176, 140, 90, 0.06), rgba(106, 150, 174, 0.04));
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}

.highlight-text em {
  color: var(--accent-deep);
  font-weight: 600;
}

.quote-card {
  background: linear-gradient(140deg, rgba(106, 150, 174, 0.08), rgba(176, 140, 90, 0.1), rgba(122, 158, 126, 0.06));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}

.quote-card::before {
  content: "\201C";
  font-size: 6rem;
  font-family: "Playfair Display", serif;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 0.3rem;
  left: 1rem;
  line-height: 1;
}

.quote-card blockquote {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════
   QUIÉNES SOMOS SECTION
   ════════════════════════════════════════ */
.quienes {
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(106, 150, 174, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(176, 140, 90, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.quienes h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.quienes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 290px));
  gap: 1.4rem;
  max-width: 1280px;
  margin: 1.5rem auto 0;
  justify-content: center;
}

.persona-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.persona-photo {
  width: 150px;
  height: 150px;
  border-radius: 1rem;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin: 0 auto 1rem;
}

.persona-card h3 {
  font-size: 1.2rem;
  color: var(--accent-deep);
  margin-bottom: 0.35rem;
}

.persona-bio {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
}

.persona-bio+.persona-bio {
  margin-top: 1rem;
}

/* ════════════════════════════════════════
   MÓDULOS SECTION
   ════════════════════════════════════════ */
.modulos {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  position: relative;
}

.modulos h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.modulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.modulo-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  text-align: left;
  padding: 1.8rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.modulo-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
  transform-origin: left;
}

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

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

.modulo-number {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(106, 150, 174, 0.25);
}

.modulo-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.modulo-body h3 {
  font-size: 1.1rem;
  color: var(--accent-deep);
  margin: 0;
}

.modulo-flow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--blue);
}

.modulo-body>p:not(.modulo-flow):not(.modulo-tema):not(.modulo-recurso) {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.modulo-tema {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
}

.modulo-recurso {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.3rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

/* ════════════════════════════════════════
   LEARN SECTION
   ════════════════════════════════════════ */
.learn {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.learn h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.grid-learn {
  max-width: 700px;
  margin: 0 auto;
  gap: 1rem;
}

.learn-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}

.learn-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.learn-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.learn-item p {
  font-size: 1.05rem;
  color: var(--text);
}

/* ════════════════════════════════════════
   EMOTIONAL CTA
   ════════════════════════════════════════ */
.cta-emotional {
  background:
    radial-gradient(ellipse at 30% 50%, var(--glow-teal) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, var(--glow-magenta) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  text-align: center;
  padding: 6rem 10vw;
  position: relative;
}

.cta-content {
  max-width: 580px;
  margin: 0 auto;
}

.cta-lead {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--accent-deep);
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.cta-sub {
  font-size: 1.15rem;
  color: var(--text-soft);
  margin-bottom: 2.2rem;
}

/* ════════════════════════════════════════
   DETAILS SECTION
   ════════════════════════════════════════ */
.details {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.details h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 2.5rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: 1.8rem 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
}

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

.detail-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.detail-item strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--blue);
}

.detail-item p {
  color: var(--text);
  font-size: 1rem;
}

.accent-card {
  background: linear-gradient(135deg, rgba(106, 150, 174, 0.08), rgba(176, 140, 90, 0.1));
  border: 1px solid rgba(176, 140, 90, 0.2);
}

.accent-card:hover {
  border-color: var(--accent);
}

.price {
  font-size: 1.6rem !important;
  font-weight: 700;
  color: var(--accent-deep) !important;
  letter-spacing: -0.02em;
}

/* ════════════════════════════════════════
   SIGNUP
   ════════════════════════════════════════ */
.signup {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: start;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.signup h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.sparkle-text {
  margin-top: 1.2rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--accent);
}

.form {
  display: grid;
  gap: 1.1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent-deep);
}

input,
select {
  border: 1.5px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.8rem 1.1rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  transition: all 0.3s var(--ease-out);
}

input::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(176, 140, 90, 0.1);
  background: #fffffe;
}

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.button:hover {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(176, 140, 90, 0.3);
}

.button.ghost {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent-deep);
}

.button.ghost::before {
  display: none;
}

.button.ghost:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(176, 140, 90, 0.2);
}

.button.glow {
  font-size: 1.1rem;
  padding: 1rem 2.6rem;
  box-shadow: 0 0 25px var(--glow-teal), 0 0 50px var(--glow-magenta);
  animation: pulseGlow 3s ease-in-out infinite;
}

.button.glow:hover {
  transform: translateY(-4px) scale(1.03);
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  text-align: center;
  padding: 3rem 10vw;
  background: linear-gradient(180deg, var(--bg-warm), #e8e0d5);
  color: var(--muted);
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--blue), transparent);
  opacity: 0.3;
}

/* ════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

@keyframes scrollDot {
  0% {
    top: 8px;
    opacity: 1;
  }

  100% {
    top: 28px;
    opacity: 0;
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 25px var(--glow-teal), 0 0 50px var(--glow-magenta);
  }

  50% {
    box-shadow: 0 0 40px var(--glow-teal), 0 0 80px var(--glow-magenta);
  }
}

/* Intersection Observer reveal animation (applied via JS optional) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 900px) {
  .quienes-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .description-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-container {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-image-content {
    flex: 0 0 100%;
    position: static;
  }

  .hero-content {
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .audience-grid {
    text-align: left;
  }
}

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

  .hero {
    padding: 2rem 6vw 3rem;
    min-height: 80vh;
  }

  .nav {
    justify-content: center;
  }

  .logo {
    justify-content: center;
  }

  .logo-brand {
    align-items: center;
  }

  .section {
    padding: 4rem 6vw;
  }

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

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

  .logo-img {
    height: 180px;
    margin-left: 0;
  }

  .logo-slogan {
    margin-left: 0;
    text-align: center;
    font-size: 0.85rem;
  }
}
