/* ========================================================================
   NEUMA - CSS ÚNICO MOBILE-FIRST
   Tipografía: EB Garamond exclusivamente
   Enfoque: Mobile First (320px+) -> Desktop (768px+)
   ======================================================================== */

/* === 1. IMPORTACIÓN DE FUENTES === */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* === 2. VARIABLES CSS === */
:root {
  /* Tipografía única */
  --font-main: 'EB Garamond', serif;

  /* Paleta de colores según wireframes */
  --color-bg: #ffffff;
  --color-text: #5C5C5C;
  --color-title: #5C5C5C;

  /* Fondos de secciones */
  --bg-medita: #ebdac4;
  /* Salmón/Rosa */
  --bg-escucha: #D3C4AE;
  /* Beige oscuro */
  --bg-siente: #D0DFA3;
  /* Verde pistacho */
  /*--circle-bg: #ECDFD3;
  /* Beige círculos */
  --footer-bg: #FAF7F2;
  /* Beige footer */

  /* Gradiente hero */
  --gradient-green: #B8D977;
  --gradient-yellow: #F5D07A;
  --gradient-beige: #F4E8D8;

  /* Espaciado */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
}

/* === 3. RESET Y BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100%;
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Bloqueo de scroll cuando menu abierto - CRÍTICO */
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--color-title);
  line-height: 1.2;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 50rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* === 4. NAVBAR (MOBILE FIRST) === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.logo {
  z-index: 1003;
}

.logo img {
  width: 80px;
  height: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

/* Enlaces desktop - ocultos en móvil */
.desktop-links {
  display: none;
}

/* Botón hamburguesa */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 30px;
  height: 18px;
  cursor: pointer;
  z-index: 1003;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background-color: var(--color-title);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle span:nth-child(1),
.menu-toggle span:nth-child(3) {
  width: 100%;
}

.menu-toggle span:nth-child(2) {
  width: 60%;
}

/* Animación a X cuando se abre */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Menú desplegable MÓVIL - altura fija sin scroll */
.dropdown-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* Altura fija */
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  overflow: hidden;
  /* Sin scroll interno */
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  font-family: var(--font-main);
  font-size: 1.8rem;
  color: var(--color-text);
  font-weight: 400;
  transition: color 0.3s ease;
}

.dropdown-menu a:hover {
  color: var(--color-title);
}

/* === 5. PÁGINA INICIO === */
main {
  width: 100%;
}

/* Hero section */
.hero-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, var(--gradient-green) 0%, var(--gradient-yellow) 50%, var(--gradient-beige) 100%);
  background-size: 100% 200%;
  animation: gradientShift 15s ease infinite;
  text-align: center;
  padding: var(--spacing-lg);
  position: relative;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 0% 100%;
  }

  100% {
    background-position: 0% 0%;
  }
}

.hero-logo {
  width: 120px;
  margin-bottom: var(--spacing-lg);
  filter: brightness(0) invert(1);
}

.hero-top-text {
  font-size: 0.85rem;
  font-style: italic;
  color: #ffffff;
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.3px;
}

.hero-subtitle {
  font-size: 1rem;
  font-style: italic;
  color: #ffffff;
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.5px;
}

.hero-bottom-text {
  font-size: 0.9rem;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Mantener compatibilidad con p genérico si existe */
.hero-container p {
  font-size: 0.9rem;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Tarjetas grandes (Medita, Escucha, Siente) - MÓVIL */
.full-width-card {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
}

.bg-medita {
  background-color: var(--bg-medita);
}

.bg-escucha {
  background-color: var(--bg-escucha);
}

.bg-siente {
  background-color: var(--bg-siente);
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  width: 100%;
  max-width: 400px;
}

.card-content h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  text-align: center;
  color: var(--color-title);
}

.card-content .card-subtitle {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
  line-height: 1.5;
  text-align: center;
}

.circle-icon {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: var(--circle-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: var(--spacing-md) 0;
}

.circle-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-content .card-description {
  font-size: 0.85rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
  line-height: 1.6;
  text-align: center;
  max-width: 320px;
}

.big-arrow-link img {
  width: 60px;
  margin-top: var(--spacing-sm);
  transition: transform 0.3s ease;
}

.big-arrow-link:hover img {
  transform: translateX(10px);
}

/* === 6. PÁGINAS INTERIORES === */
.page-intro {
  text-align: center;
  padding: 6rem var(--spacing-md) var(--spacing-xl);
  min-height: auto;
}

.intro-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--spacing-md);
  background-color: var(--circle-bg);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-icon img {
  width: 50%;
  height: auto;
}

.page-intro h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xs);
}

.page-intro p {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text);
}

/* === 7. MEDITA - ACORDEONES === */
.topic-section {
  padding: var(--spacing-xl) var(--spacing-md);
}

.topic-container {
  max-width: 600px;
  margin: 0 auto;
}

.topic-container h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.topic-container>div>p {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md);
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-title);
  text-align: left;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f9f9f9;
}

.accordion-title {
  flex: 1;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.accordion-icon img {
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
}

.accordion-header.active .accordion-icon img {
  transform: rotate(-90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 var(--spacing-md);
}

.accordion-content p {
  padding-bottom: var(--spacing-md);
  color: var(--color-text);
  line-height: 1.6;
}

.steps-list {
  padding-bottom: var(--spacing-md);
}

.steps-list li {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.step-number {
  font-weight: 600;
  color: var(--color-title);
  flex-shrink: 0;
}

/* === 8. ESCUCHA - TARJETAS DE AUDIO === */
.escucha-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  padding: var(--spacing-lg) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
}

.sound-card {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
}

.sound-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sound-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.sound-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-lg);
}

.sound-card h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
  font-weight: 500;
}

.audio-controls {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.audio-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  color: var(--color-title);
}

.audio-btn:hover {
  background-color: #ffffff;
  transform: scale(1.1);
}

.audio-btn.play::before {
  content: '▶';
  margin-left: 3px;
}

.audio-btn.pause::before {
  content: '❚❚';
}

.audio-btn.prev::before {
  content: '⏮';
}

.audio-btn.next::before {
  content: '⏭';
}

/* Audio player oculto */
.sound-card audio {
  display: none;
}

/* === PÁGINA DETALLE ESCUCHA === */
.sound-detail-page {
  min-height: 100vh;
  padding: 8rem var(--spacing-md) var(--spacing-xxl);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sound-detail-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.sound-detail-image {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.detail-bg-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.sound-detail-controls {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-lg);
  background-color: rgba(0, 0, 0, 0.5);
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.audio-btn-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  color: var(--color-title);
}

.audio-btn-large:hover {
  background-color: #ffffff;
  transform: scale(1.1);
}

.sound-detail-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-title);
  margin-bottom: var(--spacing-md);
}

.sound-detail-description {
  margin-bottom: var(--spacing-xl);
}

.sound-detail-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  text-align: left;
}

.btn-back {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--color-title);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-back:hover {
  background-color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* === 9. EQUIPO - GRID === */
.equipo-intro {
  padding: 0 var(--spacing-md) var(--spacing-xl);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.equipo-intro h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-title);
  margin-bottom: var(--spacing-md);
}

.equipo-intro p {
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Fotos del equipo */
.equipo-photos {
  padding: 0 var(--spacing-md) var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.main-photo {
  margin-bottom: var(--spacing-lg);
}

.main-photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
}

.equipo-grid-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.member-card-small img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
}

/* Sección Proyecto */
.proyecto-section {
  padding: var(--spacing-xxl) var(--spacing-md);
  background-color: var(--footer-bg);
  text-align: center;
}

.proyecto-content {
  max-width: 1000px;
  margin: 0 auto var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.proyecto-formula {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.formula-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.formula-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.star {
  color: var(--color-title);
}

.star-outline {
  color: var(--color-title);
}

.formula-equation {
  text-align: center;
}

.equation-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-title);
  margin-bottom: var(--spacing-xs);
}

.equation-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
}

.emoji-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.proyecto-text h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-title);
  margin-bottom: var(--spacing-sm);
}

.proyecto-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

.proyecto-logos {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.logo-circle,
.logo-rect {
  width: 100px;
  height: 100px;
  background-color: var(--color-title);
}

.logo-circle {
  border-radius: 50%;
}

.logo-rect {
  background-color: #c41e3a;
}

/* Grid original (mantener para compatibilidad) */
.equipo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  padding: 0 var(--spacing-md) var(--spacing-xxl);
  max-width: 800px;
  margin: 0 auto;
}

.member-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: var(--spacing-sm);
}

.member-name {
  font-family: var(--font-main);
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-title);
}

/* === 9. ORIGEN - ABOUT PAGE === */
.about-intro {
  text-align: center;
  padding: 6rem var(--spacing-lg) var(--spacing-xxl);
  max-width: 1200px;
  margin: 0 auto;
}

.about-intro h1 {
  font-size: 2.5rem;
  color: var(--color-title);
  margin-bottom: var(--spacing-xxl);
}

/* Layout de tres columnas móvil */
.origin-columns {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  text-align: center;
}

.origin-column h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-title);
  margin-bottom: var(--spacing-sm);
}

.origin-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

.values-section {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-xxl);
  background-color: var(--footer-bg);
}

.values-title {
  font-size: 2rem;
  color: var(--color-title);
  margin-bottom: var(--spacing-xs);
  font-weight: 400;
}

.values-subtitle {
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: var(--spacing-xl);
  font-style: normal;
  font-weight: 300;
}

.values-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.venn-diagram {
  position: relative;
  width: 300px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  width: 180px;
  height: 180px;
  border: 2px solid var(--color-title);
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-title);
  position: absolute;
}

.circle-left {
  left: 0;
  z-index: 1;
}

.circle-right {
  right: 0;
  z-index: 2;
}

.values-description {
  max-width: 300px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
}

.visual-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-xxl) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.gallery-nav {
  display: none;
  /* Ocultar en móvil */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  color: var(--color-title);
}

.gallery-nav:hover {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-prev {
  left: -60px;
}

.gallery-next {
  right: -60px;
}

.gallery-item {
  width: 100%;
  height: 250px;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background-color: #888;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
}

/* === 10. SIENTE - FEEL PAGE === */
.topic-section {
  padding: var(--spacing-xl) var(--spacing-md);
}

.topic-container.split {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: var(--spacing-lg);
}

.topic-container.split.reverse {
  flex-direction: column;
}

.topic-visual {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.topic-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-beige {
  background-color: #DBC8B0;
}

.bg-green {
  background-color: #C8D69B;
}

.topic-text {
  text-align: center;
  padding: var(--spacing-sm);
}

.topic-text h2 {
  font-family: var(--font-main);
  font-size: 2rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-title);
  line-height: 1.2;
}

.topic-text .subtitle {
  font-family: var(--font-main);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  display: block;
  opacity: 0.8;
}

.topic-text p {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.btn-more {
  display: inline-block;
  text-decoration: none;
  color: var(--color-title);
  border-bottom: 1px solid var(--color-title);
  padding-bottom: 4px;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.btn-more:hover {
  opacity: 0.6;
}

/* === 11. FOOTER === */
.simple-footer {
  background-color: var(--footer-bg);
  padding: var(--spacing-xxl) var(--spacing-lg);
  text-align: center;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  margin-bottom: var(--spacing-xl);
}

.footer-logo img {
  width: 100px;
  margin: 0 auto;
  filter: brightness(0);
}

.footer-separator {
  width: 200px;
  margin: var(--spacing-lg) auto;
  border: none;
  border-top: 1px solid var(--color-title);
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg) var(--spacing-md);
  max-width: 400px;
  margin: 0 auto;
}

.footer-links a {
  font-family: var(--font-main);
  font-size: 1.1rem;
  color: var(--color-text);
  text-align: center;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-title);
}

/* === 11. SNAP SCROLL (Efecto TikTok solo en móvil) === */
@media (max-width: 767px) {
  .snap-section:not(.simple-footer) {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* Footer sin snap para scroll normal */
  .simple-footer {
    scroll-snap-align: none;
  }
}

/* ========================================================================
   MEDIA QUERIES - DESKTOP (768px+)
   ======================================================================== */
@media (min-width: 768px) {

  /* === NAVBAR DESKTOP === */
  .navbar {
    padding: var(--spacing-lg) var(--spacing-xl);
  }

  .logo img {
    width: 120px;
  }

  .menu-toggle {
    display: none;
  }

  .desktop-links {
    display: flex;
    gap: var(--spacing-xl);
  }

  .desktop-links a {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--color-text);
    transition: all 0.3s ease;
  }

  .desktop-links a:hover,
  .desktop-links a.active {
    color: var(--color-title);
    font-weight: 600;
  }

  .dropdown-menu {
    display: none !important;
  }

  /* === HERO === */
  .hero-logo {
    width: 250px;
  }

  .hero-container p {
    font-size: 1.1rem;
  }

  /* === TARJETAS INDEX - DISEÑO DESKTOP === */
  .full-width-card {
    min-height: 100vh;
    padding: var(--spacing-xxl);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    gap: 0;
    position: relative;
  }

  .visual-side {
    width: 400px;
    height: 400px;
    position: relative;
    z-index: 10;
  }

  .circle-icon {
    width: 100%;
    height: 100%;
  }

  .text-side {
    max-width: 450px;
    text-align: left;
    align-items: flex-start;
    z-index: 5;
  }

  .text-side h2 {
    font-size: 4rem;
    font-weight: 500;
  }

  .text-side p {
    font-size: 1rem;
    letter-spacing: 0.3px;
  }

  .big-arrow-link img {
    width: 80px;
  }

  /* Orden normal: Círculo a la derecha, texto a la izquierda */
  .normal-order {
    flex-direction: row;
  }

  .normal-order .text-side {
    padding-right: 100px;
  }

  .normal-order .visual-side {
    margin-left: -150px;
  }

  /* Orden reverso: Círculo a la izquierda, texto a la derecha */
  .reverse-order {
    flex-direction: row-reverse;
  }

  .reverse-order .text-side {
    padding-left: 100px;
    text-align: right;
    align-items: flex-end;
  }

  .reverse-order .visual-side {
    margin-right: -150px;
  }

  /* === PÁGINAS INTERIORES === */
  .page-intro h1 {
    font-size: 3.5rem;
  }

  .page-intro p {
    font-size: 1.2rem;
  }

  .intro-icon {
    width: 150px;
    height: 150px;
  }

  /* === ESCUCHA - 4 COLUMNAS === */
  .escucha-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
  }

  .sound-card {
    height: 350px;
  }

  /* === EQUIPO - 4 COLUMNAS === */
  .equipo-intro h2 {
    font-size: 2rem;
  }

  .equipo-intro p {
    font-size: 1rem;
  }

  .equipo-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1400px;
  }

  .main-photo {
    margin-bottom: 0;
  }

  .equipo-grid-small {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .proyecto-content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xxl);
  }

  .proyecto-formula {
    flex-direction: row;
    gap: var(--spacing-lg);
  }

  .proyecto-text {
    text-align: left;
    max-width: 500px;
  }

  .proyecto-text h3 {
    font-size: 1.8rem;
  }

  .proyecto-text p {
    font-size: 1rem;
  }

  /* Grid original */
  .equipo-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
  }

  /* === ORIGEN - DESKTOP === */
  .about-intro {
    max-width: 1400px;
  }

  .about-intro h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-xxl);
  }

  /* Tres columnas en desktop */
  .origin-columns {
    flex-direction: row;
    gap: var(--spacing-xxl);
    text-align: left;
    justify-content: center;
  }

  .origin-column {
    flex: 1;
    max-width: 350px;
  }

  .origin-column h3 {
    font-size: 1.3rem;
  }

  .origin-column p {
    font-size: 0.9rem;
  }

  .values-title {
    font-size: 2.5rem;
  }

  .values-subtitle {
    font-size: 1.2rem;
  }

  .values-content {
    flex-direction: row;
    gap: var(--spacing-xxl);
  }

  .venn-diagram {
    width: 500px;
    height: 300px;
  }

  .circle {
    width: 250px;
    height: 250px;
  }

  .circle-left {
    left: 20px;
  }

  .circle-right {
    right: 20px;
  }

  .values-description {
    text-align: left;
    max-width: 250px;
  }

  .visual-gallery {
    flex-direction: row;
    gap: var(--spacing-lg);
    padding: var(--spacing-xxl);
  }

  .gallery-nav {
    display: flex;
    /* Mostrar flechas en desktop */
    align-items: center;
    justify-content: center;
  }

  .gallery-item {
    flex: 1;
    height: 300px;
  }

  /* === SIENTE - DESKTOP === */
  .topic-container.split {
    flex-direction: row;
    gap: var(--spacing-xxl);
  }

  .topic-container.split.reverse {
    flex-direction: row-reverse;
  }

  .topic-visual {
    flex: 1;
    height: 350px;
  }

  .topic-text {
    flex: 1;
    text-align: left;
  }

  .topic-text h2 {
    font-size: 2.5rem;
  }

  /* === FOOTER === */
  .footer-links {
    display: flex;
    gap: var(--spacing-xl);
  }

  .footer-logo img {
    width: 140px;
  }
}

/* === DESKTOP GRANDE (1200px+) === */
@media (min-width: 1200px) {
  .hero-logo {
    width: 350px;
  }

  .text-side h2 {
    font-size: 5rem;
  }

  .visual-side {
    width: 500px;
    height: 500px;
  }
}





