@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Variables de color */
:root {
  --color-primary: #024CAA;
  --color-secondary: #024CAA;
  --color-background-form: #fff;
  --color-text-primary: #024CAA;
  --color-text-secondary: #024CAA;
  --color-border: #CDCDCD;
  --color-button-text: #FFFFFF;
  --color-icon-google: #DB4437;
  --color-icon-facebook: #4267B2;
  --color-title: #F7F3FA;

  --color_text-secundary: #024CAA; /* 101E2C #073854*/
}

/* Reset body layout */
body {
  width: 100%;
  height: 100vh;
  background-color: var(--background-color);
  overflow-x: hidden;
  overflow-y: auto; /* si deseas scroll, quítalo */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========== HEADER ========== */
.header_bar {
  width: 100%;
  height: 100px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: #fff; 
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.container__header {
  max-width: 1200px;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo img {
  width: 70px;
  height: auto;
}

.menu nav ul {
  display: flex;
}

.menu nav ul li {
  list-style: none;
  margin: 20px 16px;
}

.menu nav ul li a {
  color: var(--color_text-secundary);
  font-size: var(--lowText_font_size);
  text-decoration: none;
}
.menu nav ul li a:hover {
  color: var(--color_text-primary);
}

.btn__quote{
  display: block;
  padding: 8px 40px;
  border: 2px solid var(--main_color-primary); /*Variable*/
  border-radius: 8px;
  font-weight: 500;
  margin: 0px 20px;
  transition: all 300ms;
  color: #192655;
  text-decoration: none;
}

.btn__quote:hover{
  color: white;
  background: var(--main_color-primary); /*Variable*/
}

/* Menú hamburguesa */
.burger-toggle {
  display: none;
}

.menu-hamburguesa {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 100;
  padding: 20px;
}

.menu-hamburguesa.active {
  right: 0;
}

.menu-hamburguesa .close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

/* Ajuste para devices <= 768px */
@media (max-width: 768px) {
  .menu {
    display: none; /* Oculta el menú normal */
  }
  .burger-toggle {
    display: block;
    font-size: 24px;
    color: var(--color_text-secundary);
    cursor: pointer;
    z-index: 101;
  }
  .menu-hamburguesa {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .menu-hamburguesa nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .menu-hamburguesa nav ul li {
    margin: 20px 0;
  }
  .menu-hamburguesa nav ul li a {
    color: #024CAA;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    gap: 8px;
  }
  .menu-hamburguesa nav ul li a i {
    color: #192655;
    font-size: 30px;
  }
  .menu-hamburguesa nav ul li a:hover {
    color: #024CAA;
  }
  .get-started {
    margin-top: 20px;
    background: #192655;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
  }
  .social-links {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #192655;
  }
  .social-links a {
    text-decoration: none;
    color: #192655;
  }
}

/* ========== BOTÓN FLECHA REGRESAR ========== */
.btn__text {
  position: absolute;
  top: 130px;
  left: 220px;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 30px;
  cursor: pointer;
  transition: color 300ms;
  text-decoration: none;
}
.btn__text:hover {
  color: #024CAA;
}

/* ========== CONTENEDOR PRINCIPAL (3 COLUMNAS) ========== */
.container {
  display: grid;
  grid-template-columns: 4.2fr 5fr 0.8fr;
  align-items: center;
  width: 57.25rem;
  height: 31rem;
  margin-top: 100px; /* para que no lo tape el header */
}

/* forms-container (columna 1) */
.forms-container {
  height: 100%;
  background-color: var(--color-background-form);
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.forms {
  transition: transform 0.5s ease;
}
.forms.active {
  transform: translateY(-50%);
}

form {
  padding: 1.8rem;
}
form h2 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
form p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-top: 0.3rem;
  margin-bottom: 1.8rem;
}

/* input-container */
.input-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  text-align: left; /* para alinear el label a la izquierda */
}
.input-container label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-secundary);
}
.input-container input[type="text"],
.input-container input[type="email"],
.input-container input[type="tel"],
input[type="file"] {
  padding: 0.7rem;
  border: 2px solid var(--color-border);
  border-radius: 0.4rem;
  outline: none;
  font-size: 0.9rem;
  background-color: #fafafa;
  color: var(--color_text-secundary);
}
input::placeholder {
  color: #666;
  font-size: 0.8rem;
}

/* Botón principal */
form button {
  width: 100%;
  padding: 0.9rem 0;
  background-color: var(--color-secondary);
  color: var(--color-button-text);
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  margin-top: 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}
form button:hover {
  background-color: #192655;
}

/* ========== BANNER (columna 2) ========== */
.banner {
  height: 115%;
  padding: 5rem 2rem 0 2rem;
  position: relative;
  overflow: hidden;
  background: url("./assets/images/Team/padre.jpg") no-repeat center center;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}
.banner h1 {
  color: var(--color-title);
  font-size: 3rem;
  line-height: 0.9;
}
.banner h1 span {
  display: block;
  font-weight: 400;
}
.banner p {
  color: var(--color-background-form);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.shape {
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0.2;
  position: absolute;
}
.shape1 {
  height: 12.5rem;
  width: 12.5rem;
  left: 20rem;
  top: 1.25rem;
}
.shape2 {
  width: 28rem;
  height: 28rem;
  bottom: -10rem;
  right: -10rem;
}
.shape3 {
  width: 18rem;
  height: 15rem;
  left: -10rem;
  top: 10.5rem;
}

/* ========== SIDEBAR (columna 3) ========== */
.sidebar {
  background-color: var(--color-background-form);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  user-select: none;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}
.sidebar::after {
  content: "";
  background-color: var(--color-primary);
  height: 50%;
  width: 0.3rem;
  position: absolute;
  right: 0;
  top: 0;
  transition: top 0.5s ease;
}
.sidebar.active::after {
  top: 50%;
}
.sidebar .sign {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
}
.sidebar img {
  width: 1.5rem;
}
.sidebar span {
  color: var(--color-text-secondary);
  font-size: 0.8rem;
  text-align: center;
}

/* ========== ANIMACIONES ========== */
@keyframes slideIn {
  from {
    opacity: 0; 
    transform: translateX(-100%);
  }
  to {
    opacity: 1; 
    transform: translateX(0);
  }
}
@keyframes brounce-up {
  0% { transform: translateY(0); }
  20% { transform: translateY(-7px); }
  40% { transform: translateY(2px); }
  60% { transform: translateY(0); }
}
@keyframes brounce-down {
  0% { transform: translateY(0); }
  20% { transform: translateY(7px); }
  40% { transform: translateY(-2px); }
  60% { transform: translateY(0); }
}
@keyframes slideOutLeft {
  0% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(-100%); opacity: 0; }
}
.slide-out-left {
  animation: slideOutLeft 0.7s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-step {
  animation: fadeIn 0.5s ease-in-out;
}

.animated-step-delayed {
  animation: fadeIn 0.5s ease-in-out;
  animation-delay: 0.3s;
}


/* ========= Estilos para pantallas pequeñas menu ======== */

/* Estilos del menú original (para pantallas grandes) */
.menu {
  display: flex;
  align-items: center;
}

.menu nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu nav ul li {
  margin: 0;
}

.menu nav ul li a {
  color: var(--color_text-secundary);
  font-size: var(--lowText_font_size);
  text-decoration: none;
}

.menu nav ul li a:hover {
  color: var(--color_text-primary);
}

/* Menú hamburguesa oculto en pantallas grandes */
.burger-toggle {
  display: none;
}

/* Estilos para pantallas pequeñas */
@media (max-width: 768px) {
  /* Ocultar menú original */
  .menu {
      display: none;
  }

  /* Mostrar botón del menú hamburguesa */
  .burger-toggle {
      display: block;
      cursor: pointer;
      font-size: 24px;
      color: var(--color_text-secundary);
      z-index: 101;
  }

  /* Estilos del menú hamburguesa */
  .menu-hamburguesa {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: right 0.3s ease;
      z-index: 100;
      padding: 20px;
  }

  .menu-hamburguesa.active {
      right: 0;
  }

  .menu-hamburguesa nav ul {
      list-style: none;
      text-align: center;
      padding: 0;
      margin: 0;
      width: 100%;
  }

  .menu-hamburguesa nav ul li {
      margin: 20px 0;
  }

  .menu-hamburguesa nav ul li a {
      color: #024CAA;
      font-size: 20px;
      font-weight: 500;
      text-decoration: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      gap: 8px; /* Un pequeño espacio entre texto y flecha */
  }

     /* 2) Color para las flechas (íconos <i>) dentro del enlace */
.menu-hamburguesa nav ul li a i {
  color: #192655; /* Color que quieres para los íconos */
  font-size: 30px; /* ¡Aumenta aquí lo que necesites: 20px, 24px, 32px, etc.! */
}

  .menu-hamburguesa nav ul li a:hover {
      color: #024CAA;
  }

  /* Botón "Get Started" */

  .get-started {
      margin-top: 20px;
      background: #024CAA;
      color: #fff;
      padding: 10px 20px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-transform: uppercase;
  }

  .get-started:hover {
      background: #024CAA;
  }

  /* Redes sociales al final */
  .social-links {
      margin-top: 40px;
      display: flex;
      gap: 20px;
      font-size: 14px;
      color: #192655;
  }

  .social-links a {
      text-decoration: none;
      color: #192655;
  }

  .social-links a:hover {
      color: #192655;
  }

  /* Botón de cerrar el menú hamburguesa */
  .close-menu {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 24px;
      cursor: pointer;
      color: #024CAA;
  }
}

/* Menú hamburguesa oculto inicialmente */
.menu-hamburguesa {
  display: none; /* Oculto por defecto */
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.3s ease;
  z-index: 100;
  padding: 20px;
}

.menu-hamburguesa.active {
  right: 0; /* Muestra el menú hamburguesa */
}

/* Reglas para pantallas pequeñas */
@media (max-width: 767px) {
  .menu {
      display: none; /* Oculta el menú original */
  }

  .burger-menu {
      display: block; /* Muestra el botón del menú hamburguesa */
      cursor: pointer;
      font-size: 24px;
      color: #024CAA;
      z-index: 101;
  }

  .menu-hamburguesa {
      display: flex; /* Muestra el menú hamburguesa en pantallas pequeñas */
  }
}


/* ========== estilos para el label del vaucher ========== */

.file-upload-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.file-upload-label {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 2px dashed #024CAA; /* Cambia el color según tu esquema */
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  height: 150px;
  cursor: pointer;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.file-upload-label img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.file-upload-label p {
  font-size: 14px;
  color: #666;
  text-align: center;
}

.file-upload-label:hover {
  background-color: #faf7e8; /* Cambia el color al pasar el mouse */
  border-color: #024CAA;
}

.file-upload-label:active {
  background-color: #ddefff;
}

input[type="file"]:focus + .file-upload-label {
  border-color: #024CAA;
  box-shadow: 0 0 4px rgba(187, 143, 0, 0.5);
}

/* ========= color del svg ========= */

.file-upload-label img {
  width: 30px;
  height: 40px;
  /*filter: invert(13%) sepia(62%) saturate(3900%) hue-rotate(196deg)
    brightness(90%) contrast(100%); */
}


input[type="file"]:invalid + .file-upload-label {
  border: 2px solid red;
  background-color: #ffe6e6;
}

/* ========= media queries para el formulario ========= */

/* Ajustes para pantallas medianas (tablets) */
@media (max-width: 767px) {
  .logo img {
    margin-top: 20px;
    width: 70px;
    height: auto;
  }
  .container {
    grid-template-columns: 1fr; /* Una columna */
    width: 90%; /* Reduce el ancho general */
    height: auto; /* Ajusta la altura */
    margin-top: 120px; /* Un poco más de espacio para el header */
    padding: 20px; /* Añade espacio interno */
  }

  .forms-container,
  .banner,
  .sidebar {
    height: auto; /* Ajusta la altura */
    margin-bottom: 20px; /* Espaciado entre secciones */
  }

  .banner {
    padding: 2rem 1rem;
    background-position: top center; /* Ajusta la imagen */
  }

  .banner h1 {
    font-size: 2rem;
  }

  .banner p {
    font-size: 0.8rem;
  }

  .forms-container {
    padding: 1rem; /* Reduce el padding */
  }

  form h2 {
    font-size: 1.2rem; /* Reduce el tamaño del título */
  }

  form p {
    font-size: 0.8rem;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="file"],
  form button {
    font-size: 0.8rem;
  }

  .file-upload-label {
    max-width: 100%;
    height: auto; /* Ajusta automáticamente la altura */
    padding: 15px;
  }

  .sidebar {
    flex-direction: row;
    justify-content: space-between;
    height: auto;
    padding: 10px;
  }

  .sidebar img {
    width: 30px;
  }

  .sidebar span {
    font-size: 0.7rem;
  }
}

/* Ajustes para pantallas pequeñas (móviles) */
@media (max-width: 767px) {
  .header_bar {
    height: 80px; /* Reduce el tamaño del header */
  }

  .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-top: 100px;
    padding: 10px;
  }

  .forms-container,
  .banner,
  .sidebar {
    width: 100%; /* Asegura que ocupen todo el ancho */
    height: auto;
    margin-bottom: 15px;
  }

  .forms-container {
    border-radius: 10px; /* Reduce el radio */
    padding: 1rem; /* Reduce el padding */
  }

  .banner {
    padding: 1rem;
    text-align: center; /* Centra el contenido */
  }

  .banner h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .banner p {
    font-size: 0.75rem;
  }

  .sidebar {
    flex-direction: row;
    justify-content: center;
    padding: 5px;
  }

  .sidebar .sign {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .sidebar img {
    width: 20px;
  }

  .sidebar span {
    font-size: 0.6rem;
  }

  .burger-toggle {
    font-size: 20px; /* Reduce el tamaño del ícono */
  }

  form h2 {
    font-size: 1rem; /* Ajusta el tamaño del título */
  }

  form p {
    font-size: 0.7rem;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="file"],
  form button {
    font-size: 0.7rem;
  }

  .file-upload-label {
    max-width: 100%;
    height: auto;
    padding: 10px;
  }

  button {
    padding: 0.6rem 0;
    font-size: 0.8rem;
  }
}

/* Pantallas pequeñas: reorganización del contenido */
@media (max-width: 767px) {
  .container {
    display: flex;
    flex-direction: column; /* Cambia a diseño vertical */
    width: 100%;
    height: auto;
    margin-top: 100px; /* Espaciado superior */
    padding: 10px;
  }

  .banner {
    order: 1; /* Se muestra primero */
    width: 100%; /* Ocupa todo el ancho */
    margin-bottom: 20px; /* Espaciado entre elementos */
  }

  .sidebar {
    order: 2; /* Se muestra después del banner */
    width: 100%;
    margin-bottom: 20px;
  }

  .forms-container {
    order: 3; /* Se muestra al final */
    width: 100%; /* Ocupa todo el ancho */
  }
}

/* Pantallas pequeñas: reorganización del contenido */
@media (max-width: 376px) {
  .container {
    display: flex;
    flex-direction: column; /* Cambia a diseño vertical */
    width: 100%;
    height: auto;
    margin-top: 280px; /* Espaciado superior */
    padding: 10px;
  }

  .banner {
    order: 1; /* Se muestra primero */
    width: 100%; /* Ocupa todo el ancho */
    margin-bottom: 20px; /* Espaciado entre elementos */
  }

  .sidebar {
    order: 2; /* Se muestra después del banner */
    width: 100%;
    margin-bottom: 20px;
  }

  .forms-container {
    order: 3; /* Se muestra al final */
    width: 100%; /* Ocupa todo el ancho */
  }
}

/* Reglas para pantallas pequeñas */
@media (max-width: 767px) {
  .menu {
      display: none; /* Oculta el menú original */
  }

  .burger-menu {
      display: block; /* Muestra el botón del menú hamburguesa */
      cursor: pointer;
      font-size: 24px;
      color: #024CAA;
      z-index: 101;
  }

  .menu-hamburguesa {
      display: flex; /* Muestra el menú hamburguesa en pantallas pequeñas */
  }
}

.burger-toggle i {
  color: #024CAA;
  font-size: 30px !important; /* Ajusta el tamaño que prefieras */
  margin-top: -2px;
}

  /* Botón de cerrar el menú hamburguesa */
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #024CAA !important;
}

  /* Estilo del autocompletado */
/* Desactivar el fondo azul de los campos autocompletados */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  /* Sobrescribe color de fondo y texto */
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;

  /* Opcional: puedes ajustar el color del borde si lo necesitas */
  border-bottom: 1px solid #000 !important; 
}

 /* Oanimacions */

 /* Deslizar forms-container hacia la derecha (como si fuera hacia la banner) */
.slide-forms-container {
  animation: slideForms 0.9s forwards ease-in-out;
}

@keyframes slideForms {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Ajusta la distancia: 400px, 300px... */
    transform: translateX(400px);
  }
}

/* Deslizar sidebar hacia la izquierda (también hacia la banner) */
.slide-sidebar {
  animation: slideSidebar 0.9s forwards ease-in-out;
}

@keyframes slideSidebar {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Ajusta la distancia: -200px, -300px... */
    transform: translateX(-200px);
  }
}

/* ... resto de tu FormularioProvicional.css ... */

/* Estilo unificado para input y select */
.input-container input[type="text"],
.input-container input[type="email"],
.input-container input[type="tel"],
.input-container input[type="date"],
.input-container input[type="file"],
.input-container select {
  padding: 0.7rem;
  border: 2px solid var(--color-border);
  border-radius: 0.4rem;
  outline: none;
  font-size: 0.9rem;
  background-color: #fafafa;
  color: var(--color_text-secundary);
}

.input-container input::placeholder {
  color: #666;
  font-size: 0.8rem;
}

/* Podrías añadir reglas específicas para select si quieres manipular la flecha */
.input-container select {
  cursor: pointer; /* Muestra el cursor de mano al pasar */
}

.btn-back {
  background: none;        /* Sin fondo */
  border: none;            /* Sin borde */
  font-size: 1rem;         /* Tamaño de la flecha */
  color: var(--color_text-secundary); /* Mismo color que tus otros textos */
  cursor: pointer;
  transition: color 0.3s ease;
  margin-right: 0.5rem; /* Opcional: espacio a la derecha */
  /* Ajusta según tu preferencia */
}

.btn-back:hover {
  color: var(--color_text-primary); /* Cambia color al pasar el mouse */
}

.forms {
    position: relative;
    padding-top: 35px;
  }
  
  .forms h2 {
    position: absolute;
    top: 20px; /* Ajusta este valor según lo que necesites */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }
  
  /* Los labels serán de color azul marino */
  .forms label {
    color: #192655 !important; /* Azul marino */
  }
  .forms h2 {
    color: #024CAA !important; /* Azul rey */
  }
  .forms input {
    color: #024CAA !important;
  }
  
  .forms input::placeholder {
    color: #024CAA !important;
  }

  /* Para sobrescribir el color en inputs con autocompletado en Chrome */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  /* Forzar el color del texto */
  -webkit-text-fill-color: #024CAA !important;

  /* Elimina el fondo amarillo que pone Chrome */
  box-shadow: 0 0 0px 1000px #fff inset !important;

  /* Opcional: Ajusta el color del fondo si quieres uno distinto */
  background-color: #fff !important;
}

.container h5{
  color: #024CAA;
}
  