:root {
  --primary-color: #26b3b4;
  --primary-hover: #1c8a8b;
  --dark-teal: #0b7e7f;
  --secondary-color: #ffffff;
  --text-color: #333333;
  --light-bg: #f5f9fa;
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(38, 179, 180, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-bg);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #ffffff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9ecef;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  text-decoration: none;
  height: 100%;
  flex-shrink: 0;
  padding-left: 5px;
}

.logo img {
  height: 35px;
  width: auto;
  max-height: 30px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 5px;
  align-items: center;
  height: 100%;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 10px 15px;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

.nav-links a.active {
  background-color: var(--primary-color);
  color: white;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
}

.mobile-menu {
  display: none;
  cursor: pointer;
  z-index: 1001;
  width: 32px;
  height: 32px;
  position: relative;
  background-color: #f8f9fa;
  border-radius: 4px;
  padding: 6px;
  transition: var(--transition);
  border: 1px solid #e9ecef;
}

.mobile-menu:hover {
  background-color: #e9ecef;
}

.menu-icon {
  width: calc(100% - 12px);
  height: 2px;
  background-color: #333333;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #333333;
  left: 0;
  transition: transform 0.3s ease;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  bottom: -7px;
}

.mobile-menu.active {
  background-color: #e9ecef;
}

.mobile-menu.active .menu-icon {
  background-color: transparent;
}

.mobile-menu.active .menu-icon::before {
  transform: rotate(45deg) translate(2px, 7px);
}

.mobile-menu.active .menu-icon::after {
  transform: rotate(-45deg) translate(2px, -7px);
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.3s ease;
}

.mobile-nav-links {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--dark-teal) 100%);
  padding: 80px 25px 30px;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1000;
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links.show {
  right: 0;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 500;
  padding: 15px;
  margin-bottom: 8px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  position: relative;
}

.mobile-nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.mobile-nav-links a::after {
  content: "→";
  position: absolute;
  right: 15px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-links a:hover::after {
  opacity: 1;
  transform: translateX(3px);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.mobile-nav-close:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.mobile-nav-close span {
  position: relative;
  width: 16px;
  height: 16px;
}

.mobile-nav-close span::before,
.mobile-nav-close span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  top: 50%;
  left: 0;
}

.mobile-nav-close span::before {
  transform: rotate(45deg);
}

.mobile-nav-close span::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: url("../img/fondo.jpg") no-repeat center/cover;
  padding: 60px 0;
  color: white;
  opacity: 0;
  animation: fadeInHero 1.5s ease-in-out forwards;
}

.hero-content-congress {
  width: 100%;
  text-align: left;
  transform: translateY(30px);
  opacity: 0;
  animation: slideInContent 1.2s ease-out 0.3s forwards;
}

.hero-text-congress {
  max-width: 700px;
  margin: 0;
}

.hero-text-congress h1 {
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: left;
  font-weight: 400;
}

.hero-text-congress h2 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-align: left;
  font-weight: 600;
}

.hero-text-congress h2 .sexto-encuentro {
  color: #000000;
  font-weight: 900;
  font-size: 28px;
  display: block;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.hero-text-congress h2 .primer-encuentro {
  color: white;
  font-weight: 400;
  font-size: 18px;
  display: block;
  margin-top: 8px;
}

.congress-location {
  font-size: 20px;
  margin-bottom: 12px;
  color: white;
  font-weight: 600;
  text-align: left;
}

.congress-date {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333333;
  letter-spacing: 1px;
  text-align: left;

  background: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.congress-date::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.congress-date:hover::before {
  left: 100%;
}

.congress-motto {
  font-size: 16px;
  font-style: normal;
  color: #ffffff;
  max-width: 520px;
  margin: 18px 0 0 0;
  text-align: left;
  line-height: 1.5;
  font-weight: 350;
  letter-spacing: 0.3px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.congress-motto:hover {
  opacity: 1;
}

@keyframes fadeInHero {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInContent {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

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

@media screen and (max-width: 1200px) {
  .hero-text-congress h1 {
    font-size: 18px;
  }

  .hero-text-congress h2 .sexto-encuentro {
    font-size: 26px;
  }

  .hero-text-congress h2 .primer-encuentro {
    font-size: 16px;
  }

  .congress-date {
    font-size: 14px;
    padding: 8px 14px;
  }

  .congress-motto {
    font-size: 13px;
    margin: 12px 0 0 0;
  }
}

@media screen and (max-width: 1024px) {
  .hero-text-congress h1 {
    font-size: 16px;
  }

  .hero-text-congress h2 .sexto-encuentro {
    font-size: 24px;
  }

  .hero-text-congress h2 .primer-encuentro {
    font-size: 14px;
  }

  .congress-location {
    font-size: 18px;
  }

  .congress-date {
    font-size: 14px;
    padding: 7px 12px;
  }

  .congress-motto {
    font-size: 12px;
    margin: 10px 0 0 0;
    max-width: 450px;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    height: auto;
    background: url("../img/fondo_mobile.jpg") no-repeat;
    background-size: 100% auto;
    background-position: top center;
    display: block;
    padding: 0;
  }

  .hero .container {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .hero-content-congress {
    flex-direction: column;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .hero-text-congress {
    padding: 15px 10px 0;
    text-align: center;
  }

  .hero-text-congress h1 {
    font-size: 16px;
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: 400;
  }

  .hero-text-congress h2 .sexto-encuentro {
    font-size: 22px;
    font-weight: 900;
    color: #000000;
  }

  .hero-text-congress h2 .primer-encuentro {
    font-size: 14px;
    font-weight: 400;
    color: white;
  }

  .congress-location {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .congress-date {
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
    padding: 6px 12px;
  }

  .congress-motto {
    font-size: 14px;
    line-height: 1.4;
    margin: 15px 0 0 0;
    text-align: center;
    max-width: 100%;
    letter-spacing: 0.2px;
  }
}

@media screen and (max-width: 480px) {
  .hero .container {
    padding-top: 50px;
  }

  .hero-text-congress {
    padding: 10px 5px 0;
  }

  .hero-text-congress h1 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .hero-text-congress h2 .sexto-encuentro {
    font-size: 18px;
    font-weight: 900;
    color: #000000;
  }

  .hero-text-congress h2 .primer-encuentro {
    font-size: 12px;
    font-weight: 400;
    color: white;
  }

  .congress-location {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .congress-date {
    font-size: 12px;
    margin-bottom: 15px;
    padding: 6px 10px;
    letter-spacing: 0.5px;
  }

  .congress-motto {
    font-size: 13px;
    margin: 12px 0 0 0;
    line-height: 1.3;
  }
}

.cienut-banner {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cienut-banner h1 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  text-transform: none;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-family: "Open Sans", sans-serif;
  line-height: 1.3;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 28px;
  color: var(--text-color);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-title p {
  font-size: 16px;
  color: #777;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
}

.welcome-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.welcome-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
}

.welcome-content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.welcome-content strong {
  color: var(--primary-color);
}

.registro-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.registro-form-container {
  max-width: 450px;
  margin: 0 auto;
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.registro-form-container iframe {
  border-radius: 8px;
  min-height: 600px;
}

.registro-countdown-container {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 16px 25px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-teal));
  border-radius: 10px;
  color: white;
  box-shadow: 0 4px 12px rgba(38, 179, 180, 0.2);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.registro-countdown-container h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.registro-countdown {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.registro-countdown .countdown-item {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 10px;
  min-width: 65px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.registro-countdown .countdown-value {
  font-size: 24px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.registro-countdown .countdown-label {
  font-size: 10px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.programa-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.programa-container {
  max-width: 1000px;
  margin: 0 auto;
}

.programa-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 0;
  flex-wrap: nowrap;
  background-color: white;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  overflow: hidden;
}

.programa-day-btn {
  background-color: #f8f9fa;
  color: var(--text-color);
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0;
  border-right: 1px solid #e9ecef;
  position: relative;
  flex: 1;
  min-width: 0;
}

.programa-day-btn:first-child {
  border-radius: 8px 0 0 8px;
}

.programa-day-btn:last-child {
  border-radius: 0 8px 8px 0;
  border-right: none;
}

.programa-day-btn.active {
  background-color: var(--primary-color);
  color: white;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.programa-day-btn.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--primary-color);
}

.programa-day-btn:hover:not(.active) {
  background-color: #e9ecef;
  color: var(--primary-color);
}

.programa-mobile-nav {
  display: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 0;
  background-color: white;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  overflow: hidden;
}

.programa-mobile-arrow {
  background-color: #f8f9fa;
  color: var(--text-color);
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
  border-right: 1px solid #e9ecef;
}

.programa-mobile-arrow.next {
  border-right: none;
  border-left: 1px solid #e9ecef;
}

.programa-mobile-arrow:hover:not(:disabled) {
  background-color: #e9ecef;
  color: var(--primary-color);
}

.programa-mobile-arrow.active,
.programa-mobile-arrow:active:not(:disabled) {
  background-color: var(--primary-color);
  color: white;
}

.programa-mobile-arrow:disabled {
  background-color: #f8f9fa;
  color: #cccccc;
  cursor: not-allowed;
}

.programa-mobile-arrow svg {
  width: 18px;
  height: 18px;
}

.programa-mobile-day {
  flex: 1;
  background-color: var(--primary-color);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.current-day-text {
  color: white;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.programa-content {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.programa-day {
  display: none;
  padding: 0 0 25px 0;
}

.programa-day.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.programa-day h3 {
  font-size: 18px;
  color: var(--text-color);
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  padding: 18px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 2px solid var(--primary-color);
  font-weight: 700;
  letter-spacing: 1px;
}

.programa-block {
  margin-bottom: 25px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
  background-color: white;
}

.programa-block:last-child {
  margin-bottom: 0;
}

.block-header {
  padding: 14px 20px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.block-header h4 {
  color: white;
  font-size: 15px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.programa-table-container {
  overflow-x: auto;
  background-color: white;
  border-radius: 0 0 6px 6px;
}

.programa-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 850px;
  background-color: white;
  font-family: "Open Sans", sans-serif;
}

.programa-table thead {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.programa-table th {
  border: 1px solid #dee2e6;
  padding: 12px 16px;
  text-align: left;
  vertical-align: middle;
  font-weight: 700;
  font-size: 12px;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.programa-table td {
  border: 1px solid #dee2e6;
  padding: 10px 16px;
  text-align: left;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1.4;
}

.programa-table .time-col {
  width: 85px;
  text-align: center;
  background-color: rgba(38, 179, 180, 0.05);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 14px;
}

.programa-table .topic-col {
  width: auto;
  min-width: 380px;
  font-weight: 500;
  color: var(--text-color);
  font-size: 13px;
  line-height: 1.3;
}

.programa-table .speaker-col {
  width: 200px;
  color: #495057;
  font-size: 13px;
  font-weight: 500;
}

.programa-table .country-col {
  width: 120px;
  color: #6c757d;
  font-size: 12px;
  text-align: center;
  font-style: italic;
}

.programa-table tbody tr:nth-child(even) {
  background-color: rgba(248, 249, 250, 0.5);
}

.speaker-with-flag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag-icon {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  margin-right: 8px;
  object-fit: cover;
  flex-shrink: 0;
  vertical-align: middle;
}

.ponentes-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.ponente-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  margin: 10px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.ponente-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ponente-img-container {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.ponente-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
}

.slider-container {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
  overflow: visible;
}

.certificacion-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.certificacion-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.certificacion-content p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.certificacion-content strong {
  color: var(--primary-color);
}

.certificacion-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.area-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: 12px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.area-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(38, 179, 180, 0.15);
}

.area-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-icon svg {
  width: 100%;
  height: 100%;
}

.area-item span {
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
}

.nosotros-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.nosotros-content {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.nosotros-content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.coordinadores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.coordinador-card {
  background-color: var(--secondary-color);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #e8ecef;
  display: flex;
  flex-direction: column;
}

.coordinador-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.coordinador-img-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.coordinador-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.coordinador-card:hover .coordinador-img {
  transform: scale(1.03);
}

.coordinador-info {
  padding: 20px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coordinador-info h3 {
  font-size: 16px;
  color: var(--text-color);
  margin: 0 0 12px 0;
  font-weight: 600;
  line-height: 1.3;
}

.coordinador-country {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 500;
  color: #495057;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.8px;
  padding: 6px 12px;
  background-color: #f8f9fa;
  border-radius: 20px;
  border: 1px solid #e9ecef;
}

.coordinador-country .flag-icon {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.coordinador-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.coordinador-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #495057;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.coordinador-social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s;
}

.coordinador-social a:hover::before {
  left: 100%;
}

.coordinador-social a:hover {
  background-color: #2c5aa0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.coordinador-social svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.slider-arrow {
  display: none !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  background: none;
  border: none;
  color: var(--primary-color);
  padding: 10px 14px;
  font-size: 0;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
}

.slider-arrow svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-color);
  stroke-width: 3;
  transition: stroke 0.3s ease;
}

.slider-arrow:hover svg {
  stroke: var(--dark-teal);
  transform: scale(1.1);
}

.slider-arrow.prev {
  left: -10px;
}

.slider-arrow.next {
  right: -10px;
}

.slider-arrow:hover {
  background-color: var(--dark-teal);
  transform: translateY(-50%) scale(1.1);
}

.custom-slider-nav {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  gap: 8px;
}

.custom-slider-nav button {
  width: 30px;
  height: 5px;
  background-color: #ddd;
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.custom-slider-nav button.active {
  background-color: var(--primary-color);
  width: 40px;
}

.footer {
  background-color: var(--text-color);
  color: white;
  padding: 50px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 35px;
}

.footer-about p {
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  fill: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  border: none;
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

.mi-perfil-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: auto;
  height: 48px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 98;
  box-shadow: 0 4px 14px rgba(38, 179, 180, 0.3);
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
  text-decoration: none;
  padding: 0 20px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
}

.mi-perfil-btn:hover {
  background-color: var(--dark-teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(38, 179, 180, 0.35);
}

.mi-perfil-btn:active {
  transform: translateY(0);
}

.mi-perfil-btn::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDEyQzE0LjIwOTEgMTIgMTYgMTAuMjA5MSAxNiA4QzE2IDUuNzkwODYgMTQuMjA5MSA0IDEyIDRDOS43OTA4NiA0IDggNS43OTA4NiA4IDhDOCAxMC4yMDkxIDkuNzkwODYgMTIgMTIgMTJaTTEyIDEyQzE2LjQxODMgMTIgMjAgMTUuNTgxNyAyMCAyMEgyMEMyMCAyMC41NTIzIDE5LjU1MjMgMjEgMTkgMjFINUM0LjQ0NzcyIDIxIDQgMjAuNTUyMyA0IDIwQzQgMTUuNTgxNyA3LjU4MTcyIDEyIDEyIDEyWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  flex-shrink: 0;
}

.correo-largo {
  word-break: break-word;
  overflow-wrap: break-word;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

@media screen and (max-width: 768px) {
  .programa-nav {
    display: none !important;
  }

  .programa-mobile-nav {
    display: flex;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .section-title h2 {
    margin-bottom: 0;
  }

  .programa-day h3 {
    display: none;
  }

  .programa-day {
    padding: 15px 0 15px 0;
  }
}

@media screen and (min-width: 1200px) {
  .coordinadores-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 950px;
  }

  .slider-container {
    max-width: 1300px;
  }
}

@media screen and (max-width: 1200px) {
  .cienut-banner h1 {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 26px;
  }
}

@media screen and (max-width: 1024px) {
  .hero {
    padding-bottom: 60px;
  }

  .coordinadores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 600px;
  }

  .certificacion-areas {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-container {
    max-width: 750px;
  }

  .section-title h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .cienut-banner {
    padding: 15px 0;
  }

  .cienut-banner h1 {
    font-size: 14px;
    line-height: 1.3;
    padding: 0 10px;
    font-weight: 500;
  }

  .section-title h2 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .section-title p {
    font-size: 14px;
    line-height: 1.4;
  }

  .welcome-section,
  .registro-section,
  .programa-section,
  .ponentes-section,
  .certificacion-section,
  .nosotros-section {
    padding: 50px 0;
  }

  .registro-form-container {
    max-width: 90%;
    padding: 25px 20px;
  }

  .registro-countdown-container {
    margin-bottom: 30px;
    padding: 16px 20px;
    border-radius: 10px;
  }

  .registro-countdown-container h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .registro-countdown {
    gap: 8px;
  }

  .registro-countdown .countdown-item {
    min-width: 60px;
    padding: 8px;
  }

  .registro-countdown .countdown-value {
    font-size: 22px;
  }

  .registro-countdown .countdown-label {
    font-size: 9px;
  }

  .programa-nav {
    margin-bottom: 20px;
    border-radius: 6px;
    flex-wrap: wrap;
  }

  .programa-day-btn {
    padding: 10px 14px;
    font-size: 11px;
    flex: 1;
    min-width: 110px;
  }

  .programa-day-btn:first-child {
    border-radius: 6px 0 0 0;
  }

  .programa-day-btn:nth-child(3) {
    border-radius: 0 6px 0 0;
  }

  .programa-day-btn:nth-child(4) {
    border-radius: 0 0 0 6px;
    border-right: 1px solid #e9ecef;
  }

  .programa-day-btn:last-child {
    border-radius: 0 0 6px 0;
    border-right: none;
  }

  .programa-content {
    border-radius: 6px;
  }

  .programa-day {
    padding: 0 0 15px 0;
  }

  .programa-day h3 {
    font-size: 14px;
    padding: 16px 12px;
  }

  .programa-block {
    margin-bottom: 20px;
    border-radius: 5px;
  }

  .programa-table {
    min-width: 700px;
    font-size: 12px;
  }

  .programa-table th,
  .programa-table td {
    padding: 8px 12px;
  }

  .programa-table .time-col {
    width: 75px;
    font-size: 12px;
  }

  .programa-table .topic-col {
    min-width: 280px;
    font-size: 12px;
  }

  .programa-table .speaker-col {
    width: 180px;
    font-size: 11px;
  }

  .programa-table .country-col {
    width: 100px;
    font-size: 10px;
  }

  .block-header {
    padding: 12px 16px;
  }

  .block-header h4 {
    font-size: 13px;
  }

  .flag-icon {
    width: 16px;
    height: 12px;
  }

  .coordinadores-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 400px;
  }

  .coordinador-img-container {
    padding-bottom: 80%;
  }

  .certificacion-areas {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .area-item {
    padding: 16px;
  }

  .area-icon {
    width: 40px;
    height: 40px;
  }

  .slider-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .logo img {
    height: 45px;
  }

  .mi-perfil-btn {
    bottom: 90px;
    left: 20px;
    padding: 0 16px;
    height: 44px;
    font-size: 12px;
  }

  .mi-perfil-btn::before {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }

  .programa-table-container::before {
    content: "← Desliza para ver más →";
    display: block;
    text-align: center;
    padding: 6px;
    background-color: #e9ecef;
    color: #6c757d;
    font-size: 10px;
    font-style: italic;
    border-bottom: 1px solid #dee2e6;
  }

  .programa-table-container::-webkit-scrollbar {
    height: 4px;
  }
}

@media screen and (max-width: 480px) {
  .cienut-banner {
    padding: 12px 0;
  }

  .cienut-banner h1 {
    font-size: 12px;
    line-height: 1.2;
    padding: 0 8px;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .section-title p {
    font-size: 13px;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .welcome-section,
  .registro-section,
  .programa-section,
  .ponentes-section,
  .certificacion-section,
  .nosotros-section {
    padding: 40px 0;
  }

  .registro-form-container {
    max-width: 95%;
    padding: 20px 15px;
  }

  .registro-countdown {
    flex-wrap: wrap;
    justify-content: center;
  }

  .registro-countdown .countdown-item {
    min-width: 55px;
    padding: 6px;
  }

  .registro-countdown .countdown-value {
    font-size: 18px;
  }

  .registro-countdown .countdown-label {
    font-size: 8px;
  }

  .programa-nav {
    flex-direction: column;
    border-radius: 6px;
  }

  .programa-day-btn {
    padding: 10px 14px;
    font-size: 10px;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }

  .programa-day-btn:first-child {
    border-radius: 6px 6px 0 0;
  }

  .programa-day-btn:last-child {
    border-radius: 0 0 6px 6px;
    border-bottom: none;
  }

  .programa-day-btn.active::after {
    display: none;
  }

  .programa-mobile-arrow {
    width: 45px;
    height: 45px;
  }

  .programa-mobile-day {
    height: 45px;
  }

  .current-day-text {
    font-size: 12px;
  }

  .programa-mobile-arrow svg {
    width: 16px;
    height: 16px;
  }

  .programa-day {
    padding: 0 0 10px 0;
  }

  .programa-day h3 {
    font-size: 12px;
    padding: 12px 8px;
  }

  .programa-block {
    margin-bottom: 15px;
    border-radius: 4px;
  }

  .programa-table {
    min-width: 600px;
    font-size: 11px;
  }

  .programa-table th,
  .programa-table td {
    padding: 6px 8px;
  }

  .block-header {
    padding: 10px 12px;
  }

  .coordinador-img-container {
    padding-bottom: 75%;
  }

  .coordinador-info {
    padding: 15px;
  }

  .coordinador-info h3 {
    font-size: 15px;
  }

  .coordinador-country {
    font-size: 12px;
  }

  .mi-perfil-btn {
    font-size: 11px;
    padding: 0 14px;
    height: 42px;
  }
}

.programa-table-container::-webkit-scrollbar {
  height: 6px;
}

.programa-table-container::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 3px;
}

.programa-table-container::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.programa-table-container::-webkit-scrollbar-thumb:hover {
  background: var(--dark-teal);
}

.nav-links a:focus,
.mobile-nav-links a:focus,
.programa-day-btn:focus,
button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

@supports (-webkit-backdrop-filter: blur(4px)) {
  .overlay {
    -webkit-backdrop-filter: blur(4px);
  }
}

@supports not (backdrop-filter: blur(4px)) {
  .overlay {
    background-color: rgba(0, 0, 0, 0.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {

  .mobile-menu,
  .overlay,
  .mobile-nav-links,
  .scroll-top,
  .slider-arrow,
  .custom-slider-nav,
  .mi-perfil-btn {
    display: none !important;
  }

  .hero {
    background: none;
    color: black;
  }

  .hero-text-congress h1,
  .hero-text-congress h2 {
    color: black;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  }
}

.titulo-beca-activa {
  animation: parpadeo 2s infinite;
  color: #28a745 !important;
  text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

@keyframes parpadeo {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

.en-vivo-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulsoEnVivo 2s infinite;
  box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
  margin-left: 10px;
}

.en-vivo-dot {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  animation: parpadeoEnVivo 1s infinite;
}

@keyframes pulsoEnVivo {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes parpadeoEnVivo {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0.3;
  }
}

.programa-table tbody tr.en-vivo {
  background-color: rgba(220, 53, 69, 0.1) !important;
  border-left: 4px solid #dc3545;
}

.programa-table tbody tr.en-vivo td {
  font-weight: 600;
  color: #dc3545;
}

.coordinadores-intro {
  margin: 40px 0 30px 0;
  text-align: center;
}

.coordinadores-title {
  font-size: 28px;
  color: var(--text-color);
  margin-bottom: 14px;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.coordinadores-intro p {
  font-size: 16px;
  color: #777;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .coordinadores-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .coordinadores-intro {
    margin: 30px 0 25px 0;
  }

  .coordinadores-intro p {
    font-size: 14px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 480px) {
  .coordinadores-title {
    font-size: 18px;
  }

  .coordinadores-intro p {
    font-size: 13px;
  }
}

.coordinadores-intro {
  margin: 40px 0 30px 0;
  text-align: center;
}

.coordinadores-title {
  font-size: 28px;
  color: var(--text-color);
  margin-bottom: 14px;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.coordinadores-intro p {
  font-size: 16px;
  color: #777;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
}

.nosotros-section .nosotros-content+.coordinadores-grid+.nosotros-content {
  margin-top: 60px;
}

@media screen and (max-width: 1200px) {
  .coordinadores-title {
    font-size: 26px;
  }
}

@media screen and (max-width: 1024px) {
  .coordinadores-title {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .coordinadores-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .coordinadores-intro {
    margin: 30px 0 25px 0;
  }

  .coordinadores-intro p {
    font-size: 14px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 480px) {
  .coordinadores-title {
    font-size: 18px;
  }

  .coordinadores-intro p {
    font-size: 13px;
  }
}

#modalEjemplo {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.modal-contenido-global {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  width: 100%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-close-global {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
}

.modal-close-global:hover {
  color: #fff;
  background-color: #26b3b4;
  transform: rotate(90deg);
}

#modalTituloGlobal {
  color: #26b3b4;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
  padding-right: 35px;
  padding-bottom: 10px;
  border-bottom: 2px solid #26b3b4;
}

#modalImagenGlobal {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}

#modalDescripcionGlobal {
  color: #333;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
}

.ponentes-nav-flechas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.ponentes-nav-flechas button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background-color: white;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(38, 179, 180, 0.15);
}

.ponentes-nav-flechas button:hover {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(38, 179, 180, 0.35);
}

.ponentes-nav-flechas button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: stroke 0.3s ease;
}

.registro-precios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px 0 0;
}

.precio-card {
  background-color: #fff;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 2px solid #e9ecef;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.precio-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(38, 179, 180, 0.15);
}

.precio-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(38, 179, 180, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.precio-icon svg {
  width: 24px;
  height: 24px;
}

.precio-tipo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.3;
}

.precio-detalle {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}

.precio-valor {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 6px;
  line-height: 1;
}

.precio-valor.gratis {
  font-size: 24px;
  background-color: rgba(38, 179, 180, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
}

.precio-valor span {
  font-size: 14px;
  font-weight: 500;
  color: #888;
}

@media screen and (max-width: 768px) {
  .registro-precios {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0 10px;
  }

  .precio-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 6px;
  }

  .precio-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 2px;
    flex-shrink: 0;
  }

  .precio-icon svg {
    width: 20px;
    height: 20px;
  }

  .precio-tipo {
    font-size: 15px;
    line-height: 1.3;
  }

  .precio-detalle {
    font-size: 12px;
    color: #999;
  }

  .precio-valor {
    font-size: 26px;
    margin-top: 4px;
  }

  .precio-valor.gratis {
    font-size: 18px;
    padding: 6px 18px;
    display: inline-block;
  }

  .precio-valor span {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .precio-card {
    padding: 16px;
  }

  .precio-tipo {
    font-size: 14px;
  }

  .precio-valor {
    font-size: 24px;
  }
}

.registro-precios+p {
  margin-top: 50px;
}