/* =============================================================
   HOME.CSS / INDEX.CSS
   Estilos exclusivos de la página de inicio.
   Requiere global.css cargado previamente.
   ============================================================= */

/* =============================================================
   HERO
   ============================================================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0d0d1a;
  overflow: hidden;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 13, 26, 0.72) 0%,
    rgba(13, 13, 26, 0.45) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

#three-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 10;
  padding-top: 72px;
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(163, 192, 55, 0.85);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-title .line1 {
  color: #f0a0c8;
  display: block;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-title .line2 {
  color: var(--orange);
  display: block;
  font-size: 1.3em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== HERO UI ===== */

.banner-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2.5rem;
  gap: 1rem;
}

.banner-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 2;
  animation: fadeHint 4s ease 2.5s forwards;
  opacity: 0;
}

@keyframes fadeHint {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }

  15% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ===== HERO BUTTONS ===== */

.explore-btn,
.ar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.explore-btn {
  background: var(--green);
  color: white;
  box-shadow: 0 6px 28px rgba(163, 192, 55, 0.45);
}

.explore-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(163, 192, 55, 0.6);
}

.explore-btn.active {
  background: var(--blue);
  box-shadow: 0 6px 28px rgba(85, 176, 210, 0.5);
}

.ar-btn {
  background: var(--purple);
  color: white;
  box-shadow: 0 6px 28px rgba(123, 107, 170, 0.45);
  display: none;
}

.ar-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(123, 107, 170, 0.6);
}

/* =============================================================
   ABOUT / NOSOTROS
   ============================================================= */

.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--green);
  aspect-ratio: 4 / 3;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: white;
  font-weight: 900;
  font-size: 0.85rem;
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 6px 20px rgba(215, 130, 44, 0.35);
}

.about-badge big {
  display: block;
  font-size: 2rem;
}

.about-text .section-label {
  color: var(--green);
}

.about-text .section-title {
  color: var(--dark);
}

.about-text .section-title span {
  color: var(--orange);
}

/* ===== VALORES ===== */

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

.valor-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
}

.valor-chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.v1 {
  background: rgba(163, 192, 55, 0.12);
  color: #5a7a0a;
}

.v1 .dot {
  background: var(--green);
}

.v2 {
  background: rgba(85, 176, 210, 0.12);
  color: #1a6a88;
}

.v2 .dot {
  background: var(--blue);
}

.v3 {
  background: rgba(204, 102, 153, 0.12);
  color: #8c2a5c;
}

.v3 .dot {
  background: var(--pink);
}

.v4 {
  background: rgba(215, 130, 44, 0.12);
  color: #8c4800;
}

.v4 .dot {
  background: var(--orange);
}

.v5 {
  background: rgba(123, 107, 170, 0.12);
  color: #3d2e7a;
}

.v5 .dot {
  background: var(--purple);
}

.v6 {
  background: rgba(245, 200, 66, 0.2);
  color: #7a5c00;
}

.v6 .dot {
  background: var(--yellow);
}

/* =============================================================
   MISIÓN / VISIÓN
   ============================================================= */

.mission-vision {
  background: var(--dark);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.mv-card {
  padding: 3rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.15;
}

.mv-card.mission {
  background: rgba(163, 192, 55, 0.15);
  border: 1px solid rgba(163, 192, 55, 0.3);
}

.mv-card.mission::before {
  background: var(--green);
}

.mv-card.vision {
  background: rgba(85, 176, 210, 0.15);
  border: 1px solid rgba(85, 176, 210, 0.3);
}

.mv-card.vision::before {
  background: var(--blue);
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.mv-card h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.mv-card.mission h3 {
  color: var(--green);
}

.mv-card.vision h3 {
  color: var(--blue);
}

.mv-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* =============================================================
   CONCEPTO
   ============================================================= */

.concepto {
  background: var(--cream);
}

.concepto-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.concepto-headline {
  text-align: center;
  margin-bottom: 4rem;
}

.concepto-headline .section-label {
  color: var(--purple);
  justify-content: center;
}

.concepto-headline .section-title span {
  color: var(--purple);
}

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

.pillar-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 5px solid;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.pillar-card:nth-child(1) {
  border-color: var(--blue);
}

.pillar-card:nth-child(2) {
  border-color: var(--orange);
}

.pillar-card:nth-child(3) {
  border-color: var(--pink);
}

.pillar-card:nth-child(4) {
  border-color: var(--green);
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.pillar-card h4 {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.pillar-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

/* =============================================================
   SECCIONES / CLASES
   ============================================================= */

.secciones {
  background: white;
}

.secciones-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.secciones-header .section-label {
  color: var(--orange);
  justify-content: center;
}

.secciones-header .section-title span {
  color: var(--orange);
}

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

.clase-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.clase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.clase-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.clase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.clase-card:hover .clase-img img {
  transform: scale(1.08);
}

.clase-num {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.clase-body {
  padding: 1.5rem;
}

.clase-body h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.clase-body p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.clase-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.tag-danza {
  background: rgba(204, 102, 153, 0.15);
  color: var(--pink);
}

.tag-artes {
  background: rgba(215, 130, 44, 0.15);
  color: var(--orange);
}

.tag-musica {
  background: rgba(85, 176, 210, 0.15);
  color: var(--blue);
}

/* =============================================================
   VIDEO
   ============================================================= */

.clase-video {
  padding: 6rem 8%;
  background: var(--dark);
}

.clase-video .clase-section-label {
  color: var(--pink);
}

.clase-video .clase-section-title {
  color: white;
}

.video-wrapper {
  margin-top: 2.5rem;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================================
   PODCAST
   ============================================================= */

.podcast {
  background: var(--dark);
  color: white;
}

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

.podcast-header .section-label {
  color: var(--pink);
}

.podcast-header .section-title span {
  color: var(--pink);
}

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

.podcast-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.podcast-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: var(--pink);
}

.podcast-thumb {
  height: 160px;
  background: linear-gradient(
    135deg,
    var(--purple),
    var(--pink)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.podcast-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(0, 0, 0, 0.3)
  );
}

.podcast-info {
  padding: 1.5rem;
}

.podcast-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.podcast-info p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.podcast-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.podcast-btn:hover {
  background: white;
  color: var(--pink);
}

/* =============================================================
   EQUIPO
   ============================================================= */

.equipo {
  background: var(--cream);
}

.equipo-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.equipo-header .section-label {
  color: var(--blue);
  justify-content: center;
}

.equipo-header .section-title span {
  color: var(--blue);
}

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

.equipo-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.equipo-card:hover {
  transform: translateY(-6px);
}

.equipo-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.eq1 {
  background: rgba(163, 192, 55, 0.2);
}

.eq2 {
  background: rgba(85, 176, 210, 0.2);
}

.eq3 {
  background: rgba(204, 102, 153, 0.2);
}

.eq4 {
  background: rgba(215, 130, 44, 0.2);
}

.equipo-card h4 {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.equipo-card p {
  font-size: 0.8rem;
  color: #888;
}

/* =============================================================
   CONTACTO
   ============================================================= */

.contacto {
  background: linear-gradient(
    135deg,
    var(--green) 0%,
    var(--blue) 100%
  );
  color: white;
  text-align: center;
}

.contacto .section-label {
  color: rgba(255, 255, 255, 0.7);
  justify-content: center;
}

.contacto .section-title {
  color: white;
}

.contacto .section-body {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.contacto-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================================
   RESPONSIVE HOME
   ============================================================= */

@media (max-width: 900px) {

  /* HERO */
  .hero-text {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    padding: 2rem 6% 4rem;
    max-width: 100%;
    background: linear-gradient(
      to top,
      rgba(13, 13, 26, 0.92) 60%,
      transparent
    );
  }

  /* HERO BUTTONS */
  .ar-btn {
    display: inline-flex;
  }

  .explore-btn {
    display: none;
  }

  /* ABOUT */
  .about {
    grid-template-columns: 1fr;
  }

  .about-image-wrapper {
    display: none;
  }

  /* MISSION / VISION */
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* CONCEPTO */
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* CLASES */
  .clases-grid {
    grid-template-columns: 1fr;
  }

  /* PODCAST */
  .podcast-grid {
    grid-template-columns: 1fr;
  }

  /* EQUIPO */
  .equipo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {

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

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

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

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .mv-card {
    padding: 2rem;
  }

  .map-frame {
    height: 55vh;
    min-height: 350px;
  }
}











































































/* =============================================================
   CLASE-VIDEO-CONTACTO.CSS
   Estilos específicos para las secciones "Video de la clase" y
   "Contacto" de Infancia que Resiste.
   Usa las variables definidas en global.css — cargar después de él.
   ============================================================= */

/* ===== VIDEO / TRAILER ===== */

.clase-video {
  background: var(--cream);
}

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

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

.clase-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--blue);
  justify-content: center;
}

.clase-section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
}

.clase-section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  color: var(--dark);
}

.clase-section-title span {
  color: var(--blue);
}

.video-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
}

.video-wrapper {
  margin: 0 auto;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark);
  border: 4px solid var(--white);
  outline: 3px solid rgba(85, 176, 210, 0.25);
  box-shadow: 0 20px 50px rgba(26, 26, 46, 0.2);
}

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

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 0 0.25rem;
}

.video-meta-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
}

.video-status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  animation: video-status-pulse 2s infinite;
}

@keyframes video-status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(163, 192, 55, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(163, 192, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(163, 192, 55, 0); }
}

.video-duration {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ===== CONTACTO ===== */

.contacto {
  padding: 0;
  background: var(--dark);
  overflow: hidden;
}

.contacto-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.contacto-image {
  position: relative;
  overflow: hidden;
}

.contacto-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contacto-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0) 40%, rgba(26, 26, 46, 0.85) 100%);
}

.contacto-image-caption {
  position: absolute;
  left: 1.75rem;
  bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
}

.contacto-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.contacto-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  color: rgba(255, 255, 255, 0.85);
}

.contacto-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.contacto-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: white;
  margin-bottom: 1.2rem;
}

.contacto-title span {
  color: var(--green);
}

.contacto-text {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2rem;
}

.contacto-text strong {
  color: white;
}

.contacto-actions {
  margin-bottom: 1.5rem;
}

.contacto-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 20px rgba(163, 192, 55, 0.35);
  transition: all 0.2s;
}

.contacto-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(163, 192, 55, 0.45);
}

.whatsapp-icon {
  display: flex;
}

.contacto-arrow {
  transition: transform 0.2s;
}

.contacto-whatsapp:hover .contacto-arrow {
  transform: translateX(4px);
}

.contacto-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .video-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .contacto-container {
    grid-template-columns: 1fr;
  }

  .contacto-image {
    min-height: 320px;
  }

  .contacto-content {
    padding: 3rem 6%;
  }

  .contacto-text {
    max-width: none;
  }
}




















































































/* ===== CONTACTO ===== */

.contacto {
  padding: 0;
  background: var(--dark);
  overflow: hidden;
}

.contacto-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.contacto-image {
  position: relative;
  overflow: hidden;
}

.contacto-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.9);
}

.contacto-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 26, 46, 0) 35%, rgba(26, 26, 46, 0.92) 100%),
    linear-gradient(90deg, rgba(26, 26, 46, 0.5) 0%, rgba(26, 26, 46, 0) 30%, rgba(26, 26, 46, 0) 55%, rgba(26, 26, 46, 0.95) 100%),
    rgba(26, 26, 46, 0.12);
}

.contacto-image-caption {
  position: absolute;
  left: 1.75rem;
  bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
}

.contacto-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.contacto-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  color: rgba(255, 255, 255, 0.85);
}

.contacto-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.contacto-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: white;
  margin-bottom: 1.2rem;
}

.contacto-title span {
  color: var(--green);
}

.contacto-text {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2rem;
}

.contacto-text strong {
  color: white;
}

.contacto-actions {
  margin-bottom: 1.5rem;
}

.contacto-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 20px rgba(163, 192, 55, 0.35);
  transition: all 0.2s;
}

.contacto-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(163, 192, 55, 0.45);
}

.whatsapp-icon {
  display: flex;
}

.contacto-arrow {
  transition: transform 0.2s;
}

.contacto-whatsapp:hover .contacto-arrow {
  transform: translateX(4px);
}

.contacto-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .video-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .contacto-container {
    grid-template-columns: 1fr;
  }

  .contacto-image {
    min-height: 320px;
  }

  .contacto-content {
    padding: 3rem 6%;
  }

  .contacto-text {
    max-width: none;
  }
}
