:root {
  /* BRAND COLORS */
  --primary: #0f3d2e;     /* Verde oscuro (principal) rgb(15, 61, 46) */
  --secondary: #3fa796;   /* Turquesa (interacción)  rgb(63, 167, 150)*/
  --accent: #c8a646;      /* Dorado (premium) rgb(200, 166, 70) */

  --crema: #f5f2e9; /*rgb(245, 242, 233)*/

  /* SUPPORT */
  --olive: #7a8f6b; /*rgb(122, 143, 107)*/
  --light: #EAE6DF;
  --white: #ffffff;
  --text: #1e293b;

  /* UI */
  --dark: #0F172A;

  --radius: 14px;
  --transition: all 0.35s ease;
  --shadow: 0 10px 30px rgba(0,0,0,0.1);

  --font-h1: 'Playfair Display', serif;
  --font-h2: 'Montserrat', sans-serif;
  --font-h3: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-accent: 'Orbitron', sans-serif;
}

/* Start RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--light);
  font-family: var(--font-body);
  color: var(--text);
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(
      rgba(0,0,0,0.015) 1px,
      transparent 1px
    );
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 9999;
}

h1 {
  font-family: var(--font-h1);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.number{
  font-family: var(--font-h1);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
}

h2 {
  font-family: var(--font-h2);
  font-weight: 600;
}

h3 {
  font-family: var(--font-h3);
  color: var(--accent);
  font-weight: 500;
}

p, span, input, select, button {
  font-family: var(--font-body);
  font-weight: 400;
}

.accent {
  font-family: var(--font-accent);
  letter-spacing: 1px;
}

select.custom-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23c8a646' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px;
}

select.custom-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200,166,70,.15);
}

.custom-input {
  border: 1px solid #d8d8d8;
  border-radius: 18px;
  background: white;
  color: var(--primary);
  transition: all .25s ease;
}


/* End RESET */

section {
  position: relative;
  overflow: hidden;
}

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  transition: background 0.6s ease, transform 0.4s ease;
  z-index: 1;
}

.section::before,
.section::after {
  pointer-events: none;
}

.section-title {
  color: var(--primary);
  text-align: center;
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.7;
  text-align: center;
}

/* End SECTIONS */

/* Start NAVBAR */

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
}

.navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: var(--accent);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.navbar a {
  color: var(--white);
  margin-left: 20px;
  text-decoration: none;
}

.navbar a:hover {
  color: var(--primary);
  text-shadow: 0 0 8px rgba(200,166,70,0.4);
  transform: translateY(-2px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-toggler {
  border: 2px solid white;
  border-radius: 10px;
  padding: 5px 10px;
}

/* LOGO */
.nav-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* HOVER SUAVE */
.nav-logo:hover {
  transform: scale(1.05);
}

.navbar .nav-link.active {
  color: var(--primary) !important;
  font-weight: 700;
}

/* End NAVBAR */

/* Start Inicio */

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero {
  min-height: 100vh;
  height: auto;
  padding-bottom: 60px;
  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at top left,
      rgba(63,167,150,0.15),
      transparent 30%
    ),

    radial-gradient(
      circle at bottom right,
      rgba(200,166,70,0.18),
      transparent 35%
    ),

    linear-gradient(
      135deg,
      #f7f3eb 0%,
      #efe8dc 100%
    );

  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: -300px;
  right: -250px;
  background:
    radial-gradient(
      circle,
      rgba(63,167,150,0.18),
      transparent 70%
    );
  filter: blur(60px);
}

.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -250px;
  left: -200px;
  background:
    radial-gradient(
      circle,
      rgba(200,166,70,0.12),
      transparent 70%
    );
  filter: blur(60px);
}

.hero h1 {
  font-size: 2rem;
  color: var(--primary);
}

.hero p {
  margin: 20px 0;
  font-size: 1.2rem;
}

.hero-text {
  max-width: 550px;
  z-index: 2;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(197,166,70,0.25), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.hero-image img {
  position: relative;
  max-width: 700px;
  width: 100%;
  height: auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35))
          drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  z-index: 2;
  transition: all 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.03) translateY(-5px);
}

.hero-slider {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease;
}

.hero-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
}

/* =========================================
   HERO EVENT BAR
========================================= */

.hero-event-bar {

  margin-top: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 18px 30px;

  background: linear-gradient(
    135deg,
    rgba(8,40,30,.96),
    rgba(15,61,46,.98)
  );

  border-radius: 24px;

  border: 1px solid rgba(255,255,255,.06);

  box-shadow:
    0 12px 35px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.05);

  width: fit-content;

  backdrop-filter: blur(14px);
}

.event-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.event-icon {

  width: 35px;
  height: 35px;

  border-radius: 50%;

  background: rgba(255,255,255,.08);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.event-icon i {

  color: white;

  font-size: 1rem;

  filter: drop-shadow(
    0 2px 8px rgba(0,0,0,.25)
  );
}

.event-icon:hover {
  background: var(--accent);
  transform: translateY(-2px);
}


.event-info h4 {

  margin: 0;

  color: white;

  font-size: 1rem;
  font-weight: 700;

  line-height: 1;
}

.event-info span {
  color: var(--accent);
  font-size: .7rem;
  text-transform: uppercase;
  font-weight: 600;
}

.event-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--accent),
    transparent
  );

  opacity: .9;
}

.event-info h5 {

  margin: 0 0 4px;

  color: white;

  font-size: 1rem;

  font-weight: 700;

  letter-spacing: .5px;
}

.event-info p {

  margin: 0;

  color: rgba(255,255,255,.78);

  font-size: .92rem;

  line-height: 1.4;
}

.btn-main {
  background: var(--accent);
  padding: 14px 32px;
  border-radius: var(--radius);
  color: white;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
  font-family: var(--font-h2);
  font-weight: 600;
  border: none;
}

.btn-main:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.countdown {
  display: flex;
  gap: clamp(10px, 2vw, 20px);
  margin-top: 30px;
  flex-wrap: wrap;
}

.countdown div {
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  border: 1px solid rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);

  min-width: 75px;
  text-align: center;
  border-radius: var(--radius);

  padding: clamp(15px, 2vw, 15px);
}

.countdown span {
  font-family: var(--font-accent);
  color: var(--accent);

  font-size: clamp(1.2rem, 4vw, 1rem);

  font-weight: 600;
  line-height: 1;

  display: block;
  margin-bottom: 5px;
}
/* End Inicio */

/* Start about*/

.about-section {
    background-image:url('/assets/images/cañon.jpeg');
    color: white;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.section-text.muted {
  opacity: 0.7;
}

.about-image {
  position: relative;
  background: transparent;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.about-image img:hover {
  transform: scale(1.02);
}
/* End about*/

/* Start conferencistas*/

#conferencistas {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(200,166,70,0.12),
      transparent 30%
    ),

    radial-gradient(
      circle at bottom right,
      rgba(63,167,150,0.10),
      transparent 30%
    ),

    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5f2e9 100%
    );
  padding: 100px 0;
}

/* efecto decorativo */
#conferencistas::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,166,70,0.15), transparent 70%);
  top: -100px;
  left: -100px;
}

#conferencistas::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(63,167,150,0.1), transparent 70%);
  bottom: -100px;
  right: -100px;
}

#conferencistas .section-title {
  color: var(--primary);
}

/* ZOOM SUAVE */
.speaker-card:hover img {
  transform: scale(1.06);
}

/* LÍNEA SUPERIOR */
.overlay-top-line {
  height: 4px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--accent),
      transparent
    );
}


/* CONTENIDO */
.overlay-content {
  padding: 10px 24px 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .45s ease;
  transition-delay: .18s;

  overflow-y: auto;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  height: 100%;
}
/* SCROLL */

.overlay-content::-webkit-scrollbar {
  width: 6px;
}

.overlay-content::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}


/* ENTRADA DEL TEXTO */
.speaker-card:hover .overlay-content {
  opacity: 1;
  transform: translateY(0);
}

.speaker-card.active .overlay-content {
  opacity: 1;
  transform: translateY(0);
}

/* TAG */
.speaker-tag {
  display: inline-block;

  background: rgba(200,166,70,0.16);

  color: var(--accent);

  padding: 8px 14px;

  border-radius: 999px;

  font-size: 0.78rem;
  letter-spacing: .5px;

  margin-bottom: 18px;

  border: 1px solid rgba(200,166,70,0.35);
}

/* TITULO */
.overlay-content h5 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

/* DESCRIPCIÓN */
.overlay-content p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* META */
.speaker-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.speaker-meta span {
  display: flex;
  align-items: center;
  gap: 10px;

  color: rgba(255,255,255,0.88);

  font-size: 0.9rem;
}

.speaker-meta i {
  color: var(--accent);
  font-size: 0.95rem;
}

.speaker-card:hover .overlay {
  opacity: 1;
}

.flag {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 5;
}

.flag img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  /* z-index: 50; */
}

/* End conferencistas*/

/* =========================================
   SWIPER CONFERENCISTAS
========================================= */

.swiper {
  width: 100%;
}

.swiper-wrapper {
  align-items: stretch;
}

.speakersSwiper {
  padding: 20px 10px 70px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  height: auto;
  flex-shrink: 0;
}

/* CARD */

.speaker-card {
  width: 100%;

  height: 430px;

  border-radius: 28px;

  overflow: hidden;

  position: relative;

  color: white;
  background: var(--primary);

  transition: all .45s ease;

  box-shadow:
    0 20px 40px rgba(0,0,0,.08);

  cursor: pointer;
}

.speaker-card img {
  width: 100%;
  height: 78%;
  object-fit: cover;

  transition: transform .6s ease;
}

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

/* INFO */

.info {
  padding: 14px;
  text-align: center;
}

.info h6 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.info p {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}

/* OVERLAY */

.speaker-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(8,28,21,.92),
      rgba(15,61,46,.97)
    );

  transform: translateY(-100%);

  transition:
    transform .55s cubic-bezier(.22,1,.36,1);

  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.speaker-card:hover .speaker-overlay {
  transform: translateY(0);
}

/* MOBILE */
.speaker-card.active .speaker-overlay {
  transform: translateY(0);
}

/* BOTONES */

.speaker-prev,
.speaker-next {
  width: 52px !important;
  height: 52px !important;

  border-radius: 50%;

  background: var(--accent);

  color: white !important;

  transition: all .3s ease;
}

.speaker-prev:hover,
.speaker-next:hover {
  background: var(--primary);
}

.speaker-prev::after,
.speaker-next::after {
  font-size: 18px !important;
  font-weight: bold;
}

.swiper-button-prev {
  left: 30px;
}
.swiper-button-next {
  right: 30px;
}

/* PAGINATION */

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;

  background: rgba(0,0,0,.25);

  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
}

/* =========================================
   START AGENDA
========================================= */

#agenda {
  display: block;
  padding: 60px 0 60px;
  height: auto;
}

/* WRAPPER SCROLL */

.agenda-wrapper {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
  position: relative;
}

.agenda-top-btn {
  position: sticky;
  top: 20px;

  margin-left: auto;
  margin-right: 20px;

  width: 55px;
  height: 55px;

  border: none;
  border-radius: 50%;

  background: var(--accent);
  color: white;

  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  transition: all 0.3s ease;

  z-index: 999;
}

.agenda-top-btn:hover {
  transform: translateY(-4px);
  background: var(--primary);
}

/* SCROLL */

.agenda-wrapper::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.agenda-wrapper::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

/* SECTION */

.agenda-section {
  background:
    radial-gradient(
      circle at top right,
      rgba(63,167,150,0.10),
      transparent 30%
    ),

    radial-gradient(
      circle at bottom left,
      rgba(200,166,70,0.10),
      transparent 35%
    ),

    linear-gradient(
      180deg,
      #f5f3ee 0%,
      #eef4f0 100%
    );
}

/* TABS */

.agenda-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  margin: 0 auto 50px;
  width: fit-content;
  background: rgba(245,242,233,0.7);
  backdrop-filter: blur(8px);
  border-radius: 50px;
}

.tab-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 30px;
  background: #e5e7eb;
  color: var(--primary);
  font-family: var(--font-h2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: var(--primary);
  color: white;
}

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

/* DAYS */

.day {
  display: none;
}

.day.active {
  display: block;
}

/* =========================================
   TIMELINE
========================================= */

.timeline {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  position: relative;
}

/* LINE */

.timeline::before {
  content: "";
  position: absolute;
  left: 165px;
  top: 0;
  width: 3px;
  height: 100%;
  background:
    linear-gradient(
      to bottom,
      var(--accent),
      rgba(200,166,70,0.2)
    );
}

/* ITEM */

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 140px 35rem;
  column-gap: 70px;
  align-items: start;
  margin-bottom: 35px;
}

/* TIME */

.timeline-time {
  font-family: var(--font-accent);
  font-size: 16px;
  color: var(--primary);
  text-align: right;
  white-space: nowrap;
  padding-top: 8px;
  letter-spacing: 1px;
}

/* DOT */

.timeline-item::before {
  content: "";
  position: absolute;
  left: 156px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid white;
  box-shadow: 0 0 0 4px rgba(200,166,70,0.2);
  z-index: 2;
}

/* CARD */

.timeline-content {
  width: 100%;
  min-width: 0;
  background: var(--primary);
  color: white;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  overflow-wrap: break-word;
  border-left: 5px solid var(--accent);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.08);
}

.timeline-content h5 {
  margin: 0;
  font-family: var(--font-h2);
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

.timeline-content p {
  margin-top: 5px;
  color: white;
  line-height: 1.6;
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* =========================================
   HEADER
========================================= */

.timeline-header {
  margin-bottom: 60px;
  padding-left: 240px;
}

.timeline-header h3 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: var(--font-h1);
}

.timeline-header span {
  color: var(--accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* =========================================
   DIVIDER
========================================= */

.timeline-divider {
  max-width: 35rem;
  margin: 50px 0 40px 210px;
  border: 3px solid var(--olive);
  border-left: 5px solid var(--accent);
  padding: 16px 24px;
  border-radius: 14px;
  font-family: var(--font-h2);
  font-weight: 600;
  color: var(--olive);
  text-transform: uppercase;
  text-align: center;
  backdrop-filter: blur(10px);
}

/* =========================================
   BREAK
========================================= */

.timeline-break {
  max-width: 35rem;
  margin: 35px 0 45px 210px;
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-family: var(--font-h2);
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
}


/* =========================================
   BADGES
========================================= */

.timeline-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================================
   END AGENDA
========================================= */

/*Start sede*/

.sede-section {
   background:

    radial-gradient(
      circle at top left,
      rgba(200,166,70,0.08),
      transparent 30%
    ),

    linear-gradient(
      180deg,
      #f7f2e7 0%,
      #efe8dc 100%
    );
  color: var(--primary);
}

/* IMAGEN */
.sede-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.2);
  transition: 0.4s;
}

.sede-image img:hover {
  transform: scale(1.02);
}

/* TEXTO */
.sede-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* MAPA CARD */

.map-card {
  border-radius: 18px;
  overflow: hidden;
}

/* ESPACIADO */
#sede .section-title {
  margin-bottom: 30px;
}


/*End sede*/

/*start hotel*/

.hotel-section{

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f5f2e9
    );

  padding:100px 0;

}

.hotel-description{

  max-width:850px;

  margin-bottom:50px;

  font-size:1.1rem;

}

.hotel-gallery{
  width:100%;
}

.hotel-main-image{

  overflow:hidden;

  border-radius:24px;
}

.hotel-main-image img{

  width:100%;

  height:520px;

  object-fit:cover;

  border-radius:24px;

  transition:.4s;

  box-shadow:
    0 25px 60px rgba(0,0,0,.18);

}

.hotel-main-image img:hover{

  transform:scale(1.03);

}

.hotel-thumbnails{

  display:flex;

  gap:12px;

  margin-top:15px;

  overflow-x:auto;

  padding-bottom:5px;

}

.hotel-thumbnails::-webkit-scrollbar{
  height:6px;
}

.hotel-thumbnails::-webkit-scrollbar-thumb{

  background:var(--accent);

  border-radius:10px;

}

.hotel-thumbnails img{

  width:100px;

  height:75px;

  object-fit:cover;

  border-radius:12px;

  cursor:pointer;

  opacity:.65;

  transition:.3s;

  border:3px solid transparent;

  flex-shrink:0;

}

.hotel-thumbnails img:hover{

  opacity:1;

  transform:translateY(-3px);

}

.hotel-thumbnails img.active{

  opacity:1;

  border-color:var(--accent);

}

.hotel-card{

  background:white;

  padding:35px;

  border-radius:24px;

  box-shadow:
    0 20px 50px rgba(0,0,0,.08);

}

.hotel-card h4{

  color:var(--primary);

  margin-bottom:25px;

}

.hotel-price{

  display:flex;

  gap:40px;

  flex-wrap:wrap;

  margin-bottom:20px;

}

.price-item span{

  display:block;

  margin-bottom:10px;

  color:#555;

}

.price-item h3{

  color:var(--accent);

  font-size:2.2rem;

  margin:0;

}

.hotel-benefits{

  display:grid;

  grid-template-columns:repeat(2,1fr);

  gap:15px;

  margin:25px 0;

}

.hotel-benefits div{

  background:
    rgba(15,61,46,.05);

  border-radius:12px;

  padding:12px;

  font-weight:600;

  color:var(--primary);

}

.hotel-benefits i{

  color:var(--accent);

  margin-right:8px;

}

.hotel-info p{

  margin-bottom:14px;

  color:#333;

}

.hotel-card .btn-main{

  margin-top:15px;

  display:inline-block;

}

.hotel-actions{

  display:flex;

  gap:15px;

  flex-wrap:wrap;

  margin-top:25px;

}

.btn-hotel-location{

  padding:14px 28px;

  border-radius:14px;

  text-decoration:none;

  font-weight:600;

  color:var(--primary);

  border:2px solid var(--primary);

  transition:.3s ease;

  display:flex;

  align-items:center;

  gap:8px;
  margin-top: 15px;

}

.btn-hotel-location:hover{

  background:var(--primary);

  color:white;

  transform:translateY(-3px);

}

.btn-hotel-location i{

  font-size:1rem;

}

/*end hotel*/

/*Start Patrocinadores*/

.sponsors-section {
  background:
    radial-gradient(
      circle at center,
      rgba(200,166,70,0.06),
      transparent 40%
    ),

    linear-gradient(
      180deg,
      #f7f5f0 0%,
      #ffffff 100%
    );
  min-height: 100vh;
  display: block;
  padding: 100px 0 80px;
}

/* CARD */
.sponsor-card {
  background:
    rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: center;
  min-width: 200px;
}

.sponsor-card img {
  max-height: 90px;
  object-fit: contain;  
  transition: 0.3s;
}

/* HOVER */
.sponsor-card:hover {
  transform: translateY(-6px);
}

/*End Patrocinadores*/

/* Start Tarifas */

#tarifas {
  background:
    radial-gradient(
      circle at top,
      rgba(200,166,70,0.15),
      transparent 35%
    ),

    radial-gradient(
      circle at bottom left,
      rgba(63,167,150,0.08),
      transparent 30%
    ),

    linear-gradient(
      180deg,
      #f5f2e9 0%,
      #ffffff 100%
    );

  padding: 100px 0;
}

.pricing-wrapper {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.pricing-table thead th {
  background: var(--primary);
  color: white;
  padding: 20px;
  text-align: center;
  font-family: var(--font-h2);
  font-size: 1rem;
}

.pricing-table thead th span {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.pricing-table tbody td {
  padding: 18px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 1rem;
}

.pricing-table tbody tr:hover {
  background: rgba(200,166,70,0.08);
}

.pricing-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--primary);
}

.pricing-contact {
  margin-top: 35px;
  text-align: center;
}

.taller-price-card{
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 50px 30px;
  border-radius: 24px;
  border: 2px solid rgba(200,166,70,.2);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.price-label{
  display: inline-block;
  background: rgba(200,166,70,.15);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 20px;
}

.taller-price-card h3{
  font-size: 4rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.taller-price-card p{
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 10px;
}

.taller-price-card small{
  color: #777;
}

.tarifa-tabs{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-bottom:30px;
  flex-wrap:wrap;
}

.tarifa-tab{
  padding: 10px 24px;
  border: none;
  border-radius: 30px;
  background: #e5e7eb;
  color: var(--primary);
  font-family: var(--font-h2);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.tarifa-tab.active{
  background: var(--primary);
  color:white;
}

.pricing-wrapper{
  display:none;
}

.pricing-wrapper.active{
  display:block;
}

/* end tarifas*/

/* Start Inscripción*/

.registration-section {

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f5f2e9
    );

  padding: 100px 0;
}

.registration-card {

  max-width: 900px;

  margin: auto;

  background: white;

  padding: 40px;

  border-radius: 25px;

  box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

#consultaCedula{
  min-height: 52px;
}

.payment-info {

  margin-top: 40px;

  background: rgba(15,61,46,.05);

  border-left: 5px solid var(--accent);

  padding: 25px;

  border-radius: 15px;
}

.payment-info h4 {

  color: var(--primary);

  margin-bottom: 20px;
}

/* =========================================
   WORKSHOPS PREMIUM
========================================= */

.workshop-container{

  margin-top:25px;

  padding:35px;

  border-radius:28px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.95),
      rgba(248,248,248,.95)
    );

  border:1px solid rgba(200,166,70,.18);

  box-shadow:
    0 20px 50px rgba(0,0,0,.06);

}

/* HEADER */

.workshop-header{

  display:flex;

  justify-content:space-between;

  align-items:center;

  gap:20px;

  flex-wrap:wrap;

  margin-bottom:30px;

  padding-bottom:20px;

  border-bottom:1px solid rgba(0,0,0,.08);

}

.workshop-header h5{

  margin:0;

  color:var(--primary);

  font-size:1.4rem;

  font-family:var(--font-h2);

}

.workshop-header span{

  background:
    rgba(200,166,70,.12);

  color:var(--accent);

  padding:10px 18px;

  border-radius:999px;

  font-weight:700;

}

/* BLOQUES */

.workshop-block{

  background:white;

  padding:22px;

  border-radius:18px;

  margin-bottom:18px;

  border:1px solid rgba(0,0,0,.06);

  transition:.3s ease;

  box-shadow:
    0 10px 25px rgba(0,0,0,.04);

}

.workshop-block:hover{

  transform:translateY(-3px);

  box-shadow:
    0 18px 35px rgba(0,0,0,.08);

  border-color:
    rgba(200,166,70,.35);

}

.workshop-block label{

  display:flex;

  align-items:center;

  gap:10px;

  font-weight:700;

  color:var(--primary);

  margin-bottom:12px;

  font-size:.95rem;

  letter-spacing:.5px;

  text-transform:uppercase;

}

.workshop-block label::before{

  content:"🎓";

  font-size:1rem;

}

/* SELECT */

.workshop-block select{

  min-height:58px;

  font-weight:600;

  border-radius:14px;

}

/* RESUMEN */

.workshop-summary{

  margin-top:30px;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      #184d43
    );

  color:white;

  padding:28px;

  border-radius:22px;

  border:none;

  box-shadow:
    0 20px 40px rgba(15,61,46,.18);

}

.workshop-summary h6{

  color:white;

  font-size:1.1rem;

  margin-bottom:18px;

  font-family:var(--font-h2);

}

.workshop-summary p{

  margin-bottom:12px;

  color:
    rgba(255,255,255,.85);

}

.workshop-summary h4{

  margin:0;

  color:var(--accent);

  font-size:1.8rem;

  font-weight:700;

}

/* CONTADORES */

#cantidadTalleres{

  font-weight:700;

  color:var(--accent);

}

/* ANIMACION */

#talleresContainer{

  animation:
    workshopFade .35s ease;

}

@keyframes workshopFade{

  from{

    opacity:0;

    transform:translateY(15px);

  }

  to{

    opacity:1;

    transform:translateY(0);

  }

}


/* end Inscripcion*/

/* Start FOOTER */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

/* End FOOTER */

/* Start ANIMACIONES */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* End ANIMACIONES */


/*start whatsapp*/

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  font-size: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 999;
}

.chat-modal {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  overflow: hidden;
  z-index: 999;
}

.chat-header {
  background: #25D366;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
}

.chat-body {
  padding: 10px;
}

.chat-user {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.chat-user:hover {
  background: #f5f5f5;
}

.chat-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.online {
  color: #25D366;
  font-size: 12px;
}

/* End whatsapp */

.loading-overlay{
    position:fixed;
    inset:0;
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;

    background:linear-gradient(
        180deg,
        #ffffff,
        #fafafa
    );
    pointer-events:all;
    backdrop-filter:blur(2px);
}

.loader-content{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.logo-wrapper{
    position:relative;
    overflow:hidden;
}

.loader-logo{
    width:330px;
    max-width:80vw;
    display:block;
}

.logo-wrapper::after{

    content:"";

    position:absolute;

    top:-40%;
    left:-40%;

    width:40%;
    height:180%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.75),
        transparent
    );

    transform:rotate(20deg);

    animation:logoShine 2.8s infinite;
}

.loader-bar{

    margin-top:45px;

    width:280px;
    height:4px;

    background:#e8e8e8;

    border-radius:50px;

    overflow:hidden;
}

.loader-bar-progress{

    width:35%;
    height:100%;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        #b98a17,
        #d8b34d,
        #f2d87a,
        #d8b34d,
        #b98a17
    );

    box-shadow:0 0 10px rgba(200,166,66,.45);

    animation:loadingBar 1.5s infinite ease-in-out;
}

.loader-text{

    margin-top:28px;

    font-size:28px;

    color:#0d5c63;

    font-weight:500;

    letter-spacing:.3px;
}

@keyframes loadingBar{

    from{
        transform:translateX(-120%);
    }

    to{
        transform:translateX(380%);
    }

}

@keyframes logoShine{

    0%{
        left:-50%;
    }

    30%{
        left:140%;
    }

    100%{
        left:140%;
    }

}

body.loading {
    overflow: hidden;
    height: 100vh;
}

.payment-error{
  background: #fff4f4;
  border-left: 5px solid #dc3545;
  color: #721c24;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  font-weight: 600;
}

#paymentInfo{
  display:none;
  margin-top:30px;
  padding:30px;
  border-radius:20px;
  background:#fafafa;
  border:1px solid #e5e5e5;
}

.upload-error {

  margin-top: 20px;

  background: #fff4f4;

  border-left: 5px solid #dc3545;

  color: #721c24;

  padding: 15px;

  border-radius: 10px;

  font-weight: 600;
}

.upload-warning {

  margin-top: 20px;

  background: #fff8e6;

  border-left: 5px solid #ffc107;

  color: #856404;

  padding: 20px;

  border-radius: 12px;

}

.upload-success {

  margin-top: 20px;

  background: #f0fff4;

  border-left: 5px solid #28a745;

  color: #155724;

  padding: 15px;

  border-radius: 10px;

  font-weight: 600;
}

.upload-success h4 {

  color: #28a745;

  margin-bottom: 15px;

}

.upload-success p {

  margin-bottom: 8px;

  color: #555;

}


.registration-success-card{

  background:#fff;
  border-radius:25px;
  padding:35px;
  box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.success-header{

  text-align:center;
  margin-bottom:30px;

}

.success-icon{

  font-size:3rem;
  color:#1fa34a;

}

.success-header h3{

  margin:10px 0 5px;
  color:#184d43;

}

.registration-number{

  color:#888;
  font-size:1rem;

}

.payment-total-card{

  background:linear-gradient(
    135deg,
    #c9a33d,
    #d7b95f
  );

  color:white;

  padding:25px;

  border-radius:20px;

  text-align:center;

  margin-bottom:30px;

}

.payment-total-card span{

  display:block;
  opacity:.9;

}

.payment-total-card h2{

  margin:10px 0 0;
  font-size:2rem;
  font-weight:700;

}

.bank-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

  gap:15px;

  margin-bottom:30px;

}

.bank-item{

  background:#f8fafb;

  padding:18px;

  border-radius:15px;

}

.bank-item span{

  display:block;

  color:#777;

  font-size:.85rem;

  margin-bottom:5px;

}

.bank-item strong{

  color:#184d43;

}

.payment-info-box{

  background:#eef7ff;

  border-left:4px solid #3498db;

  padding:18px;

  border-radius:12px;

  margin-bottom:25px;

}

.payment-info-box i{

  margin-right:8px;

}

.payment-actions{

  text-align:center;

  margin-bottom:30px;

}

.documents-grid{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

  gap:20px;

}

.document-card{

  background:#fafafa;

  border:1px solid #ececec;

  border-radius:18px;

  padding:25px;

  text-align:center;

}

.document-card i{

  font-size:2rem;

  color:#c9a33d;

  margin-bottom:15px;

}

.document-card h5{

  margin-bottom:15px;

}

.consulta-card{

  background:#fff;
  border-radius:24px;
  padding:35px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.consulta-header{

  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:15px;
  margin-bottom:25px;

}

.consulta-header h3{

  margin:0;
  color:#184d43;

}

.consulta-id{

  color:#8c8c8c;
  font-size:.95rem;

}

.consulta-grid{

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;

}

.consulta-item{

  background:#f8fafb;
  border-radius:15px;
  padding:18px;

}

.consulta-item span{

  display:block;
  color:#777;
  font-size:.85rem;
  margin-bottom:6px;

}

.consulta-item strong{

  color:#1d1d1d;
  font-size:1rem;

}

.price-highlight{

  color:#c8a23b;
  font-size:1.3rem !important;

}

.estado-badge{

  padding:10px 18px;
  border-radius:999px;
  font-weight:600;

}

.estado-aprobado{

  background:#e7f8ec;
  color:#1f8d4d;

}

.estado-rechazado{

  background:#fdecec;
  color:#d54a4a;

}

.estado-pendiente{

  background:#fff7e1;
  color:#c08a00;

}

.document-status{

  background:#fafafa;
  border:1px solid #ececec;
  border-radius:15px;
  padding:20px;
  margin-bottom:20px;

}

.document-status h5{

  margin-bottom:15px;

}

.registration-tabs{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-bottom:30px;
  flex-wrap:wrap;
}

.registration-tab{
  padding: 10px 24px;
  border: none;
  border-radius: 30px;
  background: #e5e7eb;
  color: var(--primary);
  font-family: var(--font-h2);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.registration-tab.active{
  background: var(--primary);
  color:white;
}

.registration-content{
  display:none;
}

.registration-content.active{
  display:block;
}

/* Start KeyFrames */

@keyframes spin{
  from{
    transform:rotate(0deg);
  }
  to{
    transform:rotate(360deg);
  }
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

@keyframes menuFade {
  from {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (hover: none) {

  .speaker-card:hover img {
    transform: none;
  }

}

@media (min-width: 993px) {
  .navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: var(--primary);
  }

  .navbar .nav-link {
    position: relative;
  }
}

/*Tablet*/

@media (max-width: 992px) {

  /*NAVBAR*/

  .sede-section {
    padding: 30px 0;
  }

  .navbar {
    padding: 12px 0;
  }

  .nav-container {
    padding: 0 16px;
    position: relative;
  }

  .nav-logo {
    height: 34px;
  }

  .countdown {
    justify-content: center;
  }

  .hero-event-bar {
    width: 100%;
  }

  /* =======================
     BOTÓN HAMBURGUESA
  ======================= */

  .navbar-toggler {
    border: none;
    font-size: 24px;
    color: white;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  /* =======================
     MENU (OCULTO POR DEFECTO)
  ======================= */

  .navbar-collapse {
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    backdrop-filter: blur(12px);
    background: rgba(200, 166, 70, 0.95);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 0 0 20px 20px;
  }

  /* =======================
     CUANDO SE ABRE
  ======================= */

  .navbar-collapse.show {
    max-height: 500px; /* 👈 controla altura */
    padding: 20px 0;
  }

  /* =======================
     MENU ITEMS
  ======================= */

  .navbar-nav {
    align-items: center !important;
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-link {
    margin: 0;
    padding: 12px 0;
    font-size: 1.1rem;
  }

  .navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
  }


  .nav-link.active {
    border-bottom: 2px solid white;
  }
  /* EFECTO HOVER */
  .navbar-nav .nav-link:hover {
    color: var(--crema);
    transform: translateX(5px);
  }

  /* LINEA ANIMADA */
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .navbar-nav .nav-link:hover::after {
    width: 40%;
  }

  .navbar-nav .nav-link:active {
    transform: scale(0.97);
    opacity: 0.8;
  }

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

  .hero {
    align-items: flex-start;
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 30px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image img {
    max-width: 520px;
  }

  .hero-image {
    margin-top: 20px;
  }


  /* =======================
     SLIDER
  ======================= */

  .hero-slide {
    height: auto;
    min-height: auto;
  }

  .slider-dots {
    bottom: 15px;
  }


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

  .mini-card {
    height: auto;
  }


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

  .value-card,
  .value-light {
    margin-bottom: 20px;
  }

}

/* MOBILE */

@media (max-width: 768px) {

  .nav-logo {
    height: 32px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 30px;
  }

  .hero-event-bar {

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

    width: 100%;

    padding: 22px;
  }

  .event-divider {

    width: 100%;
    height: 1px;
  }

  .event-item {
    width: 100%;
  }

  .event-info h4 {
    font-size: 1.8rem;
  }

  .event-info h5 {
    font-size: .95rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 55px;
  }

  .timeline-item::before {
    left: 11px;
  }

  .timeline-time {
    text-align: left;
    padding-top: 0;
    font-size: 14px;
  }

  .timeline-header {
    padding-left: 55px;
  }

  .timeline-header h3 {
    font-size: 2.2rem;
  }

  .timeline-divider,
  .timeline-break {
    margin-left: 55px;
  }

  .timeline-content {
    padding: 16px;
  }

  .speaker-card {
    max-width: 320px;
    height: 420px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .pricing-wrapper {
    padding: 20px;
  }

  .pricing-table {
    min-width: 650px;
  }

  .hotel-main-image img{

    height:300px;

  }

  .hotel-price{

    flex-direction:column;

    gap:20px;

  }

  .hotel-benefits{

    grid-template-columns:1fr;

  }

  .hotel-thumbnails img{

    width:80px;

    height:60px;

  }

}