  
    body {
      font-family: 'Poppins', sans-serif;
    }

    .title {
      color: var(--corp-color);
    }

    .footer_standard {
      background-color: var(--corp-color);
      color: white;
      padding: 20px;
    }

    .header-text {
      background-color: none !important;
      min-height: 10rem;
      color: var(--corp-color);
    }

    .boton-send {
      background-color: var(--corp-color);
      color: white;
      border: none;
    }

    .boton-send:hover {
      background-color: var(--corp-color);
      color: white !important;
      font-weight: bold
    }

    .sticky-form {
      position: sticky;
      top: 80px;
      /* o lo que necesites para que no tape el header */
      z-index: 10;
    }

    #backToListingBtn {
      position: fixed;
      top: 20px;
      left: 5rem;
      z-index: 1000;
      border: 1px solid var(--corp-color);
      color: var(--corp-color);
      background-color: white;
      padding: 0.5rem 1rem;
      font-weight: 500;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Hover */
    #backToListingBtn:hover {
      background-color: var(--corp-color);
      color: white !important;
    }

    /* Ocultar en pantallas pequeñas */
    @media (max-width: 767.98px) {
      #backToListingBtn {
        display: none !important;
      }
      
    }

    #scrollTopButton {
      display: none;
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      background-color: var(--corp-color);
      color: white;
      border: none;
      outline: none;
      padding: 12px 16px;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      font-size: 18px;
      transition: opacity 0.3s ease;
    }

    #scrollTopButton:hover {
      background-color: #333;
    }

    .checkbox-shadow {
      box-shadow: 0 0 6px rgba(0, 0, 0, 0.50);
      transition: box-shadow 0.3s ease;
    }

    .checkbox-shadow:checked {
      box-shadow: 0 0 8px rgba(0, 123, 255, 0.6);
      /* opcional: sombra azul al activar */
    }

    .card-header {
      background-color: var(--corp-color);
      color: white !important;
      font-weight: bold
    }

    .img-wrapper-carousel {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .img-wrapper-carousel img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    .img-overlay-carousel {
      position: absolute;
      top: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      font-weight: bold;
      font-size: 1.25rem;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      text-align: center;
      padding: 1rem;
    }
 
    .page-loader {
      position: fixed;
      inset: 0;
      background: #fff;
      display: grid;
      place-items: center;
      z-index: 2000;
      transition: opacity .25s ease;
    }

    .page-loader.is-hidden {
      opacity: 0;
      pointer-events: none;
    }

    /* Spinner */
    .spinner {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      border: 4px solid #eee;
      border-top-color: var(--corp-color, #1ab394);
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .page-loader {
      position: fixed;
      inset: 0;
      background: #fff;
      display: grid;
      place-items: center;
      z-index: 2000;
      transition: opacity .25s ease;
    }

    .page-loader.is-hidden {
      opacity: 0;
      pointer-events: none;
    }

    .loader-content {
      text-align: center;
    }

    .loader-logo {
      max-height: 150px;
      object-fit: contain;
    }

    .loader-text {
      font-size: 2rem;
      color: #333;
      margin-top: 0.5rem;
    }

    /* Spinner */
    .spinner {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      border: 4px solid #eee;
      border-top-color: var(--corp-color, #1ab394);
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    @media (max-width: 1200px) {
  .loader-text {
    font-size: 1rem;
    color: #333;
    margin-top: 0.5rem;
  }}