.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  background-color: #f4f0ed;
  color: #1d394e;

}

/*menu styles*/
/* En tu propio archivo CSS o dentro de una etiqueta <style> en tu HTML */
.navbar {
  background-color: #f4f0ed;
  color: #829C6C;
  /* Color de fondo oscuro similar al ejemplo */
}

.navbar img {
  max-height: 80px;
  /* Ajusta la altura máxima de la imagen del logo */
  margin: 10px;
  /* Espacio alrededor del logo */
}

.navbar-item,
.navbar-link {
  color: #1d394e;
  /* Texto blanco para los ítems del menú */
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: var(--bulma-white) !important;
        box-shadow: 0 0.5em 1em hsla(var(--bulma-scheme-h), var(--bulma-scheme-s), var(--bulma-scheme-invert-l), 0.1);
        padding: 0.5rem 0;
    }
}

@media screen and (max-width: 1023px) {
    .hero-section .content h1 {
    font-size: 2.5rem !important;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
}




/* Cambiar el color de los elementos al pasar el ratón */
.navbar-item:hover,
.navbar-link:hover {
  background-color: transparent;
  /* Un tono ligeramente más claro al pasar el ratón */
  color: #1d394e;
}

/* Color del desplegable y sus ítems */
.navbar-dropdown {
  background-color: #363640;
  /* Fondo del menú desplegable */
}

.navbar-dropdown .navbar-item {
  color: #ffffff;
}

.navbar-dropdown .navbar-item:hover {
  background-color: #4A4A5A;
}

/* Estilo para el botón "Cotiza aquí" si quieres un color específico */
.button.is-primary {
  background-color: #00d1b2;
  /* Color verde/cian de Bulma por defecto */
  border-color: transparent;
  color: #fff;
}

.button.is-primary:hover {
  background-color: #00c4a7;
}

/* Estilo para los botones "ghost" */
.button.is-ghost {
  color: #00c4a7;
  background-color: transparent;
  border-color: transparent;
}

.button.is-ghost:hover {
  color: #1d394e;
  background-color: rgba(255, 255, 255, 0.4);
  /* Ligera superposición blanca al pasar el ratón */
}


/* Estilos base para la sección hero */
.hero-section {
  position: relative;
  background-image: url('../images/fondo1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  /* Esencial para posicionar el pseudo-elemento */
  overflow: hidden;
  /* Oculta cualquier parte de la imagen que se desborde */
  height: 100%;
  /* Bulma ya lo maneja con hero-fullscreen, pero lo reafirmo */
  width: 100%;
  /* Opcional: para centrar el contenido verticalmente si no usas Bulma utilities */
  /*display: flex;*/
  align-items: center;
  justify-content: flex-start;
  /* Alinea el contenido a la izquierda como en tu HTML */
}

/* Pseudo-elemento para el slider de imágenes */
.hero-section::before {
  content: '';
  /* Obligatorio para pseudo-elementos */
  position: absolute;
  /* Posiciona el fondo respecto a .hero-section */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  /* Asegura que la imagen cubra todo el espacio */
  background-position: center;
  /* Centra la imagen */
  background-repeat: no-repeat;
  /* Evita que la imagen se repita */
  animation: imageSlider 18s infinite;
  /* ¡Aquí es donde ocurre la magia! */
  z-index: -1;
  /* Envía el fondo detrás del contenido de texto */
  opacity: 0;
  /* Empieza con opacidad 0 para la primera transición */
}



/* Estilos para el contenido de texto para asegurar que esté encima */
.hero-section .content {
  position: absolute;
  top: 0;
  /* Asegura que el contenido tenga su propia capa */
  z-index: 1;
  /* Coloca el contenido por encima del pseudo-elemento de fondo */
  color: white;
  /* Color de texto para que contraste con los fondos */
  padding: 2rem;
  /* Espaciado interno */
  /* Bulma ya te da buen estilo con has-text-left, pero puedes ajustar más */
}

/* Opcional: Ajustes para el texto si es necesario */
.hero-section .content h1 {
  font-size: 4.5rem;
  /* Tamaño de fuente más grande */
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-section .content h2 {
  font-size: 2.5rem;
  font-weight: normal;
}

.letter-image {
  position: relative;
  top: 150px;
  left: 20%;
  width: 150px;
  height: 200px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.animated-mail {
  position: absolute;
  height: 150px;
  width: 200px;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  transition: .4s;

  .body {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 100px 200px;
    border-color: transparent transparent #e95f55 transparent;
    z-index: 2;
  }

  .top-fold {
    position: absolute;
    top: 50px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 100px 0 100px;
    -webkit-transform-origin: 50% 0%;
    -webkit-transition: transform .4s .4s, z-index .2s .4s;
    -moz-transform-origin: 50% 0%;
    -moz-transition: transform .4s .4s, z-index .2s .4s;
    transform-origin: 50% 0%;
    transition: transform .4s .4s, z-index .2s .4s;
    border-color: #cf4a43 transparent transparent transparent;
    z-index: 2;
  }

  .back-fold {
    position: absolute;
    bottom: 0;
    width: 200px;
    height: 100px;
    background: #cf4a43;
    z-index: 0;
  }

  .left-fold {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 0 50px 100px;
    border-color: transparent transparent transparent #e15349;
    z-index: 2;
  }

  .letter {
    left: 20px;
    bottom: 0px;
    position: absolute;
    width: 160px;
    height: 60px;
    background: white;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: .4s .2s;
    -moz-transition: .4s .2s;
    transition: .4s .2s;

    .letter-border {
      height: 10px;
      width: 100%;
      background: repeating-linear-gradient(-45deg,
          #cb5a5e,
          #cb5a5e 8px,
          transparent 8px,
          transparent 18px);
    }

    .letter-title {
      margin-top: 10px;
      margin-left: 5px;
      height: 10px;
      width: 40%;
      background: #cb5a5e;
    }

    .letter-context {
      margin-top: 10px;
      margin-left: 5px;
      height: 10px;
      width: 20%;
      background: #cb5a5e;
    }

    .letter-stamp {
      margin-top: 30px;
      margin-left: 120px;
      border-radius: 100%;
      height: 30px;
      width: 30px;
      background: #cb5a5e;
      opacity: 0.3;
    }
  }
}

.shadow {
  position: absolute;
  top: 200px;
  left: 50%;
  width: 400px;
  height: 30px;
  transition: .4s;
  transform: translateX(-50%);
  -webkit-transition: .4s;
  -webkit-transform: translateX(-50%);
  -moz-transition: .4s;
  -moz-transform: translateX(-50%);

  border-radius: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0));
}

.letter-image:hover {
  .animated-mail {
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
  }

  .animated-mail .top-fold {
    transition: transform .4s, z-index .2s;
    transform: rotateX(180deg);
    -webkit-transition: transform .4s, z-index .2s;
    -webkit-transform: rotateX(180deg);
    -moz-transition: transform .4s, z-index .2s;
    -moz-transform: rotateX(180deg);
    z-index: 0;
  }

  .animated-mail .letter {
    height: 180px;
  }

  .shadow {
    width: 250px;
  }
}

@font-face {
  font-family: "Mona Sans";
  src: url("https://assets.codepen.io/64/Mona-Sans.woff2") format("woff2 supports variations"),
    url("https://assets.codepen.io/64/Mona-Sans.woff2") format("woff2-variations");
  font-weight: 100 1000;
}

@layer properties {
  @property --bg-position {
    syntax: "<number>";
    inherits: true;
    initial-value: 100;
  }

  @property --after-blur {
    syntax: "<number>";
    inherits: true;
    initial-value: 0;
  }

  @property --after-opacity {
    syntax: "<number>";
    inherits: true;
    initial-value: 1;
  }

  @property --before-opacity {
    syntax: "<number>";
    inherits: true;
    initial-value: 0.3;
  }

  @property --btn-offset {
    syntax: "<number>";
    inherits: true;
    initial-value: 1;
  }

  @property --btn-scale {
    syntax: "<number>";
    inherits: true;
    initial-value: 1;
  }
}

:root {
  --debug: 0;

  /* colors */
  --body-bg: hsl(0, 0%, 6%);
  --btn-bg: hsl(0, 0%, 0%);
  --btn-border-width: 1.5;
  --btn-offset: 1;
  --btn-scale: 1;
  --after-bg: linear-gradient(to right,
      rgb(0 0 0),
      rgb(0 0 0),
      rgb(0 0 0),
      rgb(0 0 0),
      rgb(0 0 0),
      rgb(0 0 0),
      rgb(0 0 0),
      rgb(0 0 0),
      rgb(0 0 0),
      rgb(0 0 0),
      rgb(0 0 0),
      rgb(0 0 0),
      rgb(0 0 0));
  --after-blur: 10;
  --after-opacity: 1;
  --after-pos-y: 10;

  --before-opacity: 0.3;

  /* positions */
  --bg-position: 100;

  --color-white: hsl(0, 0%, 100%);
  --color-cyan: hsl(180, 100%, 50%);
  --color-blue: hsl(240, 100%, 50%);
  --color-purple: hsl(270, 100%, 50%);
  --color-pink: hsl(330, 40%, 70%);
  --color-red: hsl(0, 100%, 50%);
  --color-yellow: hsl(60, 100%, 50%);
  --color-lime: hsl(90, 100%, 75%);

  --color-orange: oklch(69.1% 0.223 36.85);
}

@supports (color: color(display-p3 0 0 0)) {
  :root {
    --color-white: color(display-p3 1 1 1);
    --color-cyan: color(display-p3 0 1 1);
    --color-blue: color(display-p3 0 0 1);
    --color-purple: color(display-p3 0.5 0 1);
    --color-pink: color(display-p3 1 0.4 0.7);
    --color-red: color(display-p3 1 0 0);
    --color-yellow: color(display-p3 1 1 0);
    --color-lime: color(display-p3 0.75 1 0);

    --color-orange: color(display-p3 0.96 0.39 0.2);
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
  outline: calc(var(--debug) * 1px) dotted red;
  outline-offset: -1px;
}



main {
  display: grid;
  place-items: baseline;
  padding: 20px 0;

  & button {
    all: unset;
    background: transparent;
    border-width: 0;
    transform: scale(var(--btn-scale));
    transition:
      --bg-position 3s ease,
      --after-blur 0.3s ease,
      --before-opacity 0.3s ease,
      --btn-offset 0.3s ease,
      --btn-scale 0.2s cubic-bezier(.76, -0.25, .51, 1.13);

    >div {
      display: block;
      padding: 0.8em 1.2em;
      background: var(--btn-bg);
      color: white;
      font-weight: bold;
      border-radius: 8px;
      font-size: 22px;
      position: relative;

      cursor: pointer;

      &:not(:hover) {
        transition: --after-blur 0.3s ease;
      }

      >span {
        background: linear-gradient(to right,
            var(--color-white),
            var(--color-white),
            var(--color-cyan),
            var(--color-blue),
            var(--color-purple),
            var(--color-pink),
            var(--color-red),
            var(--color-yellow),
            var(--color-lime),
            var(--color-white),
            var(--color-white)) no-repeat calc(var(--bg-position) * 1%) 0% / 900%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: 0.15ch;
        font-weight: 600;
      }

      &:after {
        display: block;
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: var(--after-bg) no-repeat calc(var(--bg-position) * 1%) 0% / 900%;
        transform: translateY(calc(var(--after-pos-y) * 1px));
        left: 0;
        top: 0;
        z-index: -2;
        filter: blur(calc(var(--after-blur) * 1px));
        opacity: var(--after-opacity);
      }

      &:before {
        content: "";
        display: block;
        position: absolute;
        width: calc(100% + calc(calc(var(--btn-border-width) * 2) * 1px));
        height: calc(100% + calc(calc(var(--btn-border-width) * 2) * 1px));
        background: linear-gradient(to right,
            var(--color-white),
            var(--color-white),
            var(--color-cyan),
            var(--color-blue),
            var(--color-purple),
            var(--color-pink),
            var(--color-red),
            var(--color-yellow),
            var(--color-lime),
            var(--color-white),
            var(--color-white)) no-repeat calc(var(--bg-position) * 1%) 0% / 900%;
        border-radius: 9px;
        z-index: -1;
        top: calc(var(--btn-border-width) * -1px);
        left: calc(var(--btn-border-width) * -1px);
        opacity: var(--before-opacity);
      }
    }

    &:hover {
      --btn-scale: 1.05;
      --bg-position: 0;
      --after-bg: linear-gradient(to right,
          var(--color-white),
          var(--color-white),
          var(--color-cyan),
          var(--color-blue),
          var(--color-purple),
          var(--color-pink),
          var(--color-red),
          var(--color-yellow),
          var(--color-lime),
          var(--color-white),
          var(--color-white));
      --after-blur: 30;
      --after-opacity: 0.3;
      --after-pos-y: 0;
      --before-opacity: 1;
      --btn-offset: 5;

      &:active {
        --btn-scale: 0.98;
        --after-blur: 15;
      }
    }
  }
}


/* Contenedor principal de la cuadrícula */
.main-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Dos columnas de igual ancho */
  grid-template-rows: repeat(2, 1fr);
  /* Dos filas de igual altura */
  gap: 15px;
  /* Espacio entre los elementos de la cuadrícula */
  width: 35%;
  /* Ajusta el ancho total del contenedor según tu diseño */
  max-width: 1000px;
  /* Ancho máximo para que no se extienda demasiado */
  margin: 5px 650px;
  /* Centra el contenedor horizontalmente y dale un margen superior */
  padding: 20px;
  background-color: #3133463a;
  /* Color de fondo similar al de la imagen */
  border-radius: 15px;
  /* Bordes ligeramente redondeados para el contenedor principal */
}

/* Estilos base para cada elemento de la cuadrícula */
.grid-item {
  position: relative;
  /* Necesario para posicionar la imagen y el overlay */
  background-color: white;
  /* Fondo blanco por defecto, algunas tendrán colores específicos */
  border-radius: 20px;
  /* Bordes redondeados para las tarjetas */
  overflow: hidden;
  /* Asegura que la imagen y el contenido no se salgan de los bordes redondeados */
  display: flex;
  /* Usamos flexbox para centrar la imagen dentro del item */
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  /* Sombra sutil */
  aspect-ratio: 1 / 1;
  /* Hace que los elementos sean cuadrados */
}

/* Estilos para las imágenes dentro de los elementos */
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Asegura que la imagen cubra todo el espacio sin distorsionarse */
  display: block;
  /* Elimina espacio extra debajo de la imagen */
  border-radius: 20px;
  /* Bordes redondeados para las imágenes también */
}

/* Fondos de color sólido para algunas tarjetas (si la imagen no las cubre completamente o son solo color) */
.grid-item.blue-bg {
  background-color: #007bff;
  /* Un azul similar al de la imagen */
}

.grid-item.green-bg {
  background-color: #28a745;
  /* Un verde similar al de la imagen */
}

/* Estilos para el texto superpuesto */
.text-overlay {
  position: absolute;
  /* Posiciona el texto sobre la imagen */
  bottom: 20px;
  /* Distancia desde la parte inferior */
  /*left: 50%;*/
  /* Centrar horizontalmente */
  transform: translateX(-50%);
  /* Ajuste para centrado perfecto */
  background-color: rgba(0, 0, 0, 0.5);
  /* Fondo semitransparente oscuro */
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1em;
  white-space: nowrap;
  /* Evita que el texto se rompa en varias líneas */
  text-align: center;
  backdrop-filter: blur(5px);
  /* Efecto de desenfoque detrás del texto (moderno) */
  -webkit-backdrop-filter: blur(5px);
  /* Para compatibilidad con Safari */
}

/* Ajustes específicos para el texto "Y a tus hijos" que parece tener un fondo diferente */
.top-right .text-overlay {
  background-color: rgba(255, 255, 255, 0.8);
  /* Fondo semitransparente blanco */
  color: #333;
  /* Texto oscuro */
  top: 20px;
  /* Posicionado arriba */
  bottom: auto;
  /* Desactivar bottom */
  border-radius: 5px;
  /* Bordes menos redondeados */
  font-size: 1.2em;
  padding: 8px 15px;
}

/* Media Queries para diseño responsivo */
@media (max-width: 768px) {
  .main-grid-container {
    grid-template-columns: 1fr;
    /* Una sola columna en pantallas pequeñas */
    width: 90%;
  }
}

.has-background-dark-blue {
  background-color: #0A1931;
  /* Un tono de azul oscuro */
  padding: 3rem 0;
  /* Espaciado interno para la sección */
}

/* Si quieres el color de los títulos igual al de la imagen original */
.has-text-white {
  color: #ffffff;
  /* Asegura que el texto sea blanco para contrastar con el fondo oscuro */
}

/* Para que los iconos se vean bien, asegúrate de que sean blancos o de un color claro */
/* Si tus iconos son SVG, puedes estilizarlos con CSS si les das un fill: white; por ejemplo. */

.custom-footer {
  background-color: #1d394e;
  /* A dark blue-gray similar to the image */
  color: #ffffff;
  /* White text for all content */
  padding: 3rem 0;
  font-size: 0.9rem;
}

.custom-footer .column h6 {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 1.5rem;
  /* Spacing below titles */
  font-size: 1rem;
}

.custom-footer ul {
  list-style: none;
  margin-left: 0;
}

.custom-footer ul li {
  margin-bottom: 0.75rem;
  /* Spacing between list items */
}

.custom-footer ul li a {
  color: #b0b4bb;
  /* Lighter grey for links */
  text-decoration: none;
}

.custom-footer ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.social-icons .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  /* Adjust size as needed */
  height: 40px;
  /* Adjust size as needed */
  border: 1px solid #b0b4bb;
  /* Light gray border */
  border-radius: 50%;
  color: #b0b4bb;
  margin-right: 0.75rem;
  transition: all 0.2s ease-in-out;
}

.social-icons .icon:hover {
  border-color: #ffffff;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.language-selector span {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: #b0b4bb;
  border: 1px solid #b0b4bb;
  margin-right: 0.5rem;
  cursor: pointer;
  border-radius: 3px;
}

.language-selector span.is-active {
  border-color: #55c762;
  /* Green border for active language */
  color: #55c762;
  /* Green text for active language */
}

.gig-logo {
  text-align: right;
  font-weight: bold;
  color: #55c762;
  /* Green color for GIG */
  font-size: 1.2rem;
  margin-top: 2rem;
  /* Spacing from above content */
}

.section-about-mission, .section-vision {
            padding: 6rem 1.5rem;
            overflow: hidden;
        }
        .section-about-mission {
            background-color: #ffffff;
        }
        .section-vision {
            background-color: #f7f9fb; /* Un gris muy claro para contraste sutil */
        }

        /* --- Animaciones de Entrada --- */
        .content-column, .vision-content-column {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn-up 1s ease-out forwards;
        }
        .image-column {
            opacity: 0;
            transform: translateX(-20px);
            animation: fadeIn-left 1s ease-out forwards;
        }
        .vision-image-column {
            opacity: 0;
            transform: translateX(20px);
            animation: fadeIn-right 1s ease-out forwards;
        }
        
        /* Keyframes para las animaciones */
        @keyframes fadeIn-up {
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn-left {
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeIn-right {
            to { opacity: 1; transform: translateX(0); }
        }

        /* --- Estilos de Títulos y Textos --- */
        .dynamic-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #363636;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .dynamic-text {
            color: #5a5a5a;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        /* --- Estilos para las Tarjetas --- */
        .mission-card, .vision-card {
            color: white;
            padding: 2.5rem;
            border-radius: 12px;
            margin-top: 2rem;
            transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
        }
        .mission-card {
            background: linear-gradient(135deg, #00d1b2, #3273dc);
            box-shadow: 0 15px 30px rgba(50, 115, 220, 0.25);
        }
        .vision-card {
            background: linear-gradient(135deg, #2c3e50, #4a6da7);
            box-shadow: 0 15px 30px rgba(44, 62, 80, 0.25);
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px) scale(1.02);
        }
        .mission-card:hover {
            box-shadow: 0 25px 40px rgba(50, 115, 220, 0.3);
        }
        .vision-card:hover {
            box-shadow: 0 25px 40px rgba(44, 62, 80, 0.3);
        }

        .card-content .title {
            color: white;
            font-weight: 600;
        }
        .card-content .subtitle {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            font-weight: 300;
        }

        /* --- Estilos para las Imágenes --- */
        .dynamic-image {
            object-fit: cover;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .section-mision {
    background-color: #0A1931;
}

/* --- Estilos para la sección de tarjetas --- */
        .section-why-us {
            padding: 6rem 1.5rem;
            background-color: #f5f7fa; /* Un fondo gris claro y limpio */
        }

        .why-us-intro .title {
            color: #363636;
        }

        .why-us-intro .title .highlight {
            color: #3273dc; /* Color primario para resaltar */
        }

        .why-us-intro .subtitle {
            max-width: 800px; /* Limita el ancho del párrafo para mejor lectura */
            margin-left: auto;
            margin-right: auto;
            color: #5a5a5a;
        }

        /* Estilo de la tarjeta de beneficio */
        .benefit-card {
            background-color: #ffffff;
            border-radius: 8px;
            border-top: 4px solid; /* Borde superior de color */
            padding: 2rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%; /* Asegura que todas las tarjetas tengan la misma altura */
            display: flex;
            flex-direction: column;
            text-align: center;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        /* Colores de borde para cada tarjeta */
        .benefit-card.is-info { border-color: #3273dc; }
        .benefit-card.is-success { border-color: #48c774; }
        .benefit-card.is-warning { border-color: #ffdd57; }
        .benefit-card.is-danger { border-color: #f14668; }

        .benefit-card .icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        /* Colores de icono que coinciden con el borde */
        .benefit-card.is-info .icon { color: #3273dc; }
        .benefit-card.is-success .icon { color: #48c774; }
        .benefit-card.is-warning .icon { color: #ffdd57; }
        .benefit-card.is-danger .icon { color: #f14668; }

        .benefit-card .title {
            margin-bottom: 0.5rem !important;
        }

        .benefit-card .content {
            font-size: 0.95rem;
            color: #7a7a7a;
        }
        
        .final-cta {
            margin-top: 4rem;
        }

        /* --- Estilos para la sección del Iframe --- */
        .section-iframe-cotizador {
            padding: 6rem 1.5rem;
            background-color: #ffffff;
        }

        .iframe-wrapper {
            /* Se elimina max-width para que ocupe el ancho del contenedor padre */
            margin: 2rem auto 0 auto; /* Centrado y con margen superior */
            border-radius: 16px; /* Bordes redondeados */
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); /* Sombra más pronunciada */
            overflow: hidden; /* Esconde las esquinas del iframe */
        }

        .iframe-wrapper iframe {
            width: 100%;
            height: 790px; /* Se aumenta la altura */
            display: block; /* Elimina espacio extra debajo del iframe */
            border: none; /* Asegura que no haya borde del iframe */
        }

        .financial-protection-section {
    background-color: #f0f2f5; /* Un tono de gris claro similar al de la imagen */
    padding: 50px 0; /* Añade un poco de espacio vertical */
}

.financial-protection-section .title {
    color: #212529; /* Texto principal más oscuro */
}

.financial-protection-section .subtitle {
    color: #6c757d; /* Subtítulo grisáceo */
}

/* Mantén los otros estilos para las tarjetas */
.benefit-card {
    background-color: #fff; /* Fondo blanco para las tarjetas */
    border-radius: 10px;
    border: 1px solid #dee2e6;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 1rem; /* Espacio entre tarjetas */
}

.icon-container {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    border: 1px solid #ced4da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6c757d;
    font-size: 1rem;
}

.benefit-card .icon.is-large {
    margin-bottom: 15px;
}

.benefit-card .icon.has-text-info {
    color: #00aaff !important; /* Mantén el azul para los íconos */
}