@keyframes shake {
    0% {
        margin-left: 0;
    }
	20% {
        margin-left: 0.6vw;
	}
	40% {
	    margin-left: -0.6vw;
	}
	60% {
        margin-left: 0.6vw;
	}
	80% {
	    margin-left: -0.6vw;
	}
	100% {
        margin-left: 0;
    }
}

#devOverlay {
  top: calc(50px + 3em);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Jost*', sans-serif;
}
h1,h2,h3,h4,h5,h6, nav * {
  font-family: 'Georgia' !important;
}
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #2980b9;
    --text-color: #333;
    --warn-color: #e74c3c;
    --light-bg: rgba(245, 245, 245, 0.85);
    /* Fondo semitransparente */
    --white: #ffffff;
    --shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --boton-color: #3498db00;
}

body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  color: white;
  padding: 1.5em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 1.75em;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--white);
}

.logo-highlight {
  color: var(--primary-color);
}

.logo-image {
  width: 50px;
  height: 50px;
  object-fit: scale-down;
}

.logo-text::before {
  content: "";
  width: 0.5rem;
  display: inline-block;
}

.nav-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-btn {
  padding: 8px 20px;
  background-color: var(--boton-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: bold;
  font-size: 1.4rem;
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
}

.nav-btn:hover {
  background-color: var(--accent-color);
}

#disp {
  height: 86vh;
  margin-top: 14vh;
  position: absolute;
  left: 0;
  width: 100vw;
  padding: 10px 15px 12px 15px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  margin-top: 60px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 12px 30px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-btn:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
}
/* Secciones de contenido */

.content-contacto{
  display: flex;
  background-color: #2c3e50;
  border-radius: 5px;
  color: white;

}

.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;

}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.section p {
  margin-bottom: 20px;
  text-align: justify;
}

.section p:hover{
  border-radius: 5px;
  color: #20fff4;
  transition: 2s;
}
/* Sección de características */
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.no-pointer-events {
    pointer-events: none;
}

:is(ul, ol) :is(ul,ol) {
    padding-left: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .nav-buttons {
    gap: 10px;
  }

  .hero {
    padding-top: 3em;
  }

  .nav-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    border: 1px solid #3498db;
  }
  .nav-btn:hover {
    background-color: #3498db;
  }

  .sticky-nav {
    min-height: 50px;
    display: block;
  }

  .nav-container {
    position: relative;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
  }

  .logo {
    position: relative;
    display: flex;
    width: fit-content;
  }
}
/* Estilos para el menú desplegable */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background-color: #2c3e50;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  color: #ffffff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: background-color 0.3s;
}

.dropdown-item:hover {
  transition: 2s;
  background-color: #192a3b;
}

/* Estilos adicionales para las nuevas secciones */

/* Hero section actualizada */
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 8px;
  color: #333;
  margin-top: 20px;
}

.info-card h2 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.generation {
  font-weight: bold;
  margin: 10px 0;
}

.session-date {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Sección de cualidades */
.qualities-section {
  padding: 80px 20px;
  background-color: #fff;
}

.qualities-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
}

.qualities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.quality-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.quality-card h3 {
  color: #3498db;
  margin-bottom: 15px;
}

/* Sección comunidad */
.community-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.community-stats {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.community-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.highlight-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.highlight-card strong {
  color: #3498db;
}

/* Sección "Quiénes somos" */
.about-section {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-section h2 {
  color: #2c3e50;
  margin-bottom: 20px;
}

/* Sección de aviso */
.notice-section {
  padding: 60px 20px;
  background-color: #3498db;
  color: white;
  text-align: center;
}

.notice-card {
  max-width: 600px;
  margin: 0 auto;
}

.notice-card h3 {
  margin-bottom: 15px;
}

.notice-btn {
  padding: 10px 25px;
  background: white;
  color: #3498db;
  border: none;
  border-radius: 4px;
  margin-top: 20px;
  cursor: pointer;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .info-card {
    padding: 15px;
  }
}

/* Estilos adicionales para la versión cuatrimestral */

/* Hero section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin: 20px 0;
}

/* Sección "Cómo ser parte" */
.how-to-join {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.how-to-join h2 {
  color: #2c3e50;
  margin-bottom: 50px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  display: flex;
  text-align: left;
  gap: 20px;
}

.step-number {
  background-color: #3498db;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  color: #3498db;
  margin-bottom: 10px;
}

/* Sección de cualidades */
.qualities-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.qualities-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
}

.qualities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.quality-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.quality-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.quality-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

/* Sección de cuatrimestres */
.quarters-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.quarters-section h2 {
  color: #2c3e50;
  margin-bottom: 50px;
}

.quarters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.quarter-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  position: relative;
}

.quarter-card.current {
  border: 3px solid #3498db;
}

.quarter-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.quarter-dates {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.quarter-status {
  color: #666;
  margin-bottom: 20px;
}

.quarter-btn {
  padding: 10px 25px;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

/* Sección contacto */
.contact-info {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .step {
    min-width: 100%;
  }
}
/* Estilos para la nueva sección "Conócenos" */
.about-us-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.about-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-us-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 40px;
}

.about-us-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.about-us-text {
  flex: 1;
}

.about-us-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-us-text ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.about-us-text li {
  margin-bottom: 10px;
}

.about-us-image {
  flex: 1;
}

.about-us-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.know-more-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 30px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s;
}

.know-more-btn:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
}

.question {
    font-size: 1.35rem;
}

.question ~ {
    margin-left: 0.3rem;
    border-left: 2px solid #3498db;
    padding-left: 0.4rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-us-content {
    flex-direction: column;
  }

  .about-us-image {
    order: -1;
    margin-bottom: 30px;
  }

  .know-more-btn {
    width: 100%;
    max-width: 300px;
  }
}

a.overrideLink, a.overrideLink :not(*) {
  text-decoration: none;
  pointer-events: none;
  display: inherit;
  align-items: inherit;
}

output img {
    max-height: 60px;
}

.shake {
    color: red;
    animation: shake 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}