@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
.footer__imagen img, .scroll-image {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.footer__imagen img, .scroll-image.show {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 50px;
  right: 50px;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  animation: heartbeat 1.5s infinite;
  /* Aplica la animación heartbeat */
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Animación heartbeat */
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* Estilo base para los elementos que tendrán la animación */
.heartbeat {
  display: inline-block;
  animation: heartbeat 1s infinite;
}

.matricula-float {
  position: fixed;
  bottom: 40px;
  left: 50px;
  font-size: 14px;
  background-color: red;
  transition: transform 0.3s ease-in-out;
  animation: heartbeat 1.5s infinite;
  /* Aplica la animación heartbeat */
  width: 150px;
  height: 50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-family: Arial, sans-serif;
  z-index: 9;
  border: none;
}
.matricula-float a {
  color: white;
  text-decoration: none;
}

.matricula-float:hover {
  transform: scale(1.1);
}

.box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 1.5rem;
  width: 100%;
  padding-top: 0.75rem;
  border-radius: 0.5rem;
}
.box .input__wrapper {
  position: relative;
  padding: 1rem 0 0;
  margin: 0 auto;
  width: 100%;
}
.box .input__field {
  outline: 1.5px solid #1a341a;
  font-size: 1.5rem;
  border-radius: 0.25rem;
  color: black;
  padding: 1.2rem;
  border: none;
  padding-right: 2rem;
  background: transparent;
  transition: all 0.2s;
  width: 100%;
}
.box .input__field::placeholder {
  color: transparent;
}
.box .input__field:placeholder-shown ~ .input__label {
  font-size: 1.5rem;
  cursor: text;
  color: #6b6b6b;
  top: 1.5rem;
}
.box label,
.box .input__field:focus ~ .input__label {
  position: absolute;
  top: 0.375rem;
  padding: 0 0.25rem;
  background-color: white;
  display: block;
  font-size: 1rem;
  left: 0.5rem;
  color: #989898;
  transition: 0.3s;
}
.box .input__field:focus ~ .input__label {
  color: #07a812;
}
.box .input__field:focus {
  outline: 1.5px solid #07a812;
}
@media (max-width: 768px) {
  .box .box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

/* Botón inicial de apertura del chat */
#chat-icon {
  font-size: 24px;
  width: 250px;
  height: 50px;
  background-color: #2dab26;
  color: white;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 40px;
  right: 40px;
  cursor: pointer;
  padding: 0 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-family: Arial, sans-serif;
  z-index: 9;
}

#chat-icon span {
  font-size: 16px;
}

#chat-icon:hover {
  background-color: #118e0b;
}

/* Timestamp Styles */
.timestamp {
  font-size: 9px;
  color: #888888;
  text-align: right;
  margin-top: 1px;
}

/* Contenedor principal del chat */
.chat-container {
  width: 500px;
  height: 500px;
  background-color: #f4f6f8;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
  overflow: hidden;
  z-index: 9;
}

/* Ocultar el contenedor del chat cuando tenga la clase "hidden" */
.hidden {
  display: none;
}

/* Encabezado del chat */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #007bff;
  color: white;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.chat-header img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.chat-header span {
  flex-grow: 1;
}

/* Botón de cierre en el encabezado */
#close-chat-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
}

#close-chat-btn:hover {
  color: #ddd;
}

/* Chat Box */
.chat-box {
  padding: 15px;
  flex: 1;
  overflow-y: auto;
  background-color: #f9f9f9;
}

/* Bot and User Messages */
.bot, .user {
  max-width: 60%;
  margin: 8px 0;
  padding: 10px 15px;
  border-radius: 15px;
  word-wrap: break-word;
  line-height: 1.4;
  font-size: 14px;
  /* Ajuste de tamaño de fuente para mejorar legibilidad */
  display: inline-block;
  clear: both;
}

/* Mensajes del bot alineados a la izquierda */
.bot {
  background-color: #ececec;
  color: #333333;
  border-radius: 15px 15px 15px 3px;
  float: left;
  /* Alineación a la izquierda */
}

/* Mensajes del usuario alineados a la derecha */
.user {
  background-color: #d0d0d0;
  color: #2b2b2b;
  border-radius: 15px 15px 15px 15px;
  float: right;
  /* Alineación a la derecha */
}

/* Limpiar flotación para evitar solapamiento con botones */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Opciones del bot en contenedor independiente para evitar mezcla con mensajes */
.options-container {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-top: 10px;
  clear: both;
}

.options-container button {
  display: block;
  background-color: #1fbd4c;
  color: #ffffff;
  border: none;
  padding: 10px;
  margin: 5px 7px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s;
  width: 100%;
  font-size: 14px;
}

.options-container button:hover {
  background-color: #258a49;
}

/* Input Container */
.input-container {
  display: flex;
  border-top: 1px solid #ddd;
}

.input-container input, .input-container button {
  padding: 10px;
  font-size: 14px;
}

#user-input {
  flex: 1;
  border: none;
  outline: none;
  background-color: #ffffff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

/* Animación de aparición de mensajes */
.message {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.3s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsividad */
@media (max-width: 768px) {
  .chat-container {
    width: 90%;
    right: 5%;
    bottom: 10px;
  }

  .chat-icon {
    width: auto;
    right: 10px;
  }

  .chat-header span {
    font-size: 14px;
  }
}
#chat-input-container {
  display: flex;
  align-items: center;
  gap: 8px;
  /* Espacio entre el campo de texto y el botón */
}

#user-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 14px;
}

#send-btn {
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  font-size: 16px;
}

.input-error {
  border: 2px solid red;
  background-color: #ffe6e6;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  box-sizing: border-box;
  font-size: 52.5%;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

/* Contenedor principal */
.contenedor-notfound {
  width: 100%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Títulos */
.contenedor-notfound h1 {
  font-size: 2.5rem;
  color: #e74c3c;
  margin-bottom: 10px;
}

.contenedor-notfound h2 {
  font-size: 1.8rem;
  color: #555;
  margin-bottom: 20px;
}

/* Información de contacto */
.not_found {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info_found {
  margin: 20px 0;
}

.info_title_found img {
  width: 120px;
  margin-bottom: 15px;
}

.info_items_found {
  margin-top: 10px;
}

.info_items_found p {
  font-size: 1rem;
  color: #555;
  margin: 5px 0;
}

.info_items_found p a {
  color: #e74c3c;
  text-decoration: none;
}

.info_items_found p a:hover {
  text-decoration: underline;
}

/* Imagen de página no encontrada */
.info_title_found picture img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* Botón */
.boton_found {
  margin-top: 20px;
}

.boton_notfound {
  display: inline-block;
  padding: 10px 25px;
  background-color: #e74c3c;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.boton_notfound:hover {
  background-color: #c0392b;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .contenedor-notfound {
    padding: 15px;
  }

  .contenedor-notfound h1 {
    font-size: 2rem;
  }

  .contenedor-notfound h2 {
    font-size: 1.4rem;
  }

  .info_items_found p {
    font-size: 0.9rem;
  }

  .boton_notfound {
    padding: 8px 20px;
  }
}
/* General Styles */
h1, h2 {
  text-align: center;
  color: #333;
  font-size: 5em;
  font-family: Georgia, times new roman, Times, serif;
  font-weight: 400;
}

.contenedor {
  width: 90%;
  margin: 0 auto;
}

.centro {
  text-align: center;
}

/* Form Styles */
.formulario {
  background-color: #f4f4f4;
  padding: 55px;
  margin-bottom: 30px;
}

.contenedor-campos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.campo__label {
  font-family: Georgia, times new roman, Times, serif;
  font-size: 14px;
  margin-bottom: 20px;
}

.campo__field {
  margin: 10px 0;
  width: 100%;
  height: 40px;
  padding: 0.5rem;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.campo:last-child {
  grid-column: span 2;
}

.campo__field--textarea {
  height: 150px;
}

.alinear-derecha {
  text-align: center;
}

.boton {
  margin: 0 auto;
  color: #000000;
  border: 2px solid green;
  width: 50%;
  max-width: 100%;
  padding: 2rem 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 5px;
  font-size: 20px;
}

.boton:hover {
  background-color: #00aa00;
  color: #f4f4f4;
}

/* Error Styles */
.alerta {
  width: 40%;
  margin: 0 auto;
  background-color: #f8d7da;
  color: #721c24;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  font-size: 1.8rem;
}

.error {
  border: 1px solid #f5c6cb;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contenedor {
    width: 100%;
    padding: 0 1rem;
  }

  .contenedor-campos {
    display: block;
  }

  .boton {
    width: 100%;
  }
}
.mensaje-exito {
  text-align: center;
  margin-top: 50px;
}
.mensaje-exito p {
  font-size: 1.8rem;
}

.icono-tick {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background-color: #4CAF50;
  border-radius: 50%;
  position: relative;
  animation: tickAnimation 1s ease-in-out forwards;
}

.icono-tick::before, .icono-tick::after {
  content: "";
  position: absolute;
  background-color: white;
  display: block;
  border-radius: 2px;
}

.icono-tick::before {
  width: 10px;
  height: 50px;
  left: 32.1px;
  top: 15px;
  transform: rotate(45deg) scaleY(0);
  transform-origin: bottom;
  animation: checkAnimation1 0.8s 1.2s forwards;
}

.icono-tick::after {
  width: 10px;
  height: 25px;
  left: 20.4px;
  top: 47px;
  transform: rotate(-45deg) scaleY(0);
  transform-origin: top;
  animation: checkAnimation2 0.7s 0.7s forwards;
}

.boton-enviar-otro {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.boton-enviar-otro:hover {
  background-color: #45a049;
}

@keyframes tickAnimation {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes checkAnimation1 {
  to {
    transform: rotate(45deg) scaleY(1);
  }
}
@keyframes checkAnimation2 {
  to {
    transform: rotate(-45deg) scaleY(1);
  }
}
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #3498db;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cursos {
  padding: 40px 0;
  background-color: #f7f7f7;
}

.contenedor_cursos {
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.curso-item {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  padding: 30px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.3s;
}
.curso-item h2 {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: -0.5px;
  margin-top: 0;
  text-align: left;
}
.curso-item h3 {
  font-size: 16px;
  text-align: center;
}

.curso-item:hover {
  background-color: #f9f9f9;
}

.curso-imagen img {
  flex: 1;
  width: 100%;
  height: 23rem;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.9;
}

.titulo_cursos {
  flex: 2;
}
.titulo_cursos p {
  font-size: 1.5rem;
}
.titulo_cursos li {
  font-size: 1.8rem;
  padding: 1rem 1rem 1rem 0;
  list-style-type: none;
  font-weight: bold;
}
.titulo_cursos .fecha_cb {
  font-weight: normal;
  padding: 15px;
  font-size: 2rem;
}
.titulo_cursos:nth-child(n+2) {
  padding: 0 40px;
}
.titulo_cursos:nth-child(n+3) p {
  text-align: center;
  font-size: 2rem;
}
.titulo_cursos:nth-child(n+3) p span {
  font-size: 3rem;
  font-weight: bold;
}
.titulo_cursos:nth-child(3) {
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

.boton-detalle {
  display: inline-block;
  font-size: 2em;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.boton-detalle:hover {
  background-color: #0056b3;
}

.curso-sedes {
  text-align: center;
  margin-top: 20px;
}

#sede-select {
  background-color: #f9f9f9;
  width: 100%;
  text-align: center;
  border: none;
}

#fecha-curso p {
  text-align: center;
}

#fecha {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
}
#fecha ul {
  margin: 0;
  padding: 0;
}
#fecha ul li {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .curso-item {
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
  }
  .curso-item h2 {
    text-align: center;
  }

  .curso-imagen img {
    width: 100%;
    margin-bottom: 10px;
  }

  .titulo_cursos h3, .info_cursos {
    text-align: center;
    margin: 5px 0;
  }

  .titulo_cursos {
    margin-bottom: 30px;
  }
  .titulo_cursos:nth-child(3) {
    padding: 30px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-left: none;
    border-right: none;
  }
}
.carousel {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
}

.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.controls span {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.controls span:hover {
  background: rgba(0, 0, 0, 0.7);
}

.info-index h1 {
  font-family: nunito sans, Arial, sans-serif;
  font-size: 5rem;
  font-weight: 400;
  text-align: center;
}

.info-index p {
  font-family: nunito sans, Arial, sans-serif;
  font-size: 2rem;
  line-height: 30px;
  margin-left: 10%;
  width: 80%;
  text-align: center;
  color: #605454;
}

@media (max-width: 768px) {
  .info-index h1 {
    font-size: 30px;
  }

  .info-index p {
    font-size: 15px;
    text-align: justify;
    line-height: 20px;
  }

  .carousel {
    aspect-ratio: 16/9;
  }
}
/* Responsividad para pantallas pequeñas */
@media screen and (max-width: 768px) {
  .slide {
    height: 300px;
    /* Cambia la altura para pantallas más pequeñas */
  }

  .controls span {
    font-size: 1.5rem;
    /* Ajusta el tamaño de los controles */
    padding: 8px;
  }
}
@media screen and (max-width: 480px) {
  .slide {
    height: 200px;
    /* Aún más pequeño para dispositivos móviles */
  }

  .controls span {
    font-size: 1.2rem;
    /* Controles más pequeños */
    padding: 5px;
  }
}
.features {
  background-color: #ffffff;
  padding: 50px 0;
}

.features h2 {
  font-family: nunito sans, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: inherit;
  text-rendering: optimizeLegibility;
  text-align: center;
  font-size: 38px;
  margin-bottom: 33px;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.feature {
  text-align: center;
}

.bubble {
  display: inline-block;
  background: #17b70e;
  background: radial-gradient(circle, rgba(23, 183, 14, 0.7344187675) 48%, #19e330 100%);
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  font-size: 18px;
  margin: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  width: 300px;
  /* Ancho fijo para asegurar círculos */
  height: 300px;
  /* Alto fijo para asegurar círculos */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.number {
  font-family: nunito sans, Arial, sans-serif;
  font-size: 66px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: initial;
}

.text {
  font-family: nunito sans, Arial, sans-serif;
  font-size: 24px;
}

@media (max-width: 768px) {
  .features {
    padding: 20px 0;
  }

  .container {
    flex-direction: column;
  }
}
/* Animation on scroll */
.show {
  opacity: 1;
  transform: translateY(0);
}

/* MV Section Styles */
.mv-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 40px 0;
}

.mv-box {
  width: 100%;
  background-color: #fff;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mv-box.mission, .mv-box.vision {
  flex-direction: row-reverse;
  text-align: left;
}

.mv-box.vision {
  flex-direction: row;
}

.mv-content {
  flex: 1;
  padding: 20px;
}

.mv-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}

.scroll-image {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

.mv-box h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 25px;
}

.mv-box p, .mv-box ul {
  color: #666;
  font-size: 15px;
  text-align: justify;
  line-height: 25px;
}

.mv-box ul {
  list-style-type: none;
  padding: 0;
}

.mv-box ul li {
  margin: 5px 0;
}

/*Sección Valores*/
.values-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  background-color: #ffffff;
  font-family: "Arial", sans-serif;
}

.values-title {
  margin-bottom: 30px;
}

.values-title h2 {
  font-size: 3.5em;
  color: #333;
  text-align: center;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
}

.value {
  background-color: #4caf50;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 1.8em;
  flex: 1 1 150px;
  /* Ensures the items are flexible and responsive */
  min-width: 200px;
  /* Ensures the items don’t get too small */
  transition: transform 0.3s;
}

.value:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .values-grid {
    flex-direction: column;
    align-items: center;
  }

  .value {
    flex: 1 1 100%;
  }

  .mv-image {
    display: none;
  }
}
/* Team Section Styles */
.team-section {
  background-color: #fff;
  padding: 40px 0;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.team-member {
  text-align: center;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  margin-bottom: 10px;
  color: #333;
}

.team-member p {
  color: #666;
}

/* History Section Styles */
.history-section {
  background-color: #f9f9f9;
  padding: 40px 0;
}

.history-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.history-section p {
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
  color: #666;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .container_nos {
    flex-direction: column;
    width: 90%;
  }

  .mv-box {
    flex-direction: row;
    text-align: left;
  }

  .mv-box.mission {
    flex-direction: row-reverse;
  }

  .mv-box.vision {
    flex-direction: row;
  }

  .mv-box, .mv-content {
    text-align: left;
  }
}
/* Estilos básicos para el contenedor */
.card2 {
  width: 80%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Estilos para el acordeón */
.accordion {
  color: #000000;
  cursor: pointer;
  padding: 18px 24px;
  border: none;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  position: relative;
}

/* Icono para indicar el estado del acordeón (abierto/cerrado) */
.accordion::after {
  content: "▼";
  /* Triángulo hacia abajo */
  font-size: 12px;
  transition: transform 0.3s ease;
}

.accordion.active::after {
  transform: rotate(180deg);
  /* Rotar el triángulo */
}

/* Estilos para el panel oculto */
.panel {
  padding: 0 24px;
  background-color: #f9f9f9;
  max-height: 0;
  /* Oculto inicialmente */
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 2rem;
  color: #333;
}

/* Mostrar el panel con una transición suave */
.panel.show {
  padding: 18px 24px;
  max-height: 200px;
  /* Puedes ajustar según el contenido */
  text-align: justify;
}

/* Hover efecto para el acordeón */
.accordion:hover {
  background-color: #dcf3fe;
}

.card {
  width: 90%;
  margin: 0 auto;
  padding: 35px 0px;
}

.card__principal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.sombra1 {
  background: white;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}
.sombra1 p {
  font-size: 1.5em;
}

.sombra1:hover {
  transform: scale(1.05);
}

.picture img {
  width: 100%;
  height: auto;
  display: block;
}

.nombre__sede {
  font-size: 2.5em;
  margin: 10px 0;
}

hr {
  margin: 10px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.hero__general {
  padding: 20rem 0;
}

.hero {
  background: url("/build/img/map1.png") no-repeat center center/cover;
}

/* Section Hero */
.hero__pf {
  background: url("/build/img/preguntas-frecuentes-1.png") no-repeat center center/cover;
}

.hero__cursos {
  background: url("/build/img/Cursos/fondo_cursos.png") no-repeat center center/cover;
}

.hero__ {
  background: url("/build/img/sedes/puntaarenas/puntaarenas.png") no-repeat center center/cover;
}

.hero__general h1 {
  font-size: 5rem;
  text-transform: uppercase;
}

.hero__general h2 {
  font-size: 2.5rem;
}

.hero__general h1, .hero__general h2 {
  margin: 0.5rem 0;
  color: #fff;
  text-align: center;
}

.contenedor-hero {
  background-color: rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  padding: 5px;
  width: 40%;
}

/* Container */
.contenedor {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Info Section */
.info {
  flex: 2;
  min-width: 300px;
  padding: 2.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info p {
  margin: 0.5rem 0;
  color: #555;
  font-size: 1.6rem;
}

.info p strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  color: #0056b3;
}

.info i {
  color: #0056b3;
  margin-right: 0.5rem;
}

/* Map Section */
.mapa iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mapa h2 {
  font-size: 30px;
}

/* Media Queries */
@media (max-width: 768px) {
  .contacto__principal {
    flex-direction: column;
    align-items: center;
  }

  .info {
    margin-top: 2rem;
  }

  .hero__general {
    padding: 8rem 0;
  }

  .contenedor-hero {
    width: 80%;
  }
  .contenedor-hero h1 {
    font-size: 3rem;
  }
  .contenedor-hero h2 {
    font-size: 2.5rem;
  }
}
/* Blog Slider */
.blog-slider {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.blog-slider__wrp {
  overflow: hidden;
}

.blog-slider__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.blog-slider__item:hover {
  transform: scale(1.05);
}

.blog-slider__img {
  width: 200px;
  margin-right: 20px;
}

.blog-slider__img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.blog-slider__content {
  flex: 2;
}

.blog-slider__code {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #999;
}

.blog-slider__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-slider__text {
  font-size: 16px;
  margin-bottom: 20px;
}

.contact-buttons {
  display: flex;
  gap: 10px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #007bff;
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.3s;
}

.contact-button:hover {
  background-color: #0056b3;
}

.contact-button svg {
  width: 24px;
  height: 24px;
}

/* Info Section */
.info {
  background-color: #c4dffc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.info p {
  margin: 0 0 10px;
}

@media (max-width: 768px) {
  .blog-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    background-color: #f7f7f7;
  }

  .blog-slider__wrp {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .blog-slider__item {
    display: flex;
    flex-direction: column;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px;
    max-width: 350px;
    width: 100%;
  }

  .blog-slider__img img {
    width: 100%;
    height: auto;
    border-bottom: 5px solid #1c1fff;
  }

  .blog-slider__content {
    padding: 20px;
    text-align: center;
  }

  .blog-slider__code, .blog-slider__title, .blog-slider__text {
    margin-bottom: 15px;
  }

  .blog-slider__title {
    font-size: 2.5em;
    color: #333;
  }

  .blog-slider__text {
    color: #777;
  }

  .contact-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1c1fff;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .contact-button:hover {
    background: #1518c1;
  }

  .info {
    padding: 20px;
    min-width: 90%;
    text-align: center;
  }

  .blog-slider__item {
    max-width: 100%;
  }
}
/* Estilo general */
.card_cursos {
  margin: 20px auto;
  max-width: 1200px;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card_cursos h3 {
  text-align: center;
  font-size: 2rem;
}

.horarios__cursos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sombra3 {
  background-color: #007bff;
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  flex: 1 1 30%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.sombra3:hover {
  transform: scale(1.05);
}

.sombra3 .back {
  padding: 10px;
  border-radius: 8px;
  color: #fff;
}

.sombra3 h3 {
  font-size: 2em;
}

.sombra3 h2 {
  font-size: 2.5em;
  color: #ffffff;
  margin: 0;
  font-weight: bold;
}

/* Responsividad */
@media (max-width: 768px) {
  .horarios__cursos {
    flex-direction: column;
  }

  .sombra3 {
    flex: 1 1 100%;
  }
}
/* Estilos generales para los modales */
.modal {
  display: none;
  /* Oculto por defecto */
  position: fixed;
  z-index: 100;
  /* Asegura que esté sobre otros elementos */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Fondo oscuro semi-transparente */
  overflow: auto;
  /* Permite el desplazamiento si el contenido es demasiado largo */
}

/* Contenido del modal */
.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  /* Centrado en la pantalla */
  padding: 30px;
  border: 1px solid #888;
  width: 90%;
  /* Ancho del modal */
  max-width: 800px;
  /* Máximo ancho del modal */
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-height: 80vh;
  /* Limita la altura del modal a un 80% de la altura de la ventana */
  overflow-y: auto;
  /* Agrega scroll vertical si el contenido excede la altura */
}
.modal-content h2 {
  font-size: 2.2rem;
  font-weight: bold;
}
.modal-content p {
  text-align: left;
  font-size: 2rem;
  line-height: 3rem;
}

/* Botón para cerrar el modal */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    /* Mayor ancho en dispositivos móviles */
    margin: 20% auto;
    /* Ajusta el margen para mayor centrado */
    max-height: 90vh;
    /* Aumenta el máximo de altura para pantallas móviles */
    padding: 20px;
    /* Reduce el padding para dispositivos más pequeños */
  }
  .modal-content h2 {
    font-size: 2rem;
    font-weight: bold;
  }
  .modal-content p {
    font-size: 1.6rem;
  }
}
header {
  background: #ffffff;
  color: #000000;
  padding: 10px 0;
}

.barra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
}

.logo img {
  max-width: 150px;
  /* Tamaño máximo del logo */
  width: 100%;
  /* Asegura que el logo se reduzca automáticamente */
  height: auto;
  /* Mantiene la proporción del logo */
  transition: max-width 0.3s ease;
  /* Transición suave para el cambio de tamaño */
}

.navegacion {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.nav-links {
  position: relative;
  /* Importante para anidar correctamente los pseudo-elementos */
}
.nav-links a {
  position: relative;
  /* Asegura que los pseudo-elementos se posicionen correctamente */
  color: #000000;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: bold;
  transition: color 0.3s ease;
  padding: 10px;
  /* Estilo para el pseudo-elemento superior */
  /* Estilo para el pseudo-elemento inferior */
  /* Efecto hover para ambos pseudo-elementos */
}
.nav-links a:before {
  content: "";
  position: absolute;
  top: 0;
  /* Posición en la parte superior del enlace */
  left: 0;
  width: 100%;
  height: 2px;
  background: #000000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  /* Transición para suavidad */
  transform-origin: left;
  /* Origen de la transformación a la izquierda */
}
.nav-links a:after {
  content: "";
  position: absolute;
  bottom: 0;
  /* Posición en la parte inferior del enlace */
  left: 0;
  width: 100%;
  height: 2px;
  background: #000000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  /* Transición para suavidad */
  transform-origin: right;
  /* Origen de la transformación a la derecha */
}
.nav-links a:hover:before, .nav-links a:hover:after {
  transform: scaleX(1);
  /* Se expande completamente al hacer hover */
}

.boton_contacto a {
  background-color: green;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 15px;
  color: white;
  text-decoration: none;
}
.boton_contacto a:hover {
  background-color: #066906;
}

.mobile-menu {
  display: none;
}

.contact {
  display: none;
}

.fijo {
  width: 100%;
  -webkit-box-shadow: 1px 8px 10px -4px rgba(0, 0, 0, 0.39);
  -moz-box-shadow: 1px 8px 10px -4px rgba(0, 0, 0, 0.39);
  box-shadow: 1px 8px 10px -4px rgba(0, 0, 0, 0.39);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .fijo {
    position: sticky;
    z-index: 1;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .logo img {
    max-width: 120px;
    /* Tamaño máximo del logo en pantallas pequeñas */
  }

  .mobile-menu {
    display: block;
    cursor: pointer;
  }

  .navegacion {
    display: none;
    /* Ocultar el menú de navegación por defecto */
    position: absolute;
    /* Fijar el menú a la posición relativa del header */
    top: 100%;
    /* Colocar el menú debajo del header */
    left: 0;
    right: 0;
    background-color: #fff;
    /* Color de fondo del menú */
    padding: 10px 0;
    /* Espacio interno del menú */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Sombra del menú desplegable */
    width: 100%;
  }

  .navegacion.active {
    display: flex;
    /* Mostrar el menú cuando se active */
    margin-top: 10px;
    align-items: center;
    /* Centrar los elementos horizontalmente */
  }

  .nav-links {
    flex-direction: row;
    /* Colocar los enlaces en una columna */
    gap: 10px;
    /* Espacio entre los enlaces */
  }

  .boton_contacto {
    display: none;
  }

  .contact {
    display: block;
    padding: 5px;
    border-radius: 10px;
  }
  .contact:hover {
    background-color: #e5e4e4;
  }
}
@media (min-width: 769px) {
  .nav-links {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }

  .nav-links li {
    margin: 0 30px;
  }
}
/* Modal container */
.modal_publi {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  /* Oculto inicialmente */
  pointer-events: none;
  /* Desactiva interacción */
  transition: opacity 1.5s ease-in-out;
  /* Transición más suave */
}

/* Cuando el modal_publi esté visible */
.modal_publi.show {
  opacity: 1;
  /* Aparece con la transición */
  pointer-events: auto;
  /* Activa la interacción */
}

/* Ocultar el modal_publi */
.modal_publi.hidden {
  opacity: 0;
  /* Oculto con transición */
  pointer-events: none;
  /* Desactiva interacción cuando oculto */
}

/* Modal_publi content */
.modal_publi img {
  margin: 5% auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
}

/* Close button */
.close_publi {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close_publi:hover,
.close_publi:focus {
  color: #bbb;
}

@media (max-width: 768px) {
  .modal_publi img {
    margin: 20% auto;
  }
}
.footer {
  background-color: #f6f9fc;
  color: #000000;
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
}

.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.footer__nav a {
  color: #000000;
  transition: transform 0.3s ease;
}

.footer__nav a:hover {
  transform: scale(1.1);
}

.footer__vl {
  border-left: 1px solid #000000;
  height: 24px;
  margin: 0 15px;
}

.footer__centro {
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
}

.footer__centro > div {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer__info h2, .footer__ayuda h2, .footer__nosotros h2 {
  font-size: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 2px solid #000000;
  display: inline-block;
}

.footer__info ul, .footer__ayuda ul, .footer__nosotros ul {
  list-style: none;
  padding: 0;
}

.footer__info ul li, .footer__ayuda ul li, .footer__nosotros ul li {
  margin-bottom: 20px;
}

.footer__info ul li p, .footer__ayuda ul li a, .footer__nosotros ul li a {
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__info ul li p:hover, .footer__ayuda ul li a:hover, .footer__nosotros ul li a:hover {
  color: #00aaff;
}

.footer__imagen {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer__imagen picture {
  margin: 10px;
  transition: transform 0.3s ease;
}

.footer__imagen picture:hover {
  transform: scale(1.1);
}

.footer__imagen img {
  object-fit: contain;
}

.footer__copyright {
  text-align: center;
  font-size: 14px;
  background-color: #fffefe;
  padding-top: 10px;
}
.footer__copyright a {
  text-decoration: none;
  color: #0a0a0a;
}

@media (max-width: 768px) {
  .footer__imagen {
    justify-content: space-around;
  }
}
.notification {
  font-size: 1.5rem;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #f44336;
  /* Rojo */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 1000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  animation: fadeOut 7s forwards;
  /* Animación para que se desvanezca */
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.notificacion {
  position: absolute;
  width: max-content;
  left: 0;
  right: 0;
  bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
  background-color: #313e2c;
  color: #aaec8a;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  animation: fade-in 3s linear;
  padding: 2rem;
  font-size: 2rem;
}

.notificacion_icon {
  height: 20px;
  width: 26px;
  margin-right: 4px;
}

.notificacion_body {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 8px;
}

.notificacion_progreso {
  position: absolute;
  left: 4px;
  bottom: 4px;
  width: calc(100% - 8px);
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(to right, #313e2c, #aaec8a);
  border-radius: inherit;
  animation: progress 2.5s 0.3s linear;
}

@keyframes fade-in {
  5% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  95% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes progress {
  to {
    transform: scaleX(1);
  }
}
@media (max-width: 769px) {
  .oculto {
    display: none;
  }
}

.nav-bg {
  position: fixed;
  width: 100%;
  z-index: 1;
  -webkit-box-shadow: 1px 8px 10px -4px rgba(0, 0, 0, 0.39);
  -moz-box-shadow: 1px 8px 10px -4px rgba(0, 0, 0, 0.39);
  box-shadow: 1px 8px 10px -4px rgba(0, 0, 0, 0.39);
}

.nav-bar-left {
  margin-top: 6.5rem;
  transition: width 0.5s;
  overflow: hidden;
  position: fixed;
  width: 250px;
  background-color: #fff;
  z-index: 0;
  height: 100%;
  -webkit-box-shadow: 1px 0px 5px -1px rgba(0, 0, 0, 0.61);
  -moz-box-shadow: 1px 0px 5px -1px rgba(0, 0, 0, 0.61);
  box-shadow: 1px 0px 5px -1px rgba(0, 0, 0, 0.61);
}
@media (max-width: 769px) {
  .nav-bar-left {
    display: none;
    margin-top: 6.5rem;
  }
}
.nav-bar-left ul {
  margin: 0;
  padding: 0;
}
.nav-bar-left ul li {
  font-size: 16px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  list-style: none;
  cursor: pointer;
  width: 100%;
  padding: 15px;
}
.nav-bar-left ul li:hover {
  background-color: lightgray;
}
.nav-bar-left ul li a {
  display: flex;
  /* Para alinear icono y texto */
  align-items: center;
  text-decoration: none;
}
.nav-bar-left ul li a:visited {
  color: #0000EE;
}
.nav-bar-left ul li a i {
  margin-right: 8px;
  /* Espacio entre el icono y el texto */
}

.minimizada {
  display: block;
  width: 50px;
  overflow-x: hidden;
  transition: 0.5s;
  border-right: 0.2px solid rgba(194, 194, 194, 0.37);
}
.minimizada ul ul li a {
  margin-left: 0px;
}
.minimizada ul button span {
  display: none;
}
.minimizada ul li a span {
  display: none;
}

.main_admin {
  margin-left: 250px;
  overflow-x: hidden;
  padding: 7rem 0;
}
.main_admin h3 {
  text-align: center;
  font-size: 2rem;
}
.main_admin .boton-fechas {
  display: none;
  text-align: center;
  margin: 2rem auto;
}

.lin {
  padding: 5px;
  cursor: pointer;
}
.lin #boton-toggle1 {
  margin-right: 40px;
}
.lin a {
  font-size: 20px;
  text-decoration: none;
}

.tipo-curso {
  text-align: center;
  font-size: 1.4rem;
  margin: 1rem;
}

#tipo-curso {
  border: solid 0.1px #bdbdbd;
  cursor: pointer;
  padding: 2rem;
}

@media (max-width: 769px) {
  .main_admin {
    margin-left: 0;
  }
}
.max_w {
  overflow-x: hidden;
  transition: 0.5s;
  margin-left: 50px;
}

.lad a {
  color: red;
}

.news {
  margin: 0 auto;
  width: 80%;
}
.news th {
  padding: 1.25rem 1rem;
  font-size: 1.525rem;
  white-space: nowrap;
  color: #ffffff;
}
.news thead {
  background: #158832;
  font-size: 1.1rem;
}
.news td {
  padding: 0.75rem 1rem;
  border: solid 1px;
  font-size: 1.4rem;
  text-align: center;
}

.boton-publi {
  text-align: center;
  padding: 2rem;
}

.imagen_tabla {
  max-width: 100px;
  height: auto;
}

.icono-eliminar {
  color: red;
  cursor: pointer;
  background-color: white;
  border: none;
}

.boton-editar {
  color: #25b903;
  cursor: pointer;
}

.consultas {
  margin: 0 auto;
}

.contenido_consulta {
  text-align: center;
  font-size: 2rem;
}

.admin_index {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.infor {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  margin: 5%;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infor:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.infor p {
  margin: 0;
  font-size: 2rem;
  color: #333;
}

.infor p.numero {
  font-size: 8rem;
  font-weight: bold;
  color: #007bff;
  margin-top: 10px;
}

.infor hr {
  border: 0;
  height: 2px;
  background-color: #007bff;
  margin: 10px 0;
}

/* Responsivo */
@media (max-width: 600px) {
  .infor {
    padding: 15px;
    max-width: 90%;
  }

  .infor p {
    font-size: 1.8rem;
  }

  .infor p.numero {
    font-size: 6rem;
  }
}
.tabla-cursos {
  display: none;
}

#dashboard {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}
#dashboard p {
  font-size: 1.4rem;
}

canvas {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.imagen_crear {
  width: 200px;
  margin: 0 auto;
}

.linear {
  display: flex;
  text-align: center;
  justify-content: space-evenly;
  align-items: baseline;
  font-size: 1.5rem;
  flex-wrap: wrap;
}

:root {
  --primary: #2d59fa;
  --primary-hover: #0037ff;
  --bg: #F7F8F9;
  --secondary: #FEFFFF;
  --dropzone-bg: #fff;
  --gray: #D3D3D3;
  --border: #EDF1F3;
  --dropzone-border: #D4DCE6;
  --headline: #211E30;
  --text: #0a090c;
  --primary-text: #F2F7FE;
  --dropzone-over: #F2F7FE;
}

*::selection {
  background: var(--primary);
  color: var(--primary-text);
}

.dropzone-box {
  margin: 0 auto;
  height: 100%;
  border-radius: 1rem;
  min-width: 25rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 36rem;
  border: 1px solid var(--border);
  width: 100%;
  background: var(--dropzone-bg);
}

.dropzone-box h2 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--headline);
}

.dropzone-box p {
  text-align: center;
  font-size: 1.15rem;
  color: black;
}

.dropzone-area {
  padding: 1rem;
  position: relative;
  margin-top: 1.5rem;
  min-height: 16rem;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 2px dashed var(--dropzone-border);
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropzone-description {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}

.dropzone-area .file-info {
  font-size: 1.1rem;
}

.dropzone-area [type=file] {
  cursor: pointer;
  position: absolute;
  opacity: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.dropzone-area .file-upload-icon svg {
  height: 6rem;
  max-width: 6rem;
  width: 100%;
  margin-bottom: 0.5rem;
  stroke: var(--headline);
}

.dropzone-area:hover {
  background: var(--dropzone-over);
}

.dropzone--over {
  border: 2px solid var(--primary);
  background: var(--dropzone-over);
}

.form-section {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modol {
  margin: 0 3rem;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modol table, .modol1 {
  width: 100%;
  margin: 0 auto;
}

input[type=checkbox] {
  margin-right: 10px;
}

.campo__label {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .form-section {
    padding: 15px;
  }

  .linear {
    gap: 2rem;
  }

  .modol {
    text-align: center;
  }

  .dropzone-box, .modol {
    margin: 0 auto;
    margin-bottom: 15px;
    padding: 15px;
  }

  .dropzone-description {
    flex-direction: column;
    align-items: center;
  }
}
.campo span {
  font-size: 2rem;
}