	:root {
	  --menu-height: 70px;
	  --gap: 40px;
	  --img-width: 290px;
	  --img-height: 390px;
	  --card-radius: 18px;
	  --gold: #ffd700;
	  --silver: #c0c0c0;
	  --bronze: #cd7f32;
	}
	body {
	  margin: 0;
	  padding: 0;
	  font-family:  Avenir, 'Nunito Sans', Tahoma, Geneva, Verdana, sans-serif;
	  background: #000000;
	  color: #222;
	}

/* clase para Botón de inscripción con estilo animado */
	.menu-btn-ins {
	 
	  display: inline-block;
	  padding: 14px 32px;
	  font-size: 1rem;
	  font-weight: 600;
	  color: #00f6ff;
	  text-decoration: none;
	  background: rgba(0, 0, 0, 0.5); /* semitranslúcido */
	  border: 2px solid #00f6ff;
	  border-radius: 10px;
	  position: relative;
	  transition: transform 0.2s ease, background 0.3s ease, color 0.3s ease;
	  text-align: center;
	  box-shadow: 0 0 8px #00f6ff, 0 0 16px #00f6ff, 0 0 32px #00f6ff;
	  animation: neonPulse 2s infinite alternate;
	}
	
	.menu-btn-ins:hover {
	  background: rgba(0, 246, 255, 0.15);
	  color: #fff;
	  transform: scale(1.08);
	  box-shadow: 0 0 12px #00f6ff, 0 0 24px #00f6ff, 0 0 48px #00f6ff;
	}
	
	/* Animación de parpadeo/glow */
	@keyframes neonPulse {
	  0% {
		box-shadow: 0 0 6px #00f6ff, 0 0 12px #00f6ff, 0 0 20px #00f6ff;
	  }
	  50% {
		box-shadow: 0 0 12px #00f6ff, 0 0 24px #00f6ff, 0 0 40px #00f6ff;
	  }
	  100% {
		box-shadow: 0 0 6px #00f6ff, 0 0 12px #00f6ff, 0 0 20px #00f6ff;
	  }
	}
	
	@media (max-width: 600px) {
	.menu-btn-ins {
	  display: inline-block;
	  padding: 14px 32px;
	  font-size: 1rem;
	  font-weight: 600;
	  color: #00f6ff;
	  text-decoration: none;
	  background: rgba(0, 0, 0, 0.5); /* semitranslúcido */
	  border: 2px solid #00f6ff;
	  border-radius: 10px;
	  position: relative;
	  transition: transform 0.2s ease, background 0.3s ease, color 0.3s ease;
	  text-align: center;
	  box-shadow: 0 0 8px #00f6ff, 0 0 16px #00f6ff, 0 0 32px #00f6ff;
	  animation: neonPulse 2s infinite alternate;
	}
	
	  }


	.header-divider {
	  position: relative;
	  left: 0;
	  bottom: 18px;
	  width: 100%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  z-index: 2; 
	  pointer-events: none;
	
	}
	
	.divider-line {
	  flex: 1;
	  height: 1px;
	  background: #fff; 
	  display: block;
	}
	
	.divider-icon {
	  width: 32px;
	  height: auto;
	  display: block;
	  background: transparent;
	  margin: 0;
	  padding: 0;
	}

	
	.header-video-container {
	  position: relative;
	  width: 100%;
	  height: 100vh;
	  min-height: 400px;
	  overflow: hidden;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  background: #000;
	}
	
	.header-video-container video {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  width: 100vw;
	  height: 100vh;
	  min-width: 100%;
	  min-height: 100%;
	  object-fit: cover;
	  transform: translate(-50%, -50%);
	  z-index: 1;
	  background: #000; /* Por si el video tarda en cargar */
	}


@media (max-width: 600px) {
	  .header-video-container {
		height: 36vh;
		min-height: 200px;
	  }
	  .header-video-container video {
		width: 100vw;
		height: 36vh;
		min-width: 100vw;
		min-height: 36vh;
		object-fit: contain; 
		background: #000;
	
	}
	
	
	}
	
	
	
	
	@media (max-width: 500px) {

	.header-divider {
	  position: relative;
	  left: 0;
	  bottom: 52px;
	  width: 100%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  z-index: 2; 
	  pointer-events: none;
	
	}
	
	
	}



	/* Menu */
	
	nav.menu {
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100vw;
	  height: var(--menu-height);
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  background: rgba(20, 20, 20, 0.25);
	  z-index: 10;
	  backdrop-filter: blur(4px);
	  padding: 0 2vw;
	}
	.menu-content {
	  width: 100%;
	  max-width: 1200px;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	}
	.logo {
	  height: 48px;
	  width: auto;
	  margin-right: 32px;
	  cursor: pointer;
	}
	.menu-links {
	  display: flex;
	  gap: 32px;
	  align-items: center;
	}
	.menu-links a {
	  color: #fff;
	  text-decoration: none;
	  font-weight: 700;
	  font-size: 1.1em;
	  transition: color 0.2s;
	  padding: 8px 12px;
	  border-radius: 6px;
	}
	.menu-links a:hover {
	  background: rgba(255, 255, 255, 0.14);
	  color: #ffd700;
	}
	
	/* Botón hamburguesa */
	

.menu-toggle {
	 
	  width: 33px; /* 28px + 5px */
	  height: 27px; /* 22px + 5px */
	
	  display: none;
	  flex-direction: column;
	  justify-content: space-around;
	  cursor: pointer;
	  z-index: 20;
	  padding: 2px; 
	  border: none;
	  background: transparent;
	}
	
	.menu-toggle span {
	  display: block;
	  width: 100%;
	  height: 3px;
	  background: white;
	  border-radius: 2px;
	  transition: all 0.3s ease;
	}

	.menu-toggle.open span:nth-child(1) {
	  transform: rotate(45deg) translate(5px, 5px);
	}
	
	.menu-toggle.open span:nth-child(2) {
	  opacity: 0;
	}
	
	.menu-toggle.open span:nth-child(3) {
	  transform: rotate(-45deg) translate(5px, -5px);
	}
	
	---
	
	@media (max-width: 800px) {
	  .menu-links {
		position: fixed;
		top: var(--menu-height);
		right: 0;
		background: rgba(20, 20, 20, 0.95);
		height: calc(100vh - var(--menu-height));
		width: 220px;
		flex-direction: column;
		padding-top: 30px;
		gap: 24px;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		border-radius: 0 0 0 12px;
	  }
	
	  .menu-links.open {
		transform: translateX(0);
	  }
	
	  .menu-toggle {
		display: flex;
		margin-right: 25px; 
	  }
	}
	
	.header-content {
	  position: relative;
	  z-index: 2;
	  color: #fff;
	  text-align: center;
	  width: 100%;
	  margin-top: var(--menu-height);
	}
	.header-content h1 {
	  font-size: 2.8em;
	  margin: 0;
	  font-weight: 700;
	  letter-spacing: 2px;
	}
	
	/* secciones */
	
	section {
	  max-width: 1200px;
	  margin: 0 auto;
	  padding: 80px 20px 40px 20px;
	}
	section h2 {
	  
	  font-size: 2.2em;
	  margin-bottom: 20px;
	  color: #ffffff;
	  letter-spacing: 1px;
	}

	
	/* linea divisoria */
	.lineadivisoria-icono {
	  display: flex;
	  align-items: center;
	  width: 100%;
	  justify-content: center;
	  margin: 50px 0;
	  overflow:hidden;
	}
	.lineadivisoria {
	  flex: 1;
	  border-bottom: 1px solid #d2d6d9;
	  height: 0;
	  overflow:hidden;
	}
	.lineadivisoriaicono-centro {
	 
	  padding: 0 18px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  position: relative;
	  z-index: 1;
	}
	
	@media (max-width: 600px) {
	  .icono-centro {
		padding: 0 10px;
	  }
	
	}
	
	/*congreso girl con imagen
	.congreso-girl {
	  position: relative;
	  margin:0 auto;
	  width: 100%;
	  max-width: 900px;
	  min-height: 100vh;
	  background: url('../images/chica.jpg') no-repeat center right;
	  background-size: cover;
	  top:100px;
	  bottom:100px;
	  display: flex;
	  flex-direction: column;
	  justify-content: space-between;
	}
	*/
	
	.congreso-girl {
	  position: relative;
	  background: url('../images/chica.jpg') no-repeat center right;
	  background-size:contain;
	  margin: 0 auto;
	  width: 100%;
	  max-width: 900px;
	  min-height: 100vh;
	  top: 100px;
	  bottom: 100px;
	  display: flex;
	  flex-direction: column;
	  justify-content: space-between;
	  overflow: hidden; /* Para que el video no se salga */
	}
	
	.video-fondo {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  object-fit: cover;   /* Equivalente a background-size: cover */
	  object-position: right center; /* Equivalente a "center right" */
	  z-index: -1;         /* Para que quede detrás del contenido */
	}
	
	.congreso-girl .contenido {
	  position: relative;
	  z-index: 1;
	}

	
	
	
	.contenedor-superior {
	  max-width: 600px;
	}
	
	.titulo-congreso {
	  font-size: 1.8rem;
	  font-weight: 700;
	  text-transform: uppercase;
	  margin-bottom: 10px;
	  color:#fff;
	}
	
	.linea-color {
	  height: 2px;
	  width: 80%;
	  background: linear-gradient(90deg, #a236ff, #f01d7f, #f9b233);
	  margin-bottom: 20px;
	}
	.linea-color-section {
	  height: 2px;
	  width: 100%;
	  background: linear-gradient(90deg, #a236ff, #f01d7f, #f9b233);
	  margin-bottom: 50px;
	}
		
	.subtitulo-congreso {
	  font-size: 1.2rem;
	  font-weight: 500;
	  margin-bottom: 30px;
	}
	
	.subtitulo1-congreso{
		font-size: 1.7rem;
	  color: #f7dd8f;
	}
	.subtitulo2-congreso{
		font-size: 1.7rem;
	  color: #008a68;
	}
	.descripcion-congreso {
	  font-size: 1rem;
	  line-height: 1.6;
	  color: #fff;
	  max-width: 80%;
	}
	
	.contenedor-inferior {
	  position: relative;
	  max-width: 400px;
	  margin-left: auto;
	  margin-top: 60px;
	}
	
	.box-titulo {
	  background-color: rgba(255, 255, 255, 0.45);
	  padding: 10px 20px;
	  font-weight: bold;
	  text-align: center;
	  color: #fff;
	  clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 20px);
	}
	
	.box-descripcion {
	  background-color: rgba(255, 255, 255, 0.2);
	  padding: 15px 20px;
	  font-size: 0.9rem;
	  color: #fff;
	}
	
	@media (max-width: 768px) {
	  .congreso-girl {
		background: url('../images/chica.jpg')  no-repeat center right; 
		background-position: center top;
		background-size: cover;
		padding: 10px 15px;
		
	  }
	
	  .contenedor-superior {
		max-width: 100%;
	  }
	  .contenedor-inferior {
		max-width: 100%;
		margin-top: 40px;
	  }
	
	  .titulo-principal {
		font-size: 1.4rem;
	  }
	  .subtitulo {
		font-size: 1rem;
	  }
	  .descripcion-congreso {
		font-size: 0.95rem;
	  }
	}
		
	/* Ponentes */
	.ponentes {
		display: grid;
		grid-template-columns: repeat(3, 290px);
		grid-template-rows: repeat(3, auto);
		gap: 30px 30px;
		justify-content: center;
		align-content: center;
		padding: 20px;
		border-radius: 10px;
		box-shadow: 0 0 15px rgba(0,0,0,0.1);
	  }
	  .ponente-item {
		text-align: center;
	  }
	  .ponente-item img {
		width: 290px;
		height: 390px;
		border-radius: 0px;
		/* Esquinas en ángulo de 45 grados */
		  clip-path: polygon(
			20px 0, 270px 0, 290px 20px, 290px 370px,
			270px 390px, 20px 390px, 0 370px, 0 20px
		  );
		  background: #222;
		  box-shadow: 0 4px 18px rgba(0,0,0,0.11);
		  display: block;
		  margin: 0 auto;
	  }
	  
	  .ponente-item video {
		width: 290px;
		height: 390px;
		object-fit: cover;
		clip-path: polygon(
		  20px 0, 270px 0, 290px 20px, 290px 370px,
		  270px 390px, 20px 390px, 0 370px, 0 20px
		);
		background: #222;
		box-shadow: 0 4px 18px rgba(0,0,0,0.11);
		display: block;
		margin: 0 auto;
	  }
	  
	  .ponente-item p {
		text-align:left;
		padding-left:20px;
		margin-top: 15px;
		font-size: 1.1em;
		line-height:1; padding-left:20px;
		color:#fff;
	  }
	  
	  .ponente-empresa{
      color:#92b8c3; font-size:0.9em; margin-top:15px
		}
	  
	  .ponente-cargo{
		color:#92b8c3; font-size:0.9em; margin-top:15px
		  }
		
	  
	  .linea-ponente {
		  width: 85%;        
		  height: 1px;         
		  background-color: #ffffff; 
		  border: none;     
		  margin: 15px auto;  
		  
		}
		
		
	.linea-divisoria {
	  display: flex;
	  align-items: center;
	  width: 100%;
	  margin: 48px 0;
	}
	
	.linea {
	  flex: 1;
	  height: 2px;
	  background: #fff;
	}
	
	.flechas-centro {
	  margin: 0 16px;
	  height: 32px; 
	  display: block;
	  background: transparent;
	}
	  
	  @media (max-width: 900px) {
		.ponentes {
		  grid-template-columns: repeat(2, 1fr);
		  grid-template-rows: auto;
		  gap: 30px 30px;
		  width: 90vw;
		}

	  }
@media (max-width: 600px) {
		.ponentes {
		  justify-content: center;
		  width: 100%;
		  margin-left: auto;
		  margin-right: auto;
		  grid-template-columns: 1fr;
		}
		.ponente-item {
		  margin-left: auto;
		  margin-right: auto;
		}
		.ponente-item img {
			text-align: center;
		  }
		  
			.ponente-item p {
			  margin-top: 8px;
			  font-size: 1em;
			  color: #333;
			}
		  .ponente-item p {
			  margin-top: 8px;
			  font-size: 1em;
			  color: #333;
			  width:90%;
			}
			
		.linea-personalizada {
			width: 80%;    
			height: 2px;    
			background-color: #ffffff; 
			border: none;
			margin: 10px auto; 
			
		  }
		
	  }

@media screen and (max-width: 768px) and (orientation: landscape) {
		#ponentes .ponentes {
		  display: grid;
		  grid-template-columns: repeat(2, 1fr);
		  gap: 20px;
		  justify-content: center;
		  align-items: start;
		  padding: 20px;
		}
	  
		#ponentes .ponente-item {
		  max-width: 100%;
		  margin: 0 auto;
		}
	  
		#ponentes .ponente-item img,
		#ponentes .ponente-item video {
		  width: 100%;
		  max-width: 90vw;
		  height: auto;
		  object-fit: cover;
		  display: block;
		  margin: 0 auto;
		}
	  
		#ponentes .ponente-item p {
		  font-size: 1rem;
		  padding-left: 10px;
		  padding-right: 10px;
		}
	  }

	/*.logo-patrocinador img {
			min-width: 180px;
			width: 100%;
			height: auto;
			display: block;
			margin: 0 auto;
		  }
		  
	  */

	/* patrocinadores */
	
	/* base */


.logos-patrocinadores {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 5px 5px;
	  max-width: 960px;
	  margin: 10px auto;
	  padding: 0 16px;
	  justify-content: center;
	  align-items: center;
	}
	
	.logo-patrocinador {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  width: 100%;
	  max-width: 300px; /* valor por defecto grande */
	}
	
	.logo-patrocinador.gold   { flex: 0 0 300px; max-width: 300px; }
	.logo-patrocinador.silver { flex: 0 0 220px; max-width: 220px; }
	.logo-patrocinador.bronze { flex: 0 0 125px; max-width: 125px; }
	
	.logo-patrocinador img {
	  width: 100%;
	  height: auto;
	  display: block;
	  object-fit: contain;
	}

.separador {
	  flex-basis: 100%;
	  height: 40px; /* espacio visual */
	}


	@media (max-width: 600px) {
	  .logos-patrocinadores {
		grid-template-columns: 1fr;
		gap: 28px 0;
	  }
	  .logo-patrocinador.gold   { flex: 0 0 250px; max-width: 250px; }
	  .logo-patrocinador.silver { flex: 0 0 180px; max-width: 180px; }
	  .logo-patrocinador.bronze { flex: 0 0 120px; max-width: 120px; }
	}
	
	/* Programa Table */
	
	.programa-titucontenedor {
		display: flex;
		align-items: 
		padding: 0px; /
		box-sizing: border-box;
	}
	
	.arrow-column {
		flex-shrink: 0; 
		padding-top: 5px;
	}
	
	.arrow-icon {
		font-size: 2.5em; 
		color: #E06A6A;
		line-height: 1; 
	}
	
	.text-column {
		flex-grow: 1; 
		margin-left: 45px; 
	}
	

	.titulo-princi-programa,
	.subtitulo-programauno,
	.date-text {
		margin: 0; 
		padding: 0; 
		line-height: 1.2; 
	}
	
	.titulo-princi-programa {
		font-size: 1.5em; 
		font-weight: 900; 
		margin-bottom: 0px;
	}
	
	.azul-color {
		color: #48a3c1; 
	}
	
	
	.subtitulo-programauno {
		font-size: 1.2em;
		font-weight: 800; 
		margin-bottom: 15px;
		color: #fff;
	}
	
	.date-text {
		font-size: 1em; 
		font-weight: 800;
		color: #00A38D;
		margin-bottom:10px;
	}
	

	@media (max-width: 768px) {
		.programa-titucontenedor {
			padding: 20px;
		}
		.titulo-princi-programa, .subtitulo-programauno {
			font-size: 2em; 
		}
		.arrow-icon {
			font-size: 2em;
			margin-right: 10px;
		}
		.text-column {
			margin-left: 10px; 
		}
		.date-text {
			font-size: 1.2em;
		}
	}
	
	@media (max-width: 480px) {
		.programa-titucontenedor {
			padding: 15px;
		}
		.titulo-princi-programa, .subtitulo-programauno {
			font-size: 1.6em; 
		}
		.arrow-icon {
			font-size: 1.8em;
			margin-right: 8px;
		}
		.text-column {
			margin-left: 8px;
		}
		.date-text {
			font-size: 1em;
		}
	}
	
	.programa-table-container {
	  overflow-x: auto;
	}
	table.programa-table {
	  border-collapse: collapse;
	  width: 100%;
	  min-width: 600px;
	  background: #fff;
	  border-radius: 12px;
	  overflow: hidden;
	  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	}
	.programa-table th,
	.programa-table td {
	  padding: 16px 12px;
	  text-align: left;
	}
	.programa-table th {
	  background: #f5e9d7;
	  color: #b48c46;
	  font-weight: 700;
	  font-size: 1.1em;
	}
	.programa-table tr:not(:last-child) td {
	  border-bottom: 1px solid #eee;
	}
	

  .content-with-background {
		width: 100%; 
		min-height: 600px;
		background-image: url('../images/bgprograma.jpg'); 
		background-position: center bottom; 
		background-repeat: no-repeat; 

	}
	

	.-section-programa {
		max-width: 960px; 
		margin: 0 auto; 
		padding: 40px 20px; 
		background-color: rgba(255, 255, 255, 0.9);
		box-shadow: 0 0 15px rgba(0,0,0,0.2);
		min-height: inherit; 
		box-sizing: border-box; 
		position: relative; 
	}
	

	@media (max-width: 992px) {
		.main-content-section {
			padding: 30px 15px;
		}
	}
	
	@media (max-width: 768px) {
		.content-with-background {
			min-height: 450px; 
		}
		.main-content-section {
			padding: 20px 10px;
		}
	}
	
	@media (max-width: 480px) {
		.content-with-background {
			min-height: 300px; 
		}
		.main-content-section {
			padding: 15px 10px;
		}
	}


	/* FAQS */
	.faq-container {
		width: 100%;
		max-width: 960px; 
	}
	
	.faq-item {
		border-bottom: 1px solid #333;
		padding: 15px 0;
		margin-bottom: 0; 
	}
	
	.faq-item:last-child {
		border-bottom: none; 
	}
	
	.faq-question {
		display: flex;
		justify-content: space-between;
		align-items: center;
		cursor: pointer;
		font-size: 1.05em;
		font-weight: 800;
		color: #e0e0e0;
		padding-right: 25px;
		position: relative;
		-webkit-tap-highlight-color: transparent; 
	}
	

	.faq-question::-webkit-details-marker {
		display: none;
	}
	.faq-question::marker {
		display: none;
	}
	
	
	.faq-question::after {
		content: '❯'; 
		font-size: 1em;
		color: #b0b0b0;
		position: absolute;
		right: 0;
		top: 50%; 
		transform: translateY(-50%) rotate(90deg); 
		transition: transform 0.2s ease-in-out; 
	}
	
	
	.faq-item[open] > .faq-question::after {
		transform: translateY(-50%) rotate(-90deg);
	}
	
	.faq-answer-content {
		padding-top: 10px;
		padding-bottom: 5px;
		padding-right: 25px; 
		padding-left: 0; 
		color: #b0b0b0;
		line-height: 1.6; 
	}
	
	.faq-answer-content p {
		margin: 0; 
	}
	
	/* timeline */




.timeline-wrapper {
	  max-width: 900px;
	  margin: 0 auto;
	  padding: 60px 20px;
	}
	
	.timeline-container {
	  display: flex;
	  justify-content: space-between;
	  align-items: flex-start; 
	  position: relative;
	}
	
	.timeline-item {
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  text-align: center;
	  width: 22%;
	  position: relative;
	}
	
	.timeline-item img.icon {
	  width: 40px;
	  height: auto;
	  margin-bottom: 20px;
	}
	
	.point-wrapper {
	  position: relative;
	  width: 100%;
	  height: 20px;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	}
	
	.timeline-line {
	  position: absolute;
	  top: 28%;
	  left: 0;
	  right: 0;
	  height: 2px;
	  background-color: #3a696c;
	  z-index: 1;
	  transform: translateY(-50%);
	}
	
	.point-wrapper img {
	  top: 28%;
	  width: 20px;
	  height: 20px;
	  z-index: 2;
	}
	
	.timeline-item p {
	  font-size: 16px;
	  line-height: 1.4;
	  color:#fff;
	  margin-top: 100px;
	}
	
	@media (max-width: 800px) {

	.timeline-line {
	  position: absolute;
	  top: 25%;
	  left: 0;
	  right: 0;
	  height: 2px;
	  background-color: #3a696c;
	  z-index: 1;
	  transform: translateY(-50%);
	  display: none;
	}
	  .point-wrapper .timeline-line {
		display: none;
	  }
	  .timeline-item p {
		font-size: 16px;
		line-height: 1.4;
		color:#fff;
		margin-top: 10px;
	  }
	}

	@media (max-width: 768px) {
	  .timeline-container {
		flex-direction: column;
		align-items: center;
	  }
	
	  .timeline-item {
		width: 100%;
		margin-bottom: 40px;
	  }
	
	  .point-wrapper .timeline-line {
		display: none;
	  }
	}

	
	/* participar */
	
	
	.cita-container {
	  position: relative;
	  max-width: 450px;
	  text-align: center;
	  font-size: 1.8rem;
	  line-height: 1.6;
	  font-weight: 300;
	  margin:0 auto;
	}
	
	.cita-container .comilla-izq,
	.cita-container .comilla-der {
	  position: absolute;
	  width: 70px;
	  height: auto;
	  opacity: 0.7;
	  z-index: 0;
	}
	
	.comilla-izq {
	  top: -20px;
	  left: -40px;
	}
	
	.comilla-der {
	  bottom: -20px;
	  right: -40px;
	}
	
	.cita-texto {
	  position: relative;
	  z-index: 1;
	  color: #d1d1d1;
	}
	
	.cita-texto em {
	  font-style: normal;
	  font-weight: bold;
	  color: #d1d1d1;
	}
	
	.cita-texto strong {
	  font-weight: 700;
	  color: #ffffff;
	}
	
	@media (max-width: 768px) {
	  .cita-container {
		font-size: 1.2rem;
	  }
	
	  .comilla-izq
	  {
		  width: 45px;
		  left: -20px;
		  right: -20px;
		}
	  .comilla-der {
		width: 45px;
		right: -20px;
	  }
	}
	
	.cita-container {
	  background: url('image/comillas.png') no-repeat center center;
	  background-size: contain;

	}

	
	.contenido-participa {
	  display: flex;
	  flex-direction: column;
	  gap: 40px;
	  max-width: 1100px;
	  width: 100%;
	}
	
	.imagen {
	  width: 100%;
	  max-width: 450px;
	}
	
	.imagen img {
	  width: 100%;
	  height: auto;
	  border-radius: 10px;
	}
	
	.objetivos {
	  color: #c0d6f1;
	  max-width: 600px;
	  align-items: center;
	  padding-top:50px;
	}
	
	.objetivos h2 {
	  font-size: 1.5em;
	  color: #1e3d70;
	  margin-bottom: 20px;
	}
	
	.objetivos ul {
	  list-style: none;
	  padding: 0;
	}
	
	.objetivos li {
	  display: flex;
	  align-items: flex-start;
	  gap: 10px;
	  margin-bottom: 20px;
	  border-bottom: 1px solid #3ba6f540;
	  padding-bottom: 10px;
	  display: -webkit-box;
		-webkit-line-clamp: 2; 
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	
	.objetivos li img.flecha-icono {
	  width: 10px;
	  height: 14px;
	  margin-top: 4px;
	  flex-shrink: 0;
	}
	
	.objetivos li span {
	  line-height: 1.5em;
	}
	
	@media (min-width: 768px) {
	  .contenido-participa {
		flex-direction: row;
		align-items: flex-start;
		justify-content: center;
	  }
	
	  .imagen {
		flex: 1;
	  }
	
	  .objetivos {
		flex: 1;
	  }
	}
	
	
	/* programa  */
	
	.container-programa {
	  margin: 0 auto;
	  padding: 40px 20px;
	  font-family: 'Segoe UI', sans-serif;
	  color: #fff;
	  margin-left:35px;

	}
	
	.programa-dia {
	  color: #00b873;
	  font-size: 1.2rem;
	  margin-bottom: 1rem;
	  border-bottom: 1px solid #3a3a3a;
	  padding-bottom: 0.5rem;
	}
	
	.bloque-hora {
	  display: flex;
	  align-items: flex-start; 
	  flex-direction: row;
	  gap: 16px;
	  border-bottom: 1px solid #222;
	  padding: 12px 0;
	}
	
	.hora {
	  width: 100px;
	  color: #a0a0a0;
	  font-weight: 500;
	  flex-shrink: 0;
	}
	
	.hora,
	.contenido-programa{
	  margin-top: 0;         
	  padding-top: 0;       
	}
	
	.contenido-programa p {
	  margin-top: 0;         
	}
	
	.contenido-programa {
	  flex: 1;
	  font-size: 0.95rem;
	}
	
	.contenido-programa strong {
	  color: #fff;
	}
	
	.ponente {
	  color: #5fb5c3;
	  font-weight: 400;
	  font-size: 0.9rem;
	}
	
	.keynote strong {
	  color: #00b8c9;
	}
	
	.pausa strong {
	  color: #ffc857;
	}
	
	/* Responsive: Stack rows */
	@media (max-width: 600px) {
	  .bloque-hora {
		flex-direction: column;
	  }
	
	  .hora {
		width: auto;
	  }
	}
	
	/* talleres */ 
	
.talleres-contenedor {
	  max-width: 960px;
	  width: 100%;
	}
	
	.talleres-section {
	  margin: 60px auto;
	  max-width: 1000px;
	  padding: 20px;
	}
	
	.talleres-section h2 {
	  text-align: center;
	  margin-bottom: 20px;
	  font-size: 1.8rem;
	  font-weight: 700;
	  color: #fff;
	}
	
	/* Tabla base */
	.talleres-table {
	  width: 100%;
	  border-collapse: collapse;
	  background-color: transparent; /* Evita problemas en Safari */
	}
	
	.talleres-table thead th {
	  color: #ffc857;
	  font-weight: 700;
	  text-align: left;
	  padding: 14px 16px;
	  border-bottom: 2px solid #ffc857;
	  background: transparent;
	}
	
	.talleres-table td {
	  padding: 14px 16px;
	  border-bottom: 1px solid #333;
	  color: #ddd;
	  font-size: 0.95rem;
	  box-sizing: border-box; /* Fix Safari */
	}
	
	.talleres-table tr:last-child td {
	  border-bottom: none;
	}
	
	/* Botón */
	.btn-inscripcion {
	  background: #1eb9be;
	  color: #000;
	  font-weight: bold;
	  border: none;
	  padding: 8px 14px;
	  border-radius: 6px;
	  cursor: pointer;
	  text-decoration: none;
	  transition: all 0.3s ease;
	  display: inline-block;
	  text-align: center;
	}
	.btn-inscripcion:hover {
	  background: #00cce0;
	}
	
	/* --- Responsive: tarjetas en móvil --- */
	@media (max-width: 768px) {
	  .talleres-table thead {
		display: none;
	  }
	
	  .talleres-table,
	  .talleres-table tbody,
	  .talleres-table tr,
	  .talleres-table td {
		display: block;
		width: 100%;
	  }
	
	  .talleres-table tr {
		margin-bottom: 20px;
		border: 1px solid #333;
		border-radius: 8px;
		overflow: hidden;
		background: #0b0f14;
		box-shadow: 0 2px 6px rgba(0,0,0,0.25);
	  }
	
	  .talleres-table td {
		border: none;
		padding: 12px;
		text-align: left;
		position: relative;
		color: #ddd;
		font-size: 0.95rem;
	  }
	
	  .talleres-table td::before {
		content: attr(data-label) " "; /* Fix Safari */
		font-weight: 700;
		color: #ffc857;
		display: block;
		margin-bottom: 4px;
		font-size: 0.85rem;
		text-transform: uppercase;
	  }
	
	  .talleres-table td:last-child {
		text-align: center;
		margin-top: 10px;
	  }
	}

/* --- arreglo talleres ***** --- */
	@supports (-webkit-touch-callout: none) {
	  @media (max-width: 768px) {
		.talleres-table tr {
		  display: flex;
		  flex-direction: column; /* fuerza el stack */
		}
	
		.talleres-table td {
		  word-break: break-word; /* evita cortes feos */
		  -webkit-text-size-adjust: 100%; /* evita zoom raro en iPhone */
		}
	
		.talleres-table td::before {
		  display: inline-block; /* a veces en Safari no pinta bien block */
		  margin-bottom: 6px;
		}
	  }
	}
	
	👉 Con este @supports (-webkit-touch-callout: none) solo se aplicarán esos ajustes en Safari móvil (iOS).
	
	¿Quieres que además te deje preparado un modo debug visual (colores de fondo diferentes en Safari iOS) para comprobar fácilmente si está entrando ese bloque en el iPhone 14 Pro?
	


	 
	
	/* Footer */
	.footeruno-organiza {
	  max-width: 960px;
	  margin: 0 auto;
	  padding: 2rem 1rem;
	}
	
	.footeruno-blocks {
	  display: flex;
	  justify-content: space-between;
	  gap: 2rem;
	  flex-wrap: wrap;
	}
	
	.footeruno-block {
	  flex: 1 1 100%;
	  text-align: center;
	}
	
	@media (min-width: 768px) {
	  .footeruno-block {
		flex: 1 1 45%;
		text-align: left;
	  }
	}
	
	.footeruno-block h3 {
	  font-size: 1rem;
	  font-weight: 500;
	  margin-bottom: 1.2rem;
	  color:#fff;
	}
	
	.logosfooteruno {
	  display: flex;
	  gap: 2rem;
	  flex-wrap: wrap;
	  align-items: center;
	  justify-content: center;
	}
	
	.logosfooteruno.single {
	  justify-content: center;
	}
	
	@media (min-width: 768px) {
	  .logosfooteruno {
		justify-content: flex-start;
	  }
	
	  .logosfooteruno.single {
		justify-content: flex-start;
	  }
	}
	
	.logosfooteruno img {
	  max-height: 90px;
	  max-width: 100%;
	  object-fit: contain;
	}
	
	.footeruno-divider {
	  border-top: 1px solid #444;
	  margin-top: 2rem;
	}
	
	.textobajofooter {
	  color: #cfd8e3;
	  font-size: 0.95rem;
	  text-align: right;
	  max-width: 960px;
	  margin: 2rem auto;
	  padding: 0 1rem;
	  line-height: 1.5;
	  font-family: 'Segoe UI', sans-serif;
	}
	
	@media (max-width: 600px) {
	  .textobajofooter {
		text-align: center;
	  }
	}
	
	/*footer principal*/
	
	
	
	.contenedor-footer2 {
		margin: 0 auto; 
	}
	
	
	.main-footer {
		color: #fff;
		padding: 60px 0px;
		display: flex; 
		flex-wrap: wrap;
		justify-content: space-between; 
		align-items: flex-start; 
		gap: 30px; 
	}
	
	.footer-column {
		flex: 1; 
		min-width: 180px;
	}
	
	
	.footer-logo-column {
		flex-basis: 300px; 
		max-width: 350px; 
	}
	
	.footer-logo {
		max-height: 150px;
		max-width: 100%;
		object-fit: contain;
		color: #fff;
		margin-top:0px;
		padding-top:0px;
		
	}
	
	.footer-text {
		font-size: 0.85em; 
		line-height: 1.4; 
		margin-top: 0;
		margin-bottom: 5px;
	}
	
	.footer-links-column ul {
		list-style: none; 
		padding: 0; 
		margin: 0;
	}
	
	.footer-links-column li {
		margin-bottom: 10px; 
	}
	
	.footer-links-column a {
		color: #fff;
		text-decoration: none;
		font-size: 0.95em;
		transition: color 0.3s ease; 
	}
	
	.footer-links-column a:hover {
		color: #aaa; 
	}
	

	@media (max-width: 768px) {
		.main-footer {
			flex-direction: column; 
			align-items: center; 
			padding: 40px 20px;
		}
	
		.footer-column {
			width: 100%; 
			margin-bottom: 30px; 
			text-align: center; 
			min-width: unset; 
		}
	
		.footer-logo-column {
			max-width: 100%; 
			flex-basis: auto;
		}
	
		.footer-logo {
			font-size: 2.8em;
		}
	
		.footer-links-column ul {
			text-align: center; 
		}
	}

	@media (max-width: 480px) {
		.main-footer {
			padding: 30px 15px; 
		}
		.footer-logo {
			font-size: 2.2em; 
		}
	}
	
	
	/* Responsive ajustes */
	@media (max-width: 1100px) {
	 
	}
	@media (max-width: 800px) {
	  .patrocinio-cards {
		flex-direction: column;
		align-items: center;
	  }
	  .footer-logos {
		flex-direction: column;
		gap: 24px;
	  }
	  /* Menú móvil */
	  .menu-links {
		position: fixed;
		top: var(--menu-height);
		right: 0;
		background: rgba(20, 20, 20, 0.95);
		height: calc(100vh - var(--menu-height));
		width: 220px;
		flex-direction: column;
		padding-top: 30px;
		gap: 24px;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		border-radius: 0 0 0 12px;
	  }
	  .menu-links.open {
		transform: translateX(0);
	  }
	  .menu-toggle {
		display: flex;
	  }
	}


	  section {
		padding: 60px 5vw 30px 5vw;
	  }
	  .form-section {
		padding: 22px 6vw 16px 6vw;
	  }
	  .menu-content {
		padding: 0 4vw;
	  }
	  .footer-col img {
		width: 60px;
	  
	}
	
	@media (max-width: 600px) {
	  section {
	  margin: 0 auto;
	  padding: 5px 5vw 5px 5vw; 
      }
	}
	
	/* Separador */
	.separador-patro {
	  border: none;
	  margin: 50px auto 0 auto;
	  width: 90%;
	}