@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Open+Sans:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100svh;
  color: #0a1d35 !important;
  font-family: "Open Sans", sans-serif;
}

/* Layout */
.mwidth-1440 {
  width: 97%;
  margin: 0 auto;
  max-width: 1440px;
}

.mwidth-500 {
  max-width: 500px;
}

.mheight-400 {
  max-height: 400px;
}

.w-fit {
  width: fit-content;
}

.w-100-md-unset {
  width: 100%;
}
@media (min-width: 768px) {
  .w-100-md-unset {
    width: unset !important;
  }
}
.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-60 {
  width: 60%;
}

.height-unset {
  height: unset !important;
}

.h-80 {
  height: 80%;
}

.h-400 {
  height: 400px;
}

/* Bloques */
.background-gris {
  background-color: #f6f6f6;
}

.background-gris-opacidad-5 {
  background-color: rgba(246, 246, 246, 0.5);
}

/*
/* Imagen fondo (móvil) */
/*
@media (orientation: portrait) {
  .img-background-cover-center {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: auto;
    transform: translateX(-50%);
    z-index: -1;
  }
}
/* Imagen fondo (escritorio) */
/*
@media (orientation: landscape) {
  .img-background-cover-center {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    object-fit: cover;
  }
}
*/

.img-background-cover-center {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  object-fit: cover;
}

.img-invertida {
  transform: scaleX(-1);
}

/* Espacios */
.pe-6 {
  padding-right: 4rem !important;
}

.ps-6 {
  padding-left: 4rem !important;
}

/* Buttons */
.btn-unstyled,
button.btn-unstyled,
a.btn-unstyled {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

/* Mixin button and links*/
/* Extends buttons and links */
.btn_empleo {
  margin: 1em;
}

.btn_empleo,
footer.footer .footer_top a,
footer.footer .footer_bottom a {
  text-decoration: none;
}
.btn_empleo:hover,
footer.footer .footer_top a:hover,
footer.footer .footer_bottom a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.cta,
button.cta,
a.cta,
.btn_categorias,
.btn-secundario {
  border-radius: 40px;
  padding: 0.5rem 1.5rem;
  font-size: 16px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
  text-align: center;
  background-color: #ffffff;
}
.cta:hover,
.btn_categorias:hover,
.btn-secundario:hover {
  color: #ffffff !important;
}

.cta,
button.cta,
a.cta {
  border: 1px solid #f03c02;
  color: #f03c02 !important;
  font-weight: 500;
}
.cta:hover,
button.cta:hover,
a.cta:hover {
  background-color: #f03c02;
  color: white !important;
}

.btn_categorias,
.btn-secundario {
  border: 1px solid #0a1d35;
  color: #0a1d35 !important;
}
.btn_categorias:hover,
.btn-secundario:hover {
  background-color: #0a1d35;
}
.btn_categorias a {
  color: #0a1d35 !important;
  text-decoration: none;
}
.btn_categorias a:hover {
  color: #ffffff !important;
}
.btn_categorias {
  font-size: 12px;
  padding: 0.25rem 0.75rem;
}
@media (min-width: 992px) {
  .btn_categorias {
    font-size: clamp(0.8125rem, 0.3973rem + 0.6696vw, 1rem);
    padding: 0.5rem 1.5rem;
  }
}

.btn_empleo {
  color: #263238;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #263238;
  border-radius: 20px;
  padding: 0.5em 0.5rem;
  gap: 16px;
  background-color: #ffffff;
}
.btn_empleo svg {
  width: 40%;
  height: auto;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 25px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #6c757d;
}

.slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: #6c757d;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  background-color: #f03c02;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.enlace-azul-oscuro {
  color: #0a1d35;
}

/* Textos */
.texto-resaltado {
  color: #f03c02 !important;
}

.tituloH1 {
  font-size: clamp(2.1875rem, 1.1161rem + 2.2321vw, 3.125rem);
  font-weight: 700;
}

.tituloH2 {
  font-size: clamp(1.25rem, 0.5357rem + 1.4881vw, 1.875rem);
  font-weight: 600;
}

.text-20 {
  font-size: clamp(0.9375rem, 0.5804rem + 0.744vw, 1.25rem);
  font-weight: 400;
  padding: 0 0.5em 0 0.5em;
}

.text-16 {
  font-size: 16px;
  font-weight: 500;
  padding: 0 0.5em 0 0.5em;
}

.text-13 {
  font-size: 13px;
  font-weight: 500;
  padding: 0 0.5em 0 0.5em;
}

.color-secundario {
  color: #263238 !important;
}

.color-terciario {
  color: #6c757d !important;
}

div.indicador {
  width: 3px;
  height: 30px;
  background-color: #f03c02;
}
div.indicador.height-60 {
  height: 60px;
}

.ul-list {
  margin-left: 1rem;
}
.ul-list li::marker {
  color: #f03c02;
}
.ul-list li.m-b-5 {
  margin-bottom: 2.5rem !important;
}

@media (orientation: portrait) {
  /* Header */
  header.header > * {
    padding: 0 1rem;
  }
}

@media (orientation: landscape) {
  /* Header */
  header.header > * {
    padding: 0 2rem;
  }
}

header.header nav.menu-contacto {
  background-color: #122e3c;
  color: #ffffff;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
header.header nav.menu-contacto ul.navbar-nav li.nav-item::after {
  content: "|";
}
header.header nav.menu-contacto ul.navbar-nav li.nav-item:last-of-type::after {
  content: unset;
}

.menu-principal {
  z-index: 999;
}

header.header nav.menu-principal {
  padding: 1rem 0;
}
header.header nav.menu-principal .nav-item.active a.nav-link {
  color: #f03c02 !important;
}

/* Cabecera */
section.cabecera {
  min-height: 85vh;
  position: relative;
}

section.cabecera .cabecera_info {
  bottom: 0;
  left: 0;
  width: 45%;
  height: 70%;
  background-color: #ffffff;
  border-top-right-radius: 40px;
  padding-right: 50px;
  padding-left: 50px;
  max-width: 750px;
  max-height: 400px;
}
section.cabecera .cabecera_info .subtitulo {
  font-size: 25px;
  font-weight: 400;
}

section.cabecera_small {
  min-height: 65vh;
  position: relative;
}

section.cabecera_small .cabecera_small_info {
  bottom: 0;
  left: 0;
  width: 45%;
  background-color: #ffffff;
  border-top-right-radius: 40px;
  padding-right: 50px;
  padding-left: 50px;
  max-width: 750px;
  max-height: 400px;
}
section.cabecera_small .cabecera_small_info .subtitulo {
  font-size: 25px;
  font-weight: 400;
}

section.cabecera_grupocurso {
  min-height: 65vh;
  position: relative;
}

section.cabecera_grupocurso .cabecera_grupocurso_info {
  bottom: 0;
  left: 0;
  width: 90%;
  height: 60%;
  background-color: #fff;
  border-top-right-radius: 40px;
  padding-right: 50px;
  padding-left: 50px;
  max-width: 750px;
  max-height: 450px;
}

section.cabecera_grupocurso .cabecera_grupocurso_info .subtitulo {
  font-size: 18px;
  font-weight: 400;
}

.tituloH1_grupocurso {
  font-size: 35px;
  font-weight: 700;
}

/*Faldon logos*/
.img_logo {
  width: 200px;
}
/* Datos */
section.datos {
  height: 200px;
}
@media (orientation: portrait) {
  section.datos {
    margin-top: 4em;
  }
}
section.datos .datos_contenedor {
  border: 1px solid #f03c02;
  border-radius: 40px;
  background-color: #ffffff;
  box-shadow: 0px 4px 38px 0px rgba(0, 0, 0, 0.11);
  margin: 0 auto;
  margin-top: -60px;
  z-index: 2;
  position: relative;
}
section.datos .datos_contenedor .datos_item {
  width: 33%;
}
section.datos .datos_contenedor .datos_item::after {
  content: " ";
  width: 1px;
  height: 100px;
  background-color: #f03c02;
}
section.datos .datos_contenedor .datos_item:last-of-type::after {
  content: unset;
}

section.datos .datos_contenedor .datos_item > section .titulo {
  font-size: 2.25em;
  font-weight: 700;
}
section.datos .datos_contenedor .datos_item > section .descripcion {
  font-size: 1em;
  font-weight: 300;
}

/* Bloque estándar */
.bloque-standard {
  min-height: 400px;
  /* Bloque estándar imagen derecha */
  /* Bloque estándar imagen izquierda */
}
.bloque-standard div.indicador {
  width: 3px;
  height: 30px;
  background-color: #f03c02;
}
.bloque-standard p.text-20 {
  max-width: 750px;
}
.bloque-standard .bloque-standard_img-right,
.bloque-standard .bloque-standard_img-left {
  position: relative;
  width: 90%;
}
.bloque-standard .bloque-standard_img-right .img-back,
.bloque-standard .bloque-standard_img-left .img-back {
  display: none;
}
@media (min-width: 768px) {
  .bloque-standard .bloque-standard_img-right,
  .bloque-standard .bloque-standard_img-left {
    position: absolute;
    width: 35%;
  }
  .bloque-standard .bloque-standard_img-right .img-back,
  .bloque-standard .bloque-standard_img-left .img-back {
    display: block;
  }
}
.bloque-standard .bloque-standard_img-right,
.bloque-standard .bloque-standard_img-left,
.bloque-standard .img-back {
  top: 0;
}
.bloque-standard .img-front {
  transform: translateY(0%);
}
.bloque-standard .img-front.full-height {
  transform: translateY(0);
  height: 100%;
}
@media (min-width: 768px) {
  .bloque-standard .img-front {
    transform: translateY(12%);
  }
}
.bloque-standard .bloque-standard_img-right,
.bloque-standard .bloque-standard_img-right .img-back {
  right: 0;
  margin: 0 0 0 auto;
}
.bloque-standard .bloque-standard_img-right .img-front {
  border-top-left-radius: 64px;
}
.bloque-standard .bloque-standard_img-right .img-back {
  position: absolute;
  width: 75%;
  opacity: 0.1;
}
.bloque-standard .bloque-standard_img-left,
.bloque-standard .bloque-standard_img-left .img-back {
  left: 0;
  margin: 0 auto 0 0;
}
.bloque-standard .bloque-standard_img-left .img-front {
  border-top-right-radius: 64px;
}
.bloque-standard .bloque-standard_img-left .img-back {
  position: absolute;
  width: 75%;
  opacity: 0.1;
}

.bloque-bg-img {
  position: relative;
}
.bloque-bg-img .img-back {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  filter: grayscale(100%);
  z-index: -1;
}

/* Bloque listado cursos */
.img-background-curso-center {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translateX(-50%);
  z-index: -1;
}

ul.listado-cursos > li {
  width: 100%;
  min-width: 330px;
  max-width: 400px;
}
ul.listado-cursos > li article.curso-card {
  border-radius: 16px 16px 16px 0;
  width: 100%;
  height: 290px;
  position: relative;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.11);
  background-color: rgba(0, 0, 0, 0.5);
}
ul.listado-cursos > li article.curso-card img.curso-card_bg {
  border-radius: 16px 16px 16px 0;
}
ul.listado-cursos > li article.curso-card .curso-card_estado {
  color: #ffffff;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  font-size: 10px;
  font-weight: 500;
}
ul.listado-cursos > li article.curso-card .curso-card_estado.iniciado {
  background-color: rgba(255, 255, 102, 0.7);
}
ul.listado-cursos > li article.curso-card .curso-card_estado.completo {
  background-color: rgba(240, 60, 2, 0.7);
}
ul.listado-cursos > li article.curso-card .curso-card_estado.proximo {
  background-color: rgba(52, 159, 140, 0.7);
}

article.curso-card a {
  text-decoration-color: #ffffff;
}

ul.listado-cursos > li article.curso-card .curso-card_info {
  background-color: #ffffff;
  height: 35%;
  width: 80%;
  bottom: 0;
  left: 0;
  border-top-right-radius: 16px;
}
ul.listado-cursos
  > li
  article.curso-card
  .curso-card_info
  .curso-card_info_caracteristicas {
  font-size: 10px;
  font-weight: 400;
}
ul.listado-cursos
  > li
  article.curso-card
  .curso-card_info
  .curso-card_info_nombre {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
}
ul.listado-cursos
  > li
  article.curso-card
  .curso-card_info
  .curso-card_info_nombre
  > a {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
}
@media (min-width: 992px) {
  ul.listado-cursos > li {
    width: 32%;
    min-width: unset;
    max-width: unset;
  }
}

/* Imagen mapa de fondo */
.img-background-mapa-cover-center {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  object-fit: cover;
}

/* Contacto */
.contacto .mapa {
  height: 440px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
}
.contacto .mapa .mapa_info {
  height: 65%;
  bottom: 0;
  right: 0;
  background-color: rgba(10, 29, 53, 0.8);

  color: #ffffff;
}
@media (orientation: landscape) {
  .contacto .mapa .mapa_info {
    border-radius: 4em 0 0 0;
    width: 45%;
    padding: 20px 30px;
  }
}

@media (orientation: portrait) {
  .contacto .mapa .mapa_info {
    border-radius: 1.5em 0 0 0;
    width: 75%;
    padding: 1em 0 1em 1em;
  }
}

.opciones-bolsa-empleo.horizontal nav {
  flex-direction: row;
}

.opciones-bolsa-empleo.vertical nav {
  flex-direction: column;
}

.opciones-bolsa-empleo nav {
  justify-content: center;
  align-items: center;
}
.opciones-bolsa-empleo nav .line-divider {
  width: 3px;
  min-height: 100px;
  background-color: #f6f6f6;
  margin-inline: 2rem;
}
.opciones-bolsa-empleo nav a {
  width: 250px;
  aspect-ratio: 1/1;
}

.formulario-con-aside aside {
  width: 30%;
}

.formulario-con-aside form {
  width: 70%;
}
.formulario-con-aside form .input-field .form-label {
  color: #6c757d;
  margin-bottom: 0.25rem;
}
.formulario-con-aside form .input-field .form-control {
  border-color: #263238;
  color: #263238;
}
.formulario-con-aside form .input-field .form-control:focus {
  box-shadow: unset;
}
.formulario-con-aside form .input-field .form-control[type="file"] {
  border: unset;
  background-color: transparent;
  color: #6c757d;
  font-weight: 500;
}
.formulario-con-aside
  form
  .input-field
  .form-control[type="file"]::-webkit-file-upload-button {
  border: 1px solid #263238;
  border-radius: 5px;
  background-color: #d9d9d9;
  padding: 10px 50px;
  color: inherit;
}
.formulario-con-aside form .input-field fieldset {
  height: 38px;
  align-items: center;
}
.formulario-con-aside form .conformidad {
  color: #6c757d;
}
.formulario-con-aside form .conformidad .scroll {
  max-height: 80px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #000 #c9c9c9;
}
.formulario-con-aside form .btn-borrar {
  color: #263238 !important;
  border-color: #263238;
}
.formulario-con-aside form .btn-borrar:hover {
  background-color: #263238;
  color: #ffffff !important;
}

.tabla-naranja,
.tabla-naranja th,
.tabla-naranja td {
  border: 0 !important;
  height: auto !important;
}
.tabla-naranja th,
.tabla-naranja thead,
.tabla-naranja thead tr {
  background-color: #ff6600;
  color: white;
}

/*********************************/
/* RESTYLING DE LA TABLA NARANJA */
/*********************************/
/* CONTENEDOR */
.tabla-naranja {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* CABECERA */
.tabla-naranja thead th {
  background: linear-gradient(90deg, #ff7a1a, #ff5e00);
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.tabla-naranja thead th:last-child {
  border-right: none;
}

/* CELDAS */
.tabla-naranja tbody td {
  padding: 16px 10px;
  border-bottom: 1px solid #e9e9e9;
  vertical-align: middle;
}

/* COLUMNAS */
.tabla-naranja tbody td:nth-child(1) {
  /* FECHA */
  font-weight: 500;
  color: #555;
  width: 22%;
}

.tabla-naranja tbody td:nth-child(2) {
  /* PUESTO */
  color: #1f4e8c;
  font-weight: 600;
}

.tabla-naranja tbody td:nth-child(3) {
  /* EMPRESA */
  color: #666;
}

.tabla-naranja tbody td:nth-child(4) {
  /* PLAZAS */
  text-align: center;
  font-weight: 600;
}

/* EFECTO HOVER (en móvil se activa al tap) */
.tabla-naranja tbody tr:hover {
  background: #fafafa;
}

/* Última fila sin borde */
.tabla-naranja tbody tr:last-child td {
  border-bottom: none;
}

/* RESPONSIVE FINO */
@media (max-width: 480px) {
  .tabla-naranja {
    font-size: 13px;
  }

  .tabla-naranja thead th,
  .tabla-naranja tbody td {
    padding: 0.5em;
  }

  .tabla-naranja tbody td:nth-child(2) {
    line-height: 1.2;
  }
}

.tabla-con-aside aside {
  width: 30%;
}

.tabla-con-aside table {
  width: 70%;
}

.tabla-con-aside {
  display: flex;
  align-items: flex-start; /* Evita que la tabla crezca forzada por el aside */
}

.tabla-con-aside aside {
  flex-shrink: 0; /* Evita que el aside empuje la tabla */
  height: auto !important;
}

.tabla-con-aside table {
  flex-grow: 1; /* Permite que la tabla crezca libremente */
  height: auto !important;
}

.tabla-con-aside table th {
  text-align: center;
  border: 1px solid #263238;
}
.tabla-con-aside table th:nth-child(1),
.tabla-con-aside table th:nth-child(4) {
  width: 15%;
}
.tabla-con-aside table th:nth-child(2),
.tabla-con-aside table th:nth-child(3) {
  width: 35%;
}
.tabla-con-aside table thead {
  background-color: #0a1d35;
  color: #ffffff;
}
.tabla-con-aside table thead th {
  padding: 10px 20px;
}
.tabla-con-aside table tbody th {
  background-color: #ffffff;
  padding: 5px 10px;
}

/* PIE */
footer.footer .footer_top {
  background-color: #122e3c;
  color: #ffffff;
}
footer.footer .footer_top h3 {
  font-size: 12px;
  font-weight: 600;
}
footer.footer .footer_top a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
}
footer.footer .footer_top img.img-sello {
  height: 40px;
}

footer.footer .footer_bottom .linea {
  height: 5px;
  background-color: #f03c02;
}

footer.footer .footer_bottom a {
  color: #0a1d35;
}
pre {
  font-family: "Open Sans", sans-serif !important;
}

.contenedor-logos-pie {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}

.titulo-logos-pie {
  text-align: center;
  margin-bottom: 10px;
  color: #878787;
  position: relative;
  width: 100%;
}

.titulo-logos-pie::after {
  content: "";
  display: block;
  background-color: #878787;
  width: 40%;
  height: 2px;
  margin: 5px auto 0;
}

.caja-logos-pie {
  flex: 1 1 auto; /* Ajuste automático del número de columnas */
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.caja-logos-pie img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
  max-height: 30px; /* Para altura uniforme */
}

/* ESTADOS CURSOS */

.curso-card_estado.iniciado {
  background-color: rgba(255, 255, 102, 0.7);
}
.curso-card_estado.completo {
  background-color: rgba(240, 60, 2, 0.7);
}
.curso-card_estado.proximo {
  background-color: rgba(52, 159, 140, 0.7);
}

/* Cajas y estilos para distribuir las páginas */
.contenedor {
  display: flex;
  flex-wrap: wrap; /* Permite que los divs se acomoden en varias líneas si no caben */
  justify-content: space-between;
  gap: 10px;
}

@media (orientation: landscape) {
  .horizontal-pc {
    flex-direction: row; /* Elementos en horizontal si la pantalla es horizontal */
  }

  .vertical-pc {
    flex-direction: column; /* Elementos en vertical si la pantalla es horizontal */
  }
}

@media (orientation: portrait) {
  .vertical-movil {
    flex-direction: column; /* Elementos en vertical si la pantalla es vertical */
  }

  .horizontal-movil {
    flex-direction: row !important; /* Elementos en horizontal si la pantalla es vertical */
  }
}

.caja {
  flex: 1 1 min(48%, 300px); /* Toma el 48% o hasta un máximo de 300px */
  display: flex;
}

/* Asegura que el último elemento no se estire raro */
.caja:last-child {
  flex-grow: 1; /* Permite que el último div ajuste su ancho si el primero es más grande */
}

.fondo-gris {
  background-color: #f6f6f6;
}

/* Para que el botón del menú esté al lado de los items del menú */
/* Contenedor del menú */
.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Para que el botón se quede a la derecha */
  gap: 1rem;
  width: 100%;
}

/* Estilo para la lista de navegación */
.navbar-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

/* Asegurar que los elementos del menú estén en línea */
.navbar-nav .nav-item {
  display: inline-block;
}

/* Estilos para el menú */
@media (orientation: portrait) {
  .menu-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }

  .menu-container nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
  }
}

@media (orientation: landscape) {
  .menu-toggle {
    display: none;
  }

  .menu-container {
    display: block !important;
    position: static;
  }
}

/* Estilo del botón CONTACTO */
.cta {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid #f03c02;
  color: #f03c02 !important;
  font-weight: 500;
  text-decoration: none;
  border-radius: 40px;
  white-space: nowrap; /* Para evitar que el botón se rompa en varias líneas */
}

/* Cambio de color al pasar el cursor */
.cta:hover {
  background-color: #f03c02;
  color: white !important;
}

@media (orientation: portrait) {
  .no-visible-en-movil {
    display: none;
  }
}

@media (orientation: landscape) {
  .no-visible-en-escritorio {
    display: none;
  }
}
