:root {
  --font-main: "Montserrat", sans-serif;
  --color-background: #ffffff;
  --color-card-bg: #fbfbfb;
  --color-text: #1a1a1a;
  --color-green: #7ed957;
  --color-blue: #2ab9bb;
  --gradient-primary: linear-gradient(
    90deg,
    var(--color-green) 0%,
    var(--color-blue) 100%
  );
  --font-size-subheading: clamp(1.5rem, 2.25vw, 2.5rem);
  --font-size-small-heading: clamp(1.2rem, 2vw, 1.5rem);
  --font-size-body: clamp(1rem, 2vw, 1.125rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h3 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--color-blue);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
}

h1 {
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: var(--font-size-subheading);
}

h2 {
  color: #000000;
  font-size: var(--font-size-small-heading);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

a:hover {
  border-bottom: 2px solid var(--color-blue);
  opacity: 0.8;
}

.content-card {
  background-color: var(--color-card-bg);
  padding: clamp(2rem, 5vw, 4rem);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.site-header {
  width: 100%;
  background-color: #ffffff;
  position: relative;
  z-index: 1000;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: clamp(1rem, 4vw, 4rem);
  padding-bottom: 0;
}

.main-logo {
  height: 80px;
  width: auto;
  display: block;
}

.main-navbar {
  background-color: var(--color-background);
  width: 100%;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.nav-link {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-card-bg);
  opacity: 1;
}

.main-navbar {
  background-color: var(--color-card-bg);
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-toggle {
  display: none;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 1rem 0;
}

.nav-link.active-link {
  font-weight: 800 !important;
}

.page-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.grey-bar {
  width: 100%;
  background-color: #fbfbfb;
  padding: 3.5rem 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.grey-bar.tight-top {
  padding-top: 0.8rem !important;
}

.grey-bar.tight-top h3 {
  margin-top: 0.8rem !important;
}

.grey-bar h1 {
  margin-top: 0.5rem;
  margin-bottom: 0.7rem;
}

.grey-bar p {
  font-size: clamp(1rem, 1.5vw, 1.6rem);
  font-weight: 500;
  color: #1a1a1a;
  margin-top: 0;
  margin-bottom: 1rem;
}

.section-logo {
  display: block;
  width: clamp(300px, 40vw, 600px);
  height: auto;
}

.thick-divider {
  display: block;
  width: 80px;
  height: 6px;
  background-color: #111;
  margin: 1.5rem 0 2rem 0;
  border-radius: 3px;
}

.grey-bar {
  position: relative; 
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden; 
}


.background-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0 !important;
  pointer-events: none;
}

.content-layer {
  position: relative;
  z-index: 10 !important; 
}

.baja-silhouette {
    position: absolute;
    bottom: 0; 
    right: 5%; 
    height: 100%; 
    width: auto; 
    object-fit: contain; 
    transform: none; 
}

.content-layer {
  position: relative; 
  z-index: 10; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem; 
  min-height: 200px;
}

.right-blue-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(110px, 15vw, 240px); 
  height: 100%; 
  background-color: var(--color-blue) !important;
  -webkit-mask-image: url('images/controlador.webp');
  mask-image: url('images/controlador.webp');
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 2rem;
}

.bar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index:;
  opacity: 0.3;
  transform: none;
}

.bar-logo {
  width: 70%;
  height: auto;
  display: block;
  position: relative;
  z-index: 999;
}

.logo-bar {
  padding: 0 0 !important;
  height: auto;
}

.hidden {
  display: none !important;
}

.logo-grid {
  display: flex;
  gap: 0.5rem 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  padding: 2rem 0;
}

.logo-grid img {
  width: clamp(80px, 12vw, 150px);
  height: auto;
  transition: all 0.3s ease;
  padding: -2rem 0;
}

.logo-grid img:hover {
  transform: scale(1);
}

@media screen and (max-width: 800px) {
  .logo-grid {
    justify-content: center;
    gap: 3rem 1.5rem;
  }
}

@media screen and (min-width: 1001px) {
  .nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 6vw;
    transform: translateX(-20px);
  }

  .nav-list li {
    padding: 0;
  }
}

@media screen and (max-width: 1000px) {
  .main-navbar {
    display: block;
    padding: 0;
    position: relative;
  }

  .nav-list li:nth-child(3) {
    display: none;
  }

  .menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    cursor: pointer;
  }

  .menu-arrow {
    display: block;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }

  .nav-list {
    display: flex; 
    flex-direction: column;
    width: 100%;
    position: relative; 
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    gap: 0;
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.4s ease-in-out; 
  }

  .nav-list.active {
    max-height: 400px; 
  }

  .nav-list li {
    width: 100%;
    border-top: 0.1px solid #eaeaea;
  }

  .nav-link {
    display: block;
    text-align: center;
    padding: 1.1rem 0;
  }
}

@media screen and (max-width: 500px) {
  .grey-bar {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .grey-bar .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 150px;
  }

  #inicio {
  margin-bottom: -6.6rem !important; 
}

.grey-bar picture {
    left: auto !important; 
    right: -15px !important; 
    width: calc(100% + 15px) !important; 
  }
  
  .baja-silhouette {
    width: 150% !important;
    margin-right: -7.8rem;
    margin-top: -10rem;
    object-position: bottom !important; 
  }

  .grey-bar .section-logo,
  .grey-bar h1{
    position: relative;
    z-index: 1;
    margin: 0.5rem 0;
  }

    .grey-bar .event-date {
    position: relative;
    z-index: 1;
    margin: 0.5rem 0 8rem 0;
  }

  .right-blue-bar {
    position: relative;
    width: 100%;
    min-height: 120px; 
    background-color: var(--color-blue) !important;
    background-image: url('images/controlador-m.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply; 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center !important; 
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  .right-blue-bar {
  margin-bottom: 0 !important;
}

  .bar-overlay {
    display: none !important; 
  }

  .bar-logo {
    position: relative;
    z-index: 1;
    height: 90px !important; 
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto !important; 
  }

.logo-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 1.5rem 1rem !important; 
    align-items: center;
    justify-items: center;
}

.logo-grid img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.timeline-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: -3rem !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
}

.timeline-card.highlight {
  width: 350px;
  height: 330px;
  aspect-ratio: auto;
  flex-shrink: 0;
  padding: 1.5rem;
}

.timeline-card img[src*="icon-registro.svg"] {
  margin-top: 32px !important;
}

.timeline-card img[src*="icon-stands.svg"] {
  margin-top: 32px !important;
}

.time {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  text-align: center;
  width: 100%;
  margin-top: auto;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

.timeline-card h4.activity-name {
  margin-top: 0;
  padding-top: 0rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: #222;
}

.timeline-card {
  background: white;
  width: 200px;
  aspect-ratio: 2 / 3.3;
  height: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.timeline-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.timeline-wrapper::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1000px) {
    #programa,
    #conferencistas, 
    #acceso,
    #lugar {
        padding-bottom: 0; 
        margin-bottom: 0;
    }

    #programa .container,
    #conferencistas .container,
    #acceso .container,
    #lugar .container,
    #programa .grey-bar,
    #conferencistas .grey-bar,
    #acceso .grey-bar,
    #lugar .grey-bar {
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-track {
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
  padding: 1rem 4px;
  position: relative;
  min-width: max-content;
  padding-left: 6vw;
  padding-right: 7vw;
}

.timeline-line {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary, linear-gradient(90deg, #0056b3, #00aaff));
  z-index: 0;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 1.5rem;
  background-color: white;
  border: 1px solid #ccc;
  position: relative;
  z-index: 1;
}

.timeline-marker.filled {
  background: var(
    --gradient-primary,
    linear-gradient(135deg, #0056b3, #00aaff)
  );
  border: none;
}

.timeline-card.highlight .card-icon {
  max-width: 65%; /* Keeps it from stretching edge-to-edge */
  margin: auto; /* Centers it both vertically AND horizontally */
}

.custom-checkmark-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.custom-checkmark-list li {
  display: flex;
  align-items: center;
  font-size: var(--font-size-body)
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}

.custom-checkmark-list li::before {
  content: "\2713";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  margin-right: 15px;
  background: var(
    --gradient-primary,
    linear-gradient(135deg, #0056b3, #00aaff)
  );
  color: white;
  font-size: var(--font-size-body);
  font-weight: 600;
}

img[src*="icon-registro.svg"],
img[src*="icon-confetti.svg"],
img[src*="icon-stands.svg"],
img[src*="icon-comida.svg"],
img[src*="icon-coctel.svg"],
img[src*="icon-facebook.svg"],
img[src*="icon-instagram.svg"],
img[src*="icon-whatsapp.svg"],
img[src*="icon-email.svg"] {
  content: url("data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==");
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  filter: none !important;
}

img[src*="icon-registro.svg"] {
  -webkit-mask-image: url("../logos/icon-registro.svg");
  mask-image: url("../logos/icon-registro.svg");
}

img[src*="icon-confetti.svg"] {
  -webkit-mask-image: url("../logos/icon-confetti.svg");
  mask-image: url("../logos/icon-confetti.svg");
}

img[src*="icon-stands.svg"] {
  -webkit-mask-image: url("../logos/icon-stands.svg");
  mask-image: url("../logos/icon-stands.svg");
}

img[src*="icon-comida.svg"] {
  -webkit-mask-image: url("../logos/icon-comida.svg");
  mask-image: url("../logos/icon-comida.svg");
}

img[src*="icon-coctel.svg"] {
  -webkit-mask-image: url("../logos/icon-coctel.svg");
  mask-image: url("../logos/icon-coctel.svg");
}

img[src*="icon-facebook.svg"] {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22.675 0h-21.35c-.732 0-1.325.593-1.325 1.325v21.351c0 .731.593 1.324 1.325 1.324h11.495v-9.294h-3.13v-3.622h3.13v-2.67c0-3.1 1.893-4.788 4.659-4.788 1.325 0 2.463.099 2.795.143v3.24l-1.918.001c-1.504 0-1.795.715-1.795 1.763v2.313h3.587l-.467 3.622h-3.12v9.293h6.116c.73 0 1.323-.593 1.323-1.325v-21.35c0-.732-.593-1.325-1.325-1.325z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22.675 0h-21.35c-.732 0-1.325.593-1.325 1.325v21.351c0 .731.593 1.324 1.325 1.324h11.495v-9.294h-3.13v-3.622h3.13v-2.67c0-3.1 1.893-4.788 4.659-4.788 1.325 0 2.463.099 2.795.143v3.24l-1.918.001c-1.504 0-1.795.715-1.795 1.763v2.313h3.587l-.467 3.622h-3.12v9.293h6.116c.73 0 1.323-.593 1.323-1.325v-21.35c0-.732-.593-1.325-1.325-1.325z'/%3E%3C/svg%3E");
}

img[src*="icon-instagram.svg"] {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.85s-.011 3.584-.069 4.85c-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07s-3.584-.012-4.85-.07c-3.252-.148-4.771-1.691-4.919-4.919-.058-1.265-.069-1.645-.069-4.85s.011-3.584.069-4.85c.149-3.225 1.664-4.771 4.919-4.919 1.266-.058 1.644-.07 4.85-.07zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948s.014 3.667.072 4.947c.2 4.358 2.618 6.78 6.98 6.98 1.281.059 1.689.073 4.948.073s3.667-.014 4.947-.072c4.358-.2 6.78-2.618 6.98-6.98.059-1.281.073-1.689.073-4.948s-.014-3.667-.072-4.947c-.2-4.358-2.618-6.78-6.98-6.98-1.281-.059-1.689-.073-4.948-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.162 6.162 6.162 6.162-2.759 6.162-6.162-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.441-.645 1.441-1.44s-.645-1.44-1.441-1.44z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.85s-.011 3.584-.069 4.85c-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07s-3.584-.012-4.85-.07c-3.252-.148-4.771-1.691-4.919-4.919-.058-1.265-.069-1.645-.069-4.85s.011-3.584.069-4.85c.149-3.225 1.664-4.771 4.919-4.919 1.266-.058 1.644-.07 4.85-.07zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948s.014 3.667.072 4.947c.2 4.358 2.618 6.78 6.98 6.98 1.281.059 1.689.073 4.948.073s3.667-.014 4.947-.072c4.358-.2 6.78-2.618 6.98-6.98.059-1.281.073-1.689.073-4.948s-.014-3.667-.072-4.947c-.2-4.358-2.618-6.78-6.98-6.98-1.281-.059-1.689-.073-4.948-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.162 6.162 6.162 6.162-2.759 6.162-6.162-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.791-4-4s1.791-4 4-4 4 1.791 4 4-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.441-.645 1.441-1.44s-.645-1.44-1.441-1.44z'/%3E%3C/svg%3E");
}

img[src*="icon-whatsapp.svg"] {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M24 11.7c0 6.45-5.27 11.68-11.78 11.68-2.07 0-4-.53-5.7-1.45L0 24l2.13-6.27a11.57 11.57 0 0 1-1.7-6.04C.44 5.23 5.72 0 12.23 0 18.72 0 24 5.23 24 11.7M12.22 1.85c-5.46 0-9.9 4.41-9.9 9.83 0 2.15.7 4.14 1.88 5.76L2.96 21.1l3.8-1.2a9.9 9.9 0 0 0 5.46 1.62c5.46 0 9.9-4.4 9.9-9.83a9.88 9.88 0 0 0-9.9-9.83m5.95 12.52c-.08-.12-.27-.19-.56-.33-.28-.14-1.7-.84-1.97-.93-.26-.1-.46-.15-.65.14-.2.29-.75.93-.91 1.12-.17.2-.34.22-.63.08-.29-.15-1.22-.45-2.32-1.43a8.64 8.64 0 0 1-1.6-1.98c-.18-.29-.03-.44.12-.58.13-.13.29-.34.43-.5.15-.17.2-.3.29-.48.1-.2.05-.36-.02-.5-.08-.15-.65-1.56-.9-2.13-.24-.58-.48-.48-.64-.48-.17 0-.37-.03-.56-.03-.2 0-.5.08-.77.36-.26.29-1 .98-1 2.4 0 1.4 1.03 2.76 1.17 2.96.14.19 2 3.17 4.93 4.32 2.94 1.15 2.94.77 3.47.72.53-.05 1.7-.7 1.95-1.36.24-.67.24-1.25.17-1.37'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M24 11.7c0 6.45-5.27 11.68-11.78 11.68-2.07 0-4-.53-5.7-1.45L0 24l2.13-6.27a11.57 11.57 0 0 1-1.7-6.04C.44 5.23 5.72 0 12.23 0 18.72 0 24 5.23 24 11.7M12.22 1.85c-5.46 0-9.9 4.41-9.9 9.83 0 2.15.7 4.14 1.88 5.76L2.96 21.1l3.8-1.2a9.9 9.9 0 0 0 5.46 1.62c5.46 0 9.9-4.4 9.9-9.83a9.88 9.88 0 0 0-9.9-9.83m5.95 12.52c-.08-.12-.27-.19-.56-.33-.28-.14-1.7-.84-1.97-.93-.26-.1-.46-.15-.65.14-.2.29-.75.93-.91 1.12-.17.2-.34.22-.63.08-.29-.15-1.22-.45-2.32-1.43a8.64 8.64 0 0 1-1.6-1.98c-.18-.29-.03-.44.12-.58.13-.13.29-.34.43-.5.15-.17.2-.3.29-.48.1-.2.05-.36-.02-.5-.08-.15-.65-1.56-.9-2.13-.24-.58-.48-.48-.64-.48-.17 0-.37-.03-.56-.03-.2 0-.5.08-.77.36-.26.29-1 .98-1 2.4 0 1.4 1.03 2.76 1.17 2.96.14.19 2 3.17 4.93 4.32 2.94 1.15 2.94.77 3.47.72.53-.05 1.7-.7 1.95-1.36.24-.67.24-1.25.17-1.37'/%3E%3C/svg%3E");
}

img[src*="icon-email.svg"] {
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.cabeza-icon {
  max-width: 150px;
  height: auto;
  margin-top: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.speakers-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 2rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.speakers-wrapper::-webkit-scrollbar {
  display: none;
}

.speakers-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  padding: 1rem 5%;
  min-width: max-content;
}

.speaker-card {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.speaker-card:hover {
  transform: translateY(-5px);
}

.speaker-photo {
  width: 100%;
  aspect-ratio: 2 / 3.3;
  object-fit: cover;
  object-position: center 15%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #eaeaea;
}

.speaker-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bellseris {
    transform: scale(2.5) !important;
    z-index: 2; 
    position: relative;
  }

.speaker-name {
  margin: 0 0 0.1rem 0;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #222;
  text-transform: uppercase;
  font-weight: 700;
}

.speaker-brand {
  display: block;
  max-width: 90px;
  height: 35px;
  object-fit: contain;
  margin: 0 auto;
}

.speaker-info img {
  display: block !important;
  width: 100% !important;
  max-width: 90px !important;
  height: 35px !important;
  object-fit: contain !important;
  margin: 0.5rem auto 0 auto !important;
}

.acceso-parent {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 400px;
  overflow: hidden;
}

.acceso-text {
  width: 50%;
  padding: 3rem 0;
}

.acceso-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
}

.acceso-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 1024px) {
  .acceso-text {
    width: 60%;
  }
  .acceso-image-wrapper {
    width: 35%;
  }
}

@media screen and (max-width: 800px) {
  .acceso-parent {
    flex-direction: column;
    height: auto;
  }

  .acceso-text {
    width: 100%;
  }

  .acceso-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
  }
}

.lugar-parent {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 450px;
  overflow: hidden;
}

.lugar-text {
  flex: 1;
  padding: 3rem 0;
  padding-right: 5%;
  z-index: 2;
  width: 55%;
}

.lugar-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  background-color: #f5f5f5;
}

.lugar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.map-container {
    margin-top: 1.5rem;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (min-width: 1000px) and (max-width: 1439px) {
    .map-container {
        max-width: 450px; 
        height: 60px; 
    }
}

@media (min-width: 1440px) {
    .map-container {
        max-width: 600px; 
        max-height: 400px; 
    }
}
@media screen and (max-width: 900px) {
  .lugar-parent {
    flex-direction: column;
    align-items: center;
  }

  .lugar-text {
    width: 100%;
    padding-right: 0;
  }

  .lugar-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
  }
}


#acceso h3,
#lugar h3,
h3.gradient-subtitle,
.gradient-subtitle h3 {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0rem;
}

#acceso img,
#lugar img {
    width: 100%;
    aspect-ratio: 1 / 1;     
    object-fit: cover;      
    flex-shrink: 0;              
} 

#acceso .acceso-photo,
#lugar .lugar-photo {
    width: 100%;
    aspect-ratio: 1 / 1;     
    object-fit: cover;      
    flex-shrink: 0;           
    align-self: flex-start; 
}

.site-footer {
  background-color: var(--color-background);
  color: var(--color-text);
  padding: 6rem 0 3rem 0;
  border-top: 1px solid #eee;
  font-size: var(--font-size-body);
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
}

.footer-top-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section-title {
  font-size: clamp(2rem, 3vw, 5rem);
  margin-bottom: 0;
  color: var(--color-text);
}

.footer-contact-area p {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  max-width: 550px;
  margin-bottom: 2rem;
  font-weight: 500;
  color: #000;
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--color-card-bg);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: var(--color-text);
  font-weight: 700;

  font-size: var(--font-size-body);
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--color-blue);
  transition: fill 0.3s;
}

.footer-btn:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(42, 185, 187, 0.2);
  border-bottom: none;
  opacity: 1;
}

.footer-btn:hover svg {
  fill: #fff;
}

.footer-branding-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  width: 220px;
  filter: grayscale(1);
  opacity: 0.9;
  transition: filter 0.3s;
}

.footer-logo:hover {
  filter: grayscale(0);
}

.footer-socials a {
  color: var(--color-text);
  border-bottom: none;
}

.footer-socials a svg {
  width: 36px;
  height: 36px;
  transition:
    transform 0.3s,
    color 0.3s;
}

.footer-socials a:hover {
  color: var(--color-blue);
  transform: scale(1.15);
  border-bottom: none;
}

/* 4. LISTS GRID */
.footer-divider {
  border: 0;
  border-top: 1px solid #eee;
  margin: 3rem 0;
  width: 100%;
}

.footer-lists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-list-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--font-size-body);
  color: var(--color-text);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
  font-size: var(--font-size-body);
}

.footer-links a {
  font-weight: 500;
  color: #666;
  text-decoration: none;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-blue);
}

.logo-grid-title {
  text-align: center;
  font-size: var(--font-size-body);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-text);
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.footer-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: center;
  justify-items: center;
  margin-bottom: 3rem;
}

.footer-logo-grid img {
  width: 100%;
  max-width: 120px;
  transition: all 0.3s;
}

.footer-logo-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.footer-copyright {
  text-align: center;
  font-size: 1rem;
  color: #999;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

@media (min-width: 1024px) {
  .footer-top-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-logo-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 1920px) {
    body {
        background-color: #f5f5f5; /* Pinta el fondo gris */
    }
    
    .site-wrapper {
        max-width: 1920px;
        margin: 0 auto;
        background-color: #ffffff;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
}

html, body {
    max-width: 100vw;
    overflow-x: hidden; 
}

*, *::before, *::after {
    box-sizing: border-box; 
}

.veserisbell-icon {
    width: 250; 
    height: auto; 
    display: block; 
}

.scroll-main-container {
  position: relative;
  width: 100%;
}

.timeline-wrapper, 
.speakers-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth; 
  scrollbar-width: none; 
  -ms-overflow-style: none;  
}

.timeline-wrapper::-webkit-scrollbar,
.speakers-wrapper::-webkit-scrollbar {
  display: none; 
}

.scroll-nav-btn {
  display: none; 
}

@media (min-width: 992px) {
  .scroll-nav-btn {
    display: flex; 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff; 
    color: #002B5C; /* Tu azul */
    border: 1px solid #e0e0e0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .scroll-nav-btn:hover {
    background-color: var(--gradient-primary); 
    color: #333;
    transform: translateY(-50%) scale(1.1); 
  }

  .scroll-nav-btn.prev {
    left: 15px; 
  }

  .scroll-nav-btn.next {
    right: 15px; 
  }
}