/* REGULAR */
@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Regular.woff2') format('woff2'),
       url('../fonts/FuturaPT-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* MEDIUM */
@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Medium.woff2') format('woff2'),
       url('../fonts/FuturaPT-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

/* BOLD */
@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Bold.woff2') format('woff2'),
       url('../fonts/FuturaPT-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/* HEAVY */
@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Heavy.woff2') format('woff2'),
       url('../fonts/FuturaPT-Heavy.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}

/* ITALIC */
@font-face {
  font-family: 'Futura PT';
  src: url('../fonts/FuturaPT-Italic.woff2') format('woff2'),
       url('../fonts/FuturaPT-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}
/* BORAX solo para letras (sin símbolos) */
@font-face {
  font-family: "Borax";
  src:
    url("../fonts/Borax/borax-regular.woff") format("woff"),
    url("../fonts/Borax/borax-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0041-005A, U+0061-007A,
    U+00C0-00D6, U+00D8-00F6, U+00F8-00FF,
    U+0100-017F;
}

@font-face {
  font-family: "Borax";
  src:
    url("../fonts/Borax/borax-medium.woff") format("woff"),
    url("../fonts/Borax/borax-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0041-005A, U+0061-007A,
    U+00C0-00D6, U+00D8-00F6, U+00F8-00FF,
    U+0100-017F;
}

@font-face {
  font-family: "Borax";
  src:
    url("../fonts/Borax/borax-bold.woff") format("woff"),
    url("../fonts/Borax/borax-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0041-005A, U+0061-007A,
    U+00C0-00D6, U+00D8-00F6, U+00F8-00FF,
    U+0100-017F;
}

/* Si necesitas cursivas */
@font-face {
  font-family: "Borax";
  src:
    url("../fonts/Borax/borax-italic.woff") format("woff"),
    url("../fonts/Borax/borax-italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  unicode-range:
    U+0041-005A, U+0061-007A,
    U+00C0-00D6, U+00D8-00F6, U+00F8-00FF,
    U+0100-017F;
}


html {
  scroll-behavior: smooth;
}


/* Texto general homogéneo y legible */
body, p, li, a, span, td, th {
  font-family: 'Futura PT', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* Borax solo para títulos y menús */
h1, h2, h3, h4, h5, h6,
.navbar, .menu, .accordion-button {
  font-family: "Borax", "Futura PT", Arial, sans-serif;
}

/* Footer siempre Futura PT */
footer, footer * {
  font-family: "Futura PT", Arial, sans-serif !important;
}

/* Clase opcional para forzar Futura PT en cualquier lugar */
.futura-font {
  font-family: 'Futura PT', sans-serif !important;
}





    /* Colores personalizados (ajústalos según tu diseño) */
    .bg-primary-custom { background-color: #003366; } /* ejemplo */
    .text-primary-custom { color: #003366; }

  /* Estilo de enlaces del menú */
  .custom-link {
    color: #333; /* negro opaco */
    font-weight: 500;
    transition: color 0.2s ease;
  }

  .custom-link:hover,
  .custom-link.active {
    color: #000; /* negro fuerte */
    font-weight: 700;
  }

  /* Botones JOIN US y LOGIN */
  .custom-btn-primary {
    background-color: #009ADE;
    color: #fff;
    border-radius: 0.5rem; /* bordes redondeados */
    padding: 0.4rem 1rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s ease;
  }

  .custom-btn-primary:hover,
  .custom-btn-primary.active {
    background-color: #fff;
    color: #009ADE;
    border: 1px solid #009ADE;
	}
	.custom-lang-btn {
  background-color: #DCE6E8;
  color: #009ADE !important;
  border-radius: 0.5rem;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  border: 1px solid transparent;

  }
   /* DropDown Menu*/
  .dropdown-menu .dropdown-item {
  transition: background-color 0.2s ease, color 0.2s ease;
  padding: 10px 20px;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f2f2f2;
  color: #009ade;
}

  /*CARROUSEL */
  
  .logo-slider {
  height: 100px;
  position: relative;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-logos 40s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo-item:hover {
  transform: scale(1.05);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

 /*TESTIMONIOS*/
  /*Imagen redondeada*/
 .testimonial-img-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #009ADE; /* Cambia el color si deseas */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 154, 222, 0.2); /* sombra sutil opcional */
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* mueve el foco hacia abajo */
}

/* Fondos personalizados */
.bg-light-purple {
  background-color: #f5f4fa;
}

.bg-light-blue {
  background-color: #eaf7fc;
}

/* Tarjeta testimonial */
.testimonial-card p {
  font-size: 16px;
  margin-bottom: 15px;
  min-height: 130px;
}

/* Control de visibilidad de grupos */
.grupo-testimonio {
  visibility: hidden;
  position: absolute;
  height: 0;
  overflow: hidden;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.grupo-testimonio.active {
  visibility: visible;
  position: static;
  height: auto;
  opacity: 1;
}

/* Navegación - puntos */
.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 0 8px;
  cursor: pointer;
  background-color: #ccc;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot:hover {
  transform: scale(1.2);
}

.dot.bg-primary {
  background-color: #009ADE !important;
}

.dot.bg-secondary {
  background-color: #ccc !important;
}

/* Imagen con ajuste */
.object-fit-cover {
  object-fit: cover;
}

/* Estilos del formulario */
.form-asistencia {
  max-width: 100%;
}

/* Asegura responsividad en pantallas pequeñas */
@media (max-width: 768px) {
  .asistencia-section .row {
    flex-direction: column;
  }
}
.bg-asistencia-text {
  background-color: #f2f2f2;
}
.bg-asistencia-section {
  background-color: #f2f2f2;
}

/* Boton Formulario */
.btn-wwj {
  background-color: #009ADE;
  color: white;
  border: none;
}
.form-asistencia input,
.form-asistencia select,
.form-asistencia textarea {
  background-color: #eaf6fd;
  border: 1px solid #cce4f5;
  border-radius: 0.5rem;
}
.form-asistencia input:focus,
.form-asistencia select:focus,
.form-asistencia textarea:focus {
  border-color: #009ade;
  box-shadow: 0 0 0 0.2rem rgba(0, 154, 222, 0.25);
  outline: none;
}


.btn-wwj:hover {
  background-color: #007bb5; /* un poco más oscuro al pasar el mouse */
  color: white;
}
.footer-section {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.8;
}
/*Footer*/
.footer-link {
  color: #ffffff;
  text-decoration: underline;
}

.footer-link:hover {
  color: #009ADE;
  text-decoration: none;
}

.social-icons a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #009ADE;
}

/*Styles About-US*/
/*BANNER*/
.about-banner {
  position: relative;
}

.banner-img {
  width: 100%;
  height: 750px; /* o ajusta a 450px, 400px según necesidad */
  object-fit: cover;
  object-position: center bottom; /* Muestra la parte baja */
  display: block;
}



/* Franja */
.about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 154, 222, 0.92);
  padding: 1.5rem 5%;
  z-index: 2;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}
.about-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  z-index: 1;
  pointer-events: none;
}


.icono-about {
  width: 40px;
  height: 40px;
}

/*MISION, VISION, VALORES*/
/* Bloques divididos */
/* Ajuste general de las imágenes */
.mvv-icon {
  max-width: 120px;   /* más pequeño para equilibrar con el texto */
  height: auto;
}

@media (max-width: 768px) {
  .mvv-icon {
    max-width: 100px;
    margin-top: 1.5rem;
  }
}

/* Bloques */
.mvv-block {
  overflow: hidden;
  border-radius: 1rem;
}

.mvv-block .text-part {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mvv-block .bg-light-blue,
.mvv-block .bg-light-purple {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Estilo base para los valores */
.highlight {
  font-weight: bold;
  color: inherit; /* mismo color que el texto normal */
  transition: color 0.3s ease;
}

/* Efecto hover con color de marca */
.highlight:hover {
  color: #009ADE;
  cursor: pointer; /* opcional, da sensación de interacción */
}


/*OUR LEADERSHIP STYLES*/
.leader-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 154, 222, 0.2);
}

.leader-img {
  height: 66%;
  object-fit: cover;
  width: 100%;
}
/*EMPLOYER STYLES*/
.servicio-box {
  min-height: 260px; /* puedes ajustar este valor según necesites */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.servicio-box p {
  font-size: 1.15rem; /* antes fs-6 equivale a ~1rem */
  line-height: 1.6;
}
.servicio-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.border-highlight {
  border: 2px solid #009ADE;
}

.bg-primary-light {
  background-color: #009ADE;
}

.servicio-icon {
  height: 70px;
}
/* Responsive ajustes opcionales */
@media (max-width: 767px) {
  .servicio-box {
    min-height: 220px;
  }
  .servicio-box p {
    font-size: 1.05rem;
  }
  .servicio-icon {
    height: 60px;
  }
}
/* Seccion ¿Por que elegirnos? */

.rounded-custom {
  border-radius: 1rem;
  border: 3px solid #009ADE;
}

.shadow-custom {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* Fondo de la sección */
.bg-light-blue {
  background-color: #f1faff;
}

/* Iconos alineados con el texto */
.why-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Tipografía más grande */
.why-icon + div p,
.why-icon + div strong {
  font-size: 1.1rem; /* Puedes subir a 1.2rem si lo deseas */
  line-height: 1.6;
}

h2 {
  font-size: 2rem;
}

/* Imagen con marco flotante */
.img-marco {
  position: relative;
  z-index: 2;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid #ffffff;
}

/* Efecto del marco desplazado detrás */
.rounded-img-wrapper {
  position: relative;
  display: inline-block;
}

.rounded-img-wrapper::after {
  content: "";
  position: absolute;
  top: 10px;  /* Ajusta el desplazamiento vertical */
  left: 10px; /* Ajusta el desplazamiento horizontal */
  width: 100%;
  height: 100%;
  border: 2px solid #009ADE;
  border-radius: 1rem;
  z-index: 1;
}
/* Sección Programas Styles */

.programas-section {
  background-color: #ffffff;
  font-family: 'Futura PT', sans-serif;
}

.programa-card {
  border: 2px solid #009ADE;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.programa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 154, 222, 0.2);
}

.programa-card h5 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.programa-card ul {
  padding-left: 1.2rem;
  font-size: 0.95rem;
}

.btn-wwj {
  background-color: #009ADE;
  color: white;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  border: none;
  transition: all 0.3s ease;
}

.btn-wwj:hover {
  background-color: #fff;
  color: #009ADE;
  border: 1px solid #009ADE;
}
/* Candidate Styles */
.candidate-section {
  font-family: 'Futura PT', sans-serif;
}

.btn-wwj-blue {
  background-color: #009ADE;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-wwj-blue:hover {
  background-color: #007fbe;
}

.box-blue {
  background-color: #009ADE;
}

.box-light-blue {
  background-color: #d5f0fc;
}

.box-light {
  background-color: #eef4f8;
}

.box-blue ul,
.box-light-blue ul,
.box-light ul {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
}
.box-light,
.box-blue,
.box-light-blue {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-light:hover,
.box-blue:hover,
.box-light-blue:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.custom-image-grid {
  display: flex;
  gap: 12px;
  height: 100%;
}

.custom-image-grid .small-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 50%;
}

.custom-image-grid .large-image {
  width: 50%;
}

.custom-image-grid img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
}
.bg-europa {
  background-color: #e8f4fb; /* Un azul muy suave, cambia si deseas otro tono */
}
/*CONTACT-US STYLES*/
.contacto-agencia-section img {
  vertical-align: middle;
}

.contacto-agencia-section .border-primary {
  border-color: #009ADE !important;
}

.contacto-agencia-section p img {
  margin-right: 8px;
  vertical-align: middle;
}
/*Preguntas frecuentes*/
.faq-section .accordion-button {
  background-color: #f1f9ff;
  border-radius: 8px;
  font-weight: 600;
  color: #000;
  transition: background-color 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #d9f1ff;
  color: #0077c8;
}

.faq-section .accordion-item {
  border: none;
  border-radius: 8px;
}

.btn-wwj {
  background-color: #009ADE;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-wwj:hover {
  background-color: #007bbf;
  transform: scale(1.05);
}
/*Efectos de formulario en Index*/
.form-control, .form-select, textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ced4da;
  outline: none;
}

.form-control:focus, .form-select:focus, textarea:focus {
  border-color: #5a9bd4;
  box-shadow: 0 0 8px rgba(90, 155, 212, 0.6);
}

.btn-wwj {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-wwj:hover, .btn-wwj:focus {
  background-color: #4a86d9; /* Cambia según tu diseño */
  color: #fff;
  transform: scale(1.05);
}

/*Boton de lenguaje*/
.lang-active {
  background-color: #009ADE;
  color: white !important;
  border-radius: 5px;
  padding: 3px 8px;
}



/* Colores de encabezados de FAQs */
.faq-section .faq-employers-title { 
  color: #490E67 !important; /* Deep purple */
}

.faq-section .faq-candidates-title { 
  color: #F5A800 !important; /* Amarillo */
}

.accordion-header .accordion-button {
  font-family: 'Futura PT', sans-serif; /* homogéneo */
  font-weight: 600; /* mantiene el fw-semibold */
}
