.elementor-kit-10{--e-global-color-primary:#2C3E2D;--e-global-color-secondary:#E0DCD5;--e-global-color-text:#4A4A4A;--e-global-color-accent:#B8A88A;--e-global-color-e3f9143:#F5F2ED;--e-global-color-94da7b8:#FFFFFF;--e-global-color-bda542a:#1A1A1A;--e-global-color-fc4f774:#8C8C8C;--e-global-typography-primary-font-family:"Cormorant Garamond";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Archivo";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Archivo";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"DM Mono";--e-global-typography-accent-font-weight:500;}.elementor-kit-10 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Suavizado general */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Cursor personalizado */
body {
    cursor: default;
}

a {
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

/* Selección de texto con color de marca */
::selection {
    background: #B8A88A;
    color: #1A1A1A;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #F5F2ED;
}

::-webkit-scrollbar-thumb {
    background: #B8A88A;
    border-radius: 0;
}

/* Transiciones globales */
a, button, .elementor-button {
    transition: all 0.3s ease;
}

/* Imagen hover global */
.caso-imagen img {
    transition: transform 0.6s ease, filter 0.6s ease;
}

.caso-imagen:hover img {
    transform: scale(1.03);
}

style>
  /* ============================================
     FUENTES — añade esto en Elementor > Tipografía
     o en el <head> de tu tema
  ============================================ */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap');

  /* ============================================
     SECCIÓN COMPLETA — "CÓMO TRABAJAMOS"
  ============================================ */
  .gp-section {
    background: #fff;
    padding: 100px 0;
    font-family: 'DM Sans', sans-serif;
  }

  .gp-section-label {
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6b8f5e;
    margin-bottom: 16px;
  }

  .gp-section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 auto 80px;
    max-width: 560px;
    line-height: 1.15;
  }

  /* ============================================
     TIMELINE WRAPPER
  ============================================ */
  .gp-timeline {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Línea vertical central */
  .gp-timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #e8e8e8;
    z-index: 0;
  }

  /* Línea de progreso (se rellena con JS) */
  .gp-timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #6b8f5e, #a8c99a);
    border-radius: 2px;
    transition: height 0.1s linear;
  }

  /* ============================================
     CADA PASO
  ============================================ */
  .gp-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .gp-step.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Pasos impares → contenido izquierda */
  .gp-step:nth-child(odd) {
    flex-direction: row-reverse;
  }

  /* ---- Punto central ---- */
  .gp-step-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f7ee;
    border: 2px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #aaa;
    z-index: 2;
    transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
    flex-shrink: 0;
  }

  .gp-step.visible .gp-step-dot {
    background: #6b8f5e;
    border-color: #6b8f5e;
    color: #fff;
    box-shadow: 0 0 0 6px rgba(107, 143, 94, 0.15);
  }

  /* ---- Contenido (tarjeta) ---- */
  .gp-step-content {
    width: calc(50% - 48px);
    padding: 28px 32px;
    background: #fafaf9;
    border: 1px solid #f0eeec;
    border-radius: 12px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .gp-step:nth-child(odd) .gp-step-content {
    margin-right: 48px;
    text-align: right;
  }

  .gp-step:nth-child(even) .gp-step-content {
    margin-left: 48px;
    text-align: left;
  }

  .gp-step.visible .gp-step-content {
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border-color: #e0ead9;
  }

  .gp-step-number {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b8f5e;
    margin-bottom: 8px;
    display: block;
  }

  .gp-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.25;
  }

  .gp-step-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
  }

  /* ============================================
     RESPONSIVE MÓVIL — todo a la izquierda
  ============================================ */
  @media (max-width: 640px) {
    .gp-timeline-track { left: 20px; }

    .gp-step,
    .gp-step:nth-child(odd) {
      flex-direction: row;
    }

    .gp-step-dot {
      left: 20px;
      width: 38px;
      height: 38px;
      font-size: 13px;
    }

    .gp-step-content,
    .gp-step:nth-child(odd) .gp-step-content {
      margin-left: 58px;
      margin-right: 0;
      width: 100%;
      text-align: left;
    }
  }
</style>/* End custom CSS */