.no-active-style:active,
.no-active-style:focus {
  background-color: transparent !important; /* o el color que quieras mantener */
  box-shadow: none !important;              /* opcional, si también cambia la sombra */
}
/* Responsivo */
@media (max-width: 1024px){
  .hero__side{ width: min(50vw, 520px); opacity:.9; }
  .hero__bricks{ width: min(48vw, 560px); opacity:.35; }
}
@media (max-width: 680px){
  .hero__side{ width: 70vw; opacity:.9; }
  .hero__bricks{ display:none; }
}

@keyframes pulso {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.btn-cta{animation: pulso 1.5s infinite;}

@media (min-width: 3601px) and (max-width: 3700px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: 130px;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 95px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 70px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 55px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 80px !important;              /* ajusta al tamaño de la imagen */
    height: 80px !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.8s ease-in-out infinite;
    margin-top: 30px;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(35px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-35px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 1950px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 90px;
    margin-top: 130px !important;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 105px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 165px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 3501px) and (max-width: 3600px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: 130px;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 95px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 70px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 55px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 80px !important;              /* ajusta al tamaño de la imagen */
    height: 80px !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.8s ease-in-out infinite;
    margin-top: 30px;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(35px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-35px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 1950px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 90px;
    margin-top: 130px !important;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 105px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 165px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 3401px) and (max-width: 3500px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: 130px;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 95px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 70px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 55px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 80px !important;              /* ajusta al tamaño de la imagen */
    height: 80px !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.8s ease-in-out infinite;
    margin-top: 30px;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(35px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-35px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 1800px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 90px;
    margin-top: 130px !important;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 95px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 150px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 3201px) and (max-width: 3400px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 85px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 60px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 55px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 80px !important;              /* ajusta al tamaño de la imagen */
    height: 80px !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.8s ease-in-out infinite;
    margin-top: 30px;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(35px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-35px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 1600px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 90px;
    margin-top: 130px !important;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 85px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 130px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 2901px) and (max-width: 3200px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 75px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 55px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 45px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 70px !important;              /* ajusta al tamaño de la imagen */
    height: 70px !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.8s ease-in-out infinite;
    margin-top: 30px;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(35px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-35px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 1400px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 100px !important;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 80px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 110px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 2801px) and (max-width: 2900px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 75px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 55px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 45px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 70px !important;              /* ajusta al tamaño de la imagen */
    height: 70px !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.8s ease-in-out infinite;
    margin-top: 30px;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(35px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-35px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 1400px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 100px !important;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 80px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 110px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 2701px) and (max-width: 2800px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 75px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 55px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 45px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 70px !important;              /* ajusta al tamaño de la imagen */
    height: 70px !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.8s ease-in-out infinite;
    margin-top: 30px;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(35px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-35px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 1400px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 80px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 80px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 110px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 2601px) and (max-width: 2700px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 70px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 50px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 40px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 60px !important;              /* ajusta al tamaño de la imagen */
    height: 60px !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.8s ease-in-out infinite;
    margin-top: 30px;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(35px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-35px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: min(1200px, 92vw);                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 65px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 100px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 2401px) and (max-width: 2600px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 70px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 50px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 40px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 60px !important;              /* ajusta al tamaño de la imagen */
    height: 60px !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.8s ease-in-out infinite;
    margin-top: 30px;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(35px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-35px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: min(1200px, 92vw);                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 65px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 100px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 2301px) and (max-width: 2400px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 70px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 50px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 40px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 60px !important;              /* ajusta al tamaño de la imagen */
    height: 60px !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.8s ease-in-out infinite;
    margin-top: 30px;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(35px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-35px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: min(1200px, 92vw);                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 65px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 100px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 2201px) and (max-width: 2300px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 70px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 50px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 40px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 60px !important;              /* ajusta al tamaño de la imagen */
    height: 60px !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.8s ease-in-out infinite;
    margin-top: 30px;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(35px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-35px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 13%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 15%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: min(1200px, 92vw);                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: clamp(28px, 4.2vw, 56px);
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: clamp(36px, 8vw, 80px);
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 2101px) and (max-width: 2200px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: min(1200px, 92vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 60px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 40px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 40px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 60px !important;              /* ajusta al tamaño de la imagen */
    height: 60px !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 13%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 15%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: min(1200px, 92vw);                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: clamp(28px, 4.2vw, 56px);
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: clamp(36px, 8vw, 80px);
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 2001px) and (max-width: 2100px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: min(1200px, 92vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 60px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 40px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 40px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 60px !important;              /* ajusta al tamaño de la imagen */
    height: 60px !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 13%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 15%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: min(1200px, 92vw);                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: clamp(28px, 4.2vw, 56px);
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: clamp(36px, 8vw, 80px);
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 1951px) and (max-width: 2000px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: min(1200px, 92vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 50px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 30px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 30px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 13%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 15%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: min(1200px, 92vw);                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: clamp(28px, 4.2vw, 56px);
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: clamp(36px, 8vw, 80px);
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}

@media (min-width: 1920px) and (max-width: 1950px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: min(1200px, 92vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 50px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 30px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 30px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 13%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 15%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: min(1200px, 92vw);                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 4px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: clamp(28px, 4.2vw, 56px);
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: clamp(36px, 8vw, 80px);
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 1800px) and (max-width: 1919px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: min(1200px, 92vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 50px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 30px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 30px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 25%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 13%; top: 20%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 15%; top: 15%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 1000px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: clamp(28px, 4.2vw, 56px);
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: clamp(36px, 8vw, 80px);
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 1700px) and (max-width: 1799px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: min(1200px, 92vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 50px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 30px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 30px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 23%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 1000px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 0px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: clamp(28px, 4.2vw, 56px);
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: clamp(36px, 8vw, 80px);
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 1600px) and (max-width: 1699px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: min(1200px, 92vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 50px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 30px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 30px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 23%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 1000px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 0px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 50px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: clamp(36px, 8vw, 80px);
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 1500px) and (max-width: 1599px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: min(1200px, 92vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 45px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 28px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 26px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 23%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 1000px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 0px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 50px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: clamp(36px, 8vw, 80px);
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 1400px) and (max-width: 1499px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: min(1200px, 92vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 20%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 45px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 28px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 26px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 23%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 10%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 10%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 900px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 50px;
    margin-top: 0px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 45px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: clamp(36px, 8vw, 80px);
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 1300px) and (max-width: 1399px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: min(1200px, 92vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 13%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 40px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 24px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 10%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 24px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 23%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 7%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 7%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 900px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 30px;
    margin-top: 0px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 45px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: clamp(36px, 8vw, 80px);
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 1200px) and (max-width: 1299px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: min(1200px, 92vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 13%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 40px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 24px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 10%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 24px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 23%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 7%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 7%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 750px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 30px;
    margin-top: 0px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 40px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 60px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 1101px) and (max-width: 1199px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: min(1200px, 92vw);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 13%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 40px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 24px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 10%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 24px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 23%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 10%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 7%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 7%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 750px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 30px;
    margin-top: 0px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 40px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 60px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 1000px) and (max-width: 1100px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 13%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 50px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 35px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 10%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 24px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 23%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 15%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 5%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 5%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 750px;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 30px;
    margin-top: 70px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 42px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 60px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 901px) and (max-width: 999px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 23%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 40px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 30px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 15%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 24px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 35%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 15%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 5%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 5%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 90%;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 30px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 50px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 90px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 801px) and (max-width: 900px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 23%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 37px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 25px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 17%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 20px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 35%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 15%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 3%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 3%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 90%;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 30px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 40px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 90px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 701px) and (max-width: 800px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 25%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 34px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 22px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 19%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 20px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 35%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 15%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 3%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 3%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 90%;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 30px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 35px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 70px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 601px) and (max-width: 700px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 40%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 40px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 27px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 24%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 20px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 35%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 15%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 3%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 3%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 90%;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 30px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 35px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 70px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 501px) and (max-width: 600px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 40%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 35px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 22px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 24%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 20px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 35%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 15%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 3%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 3%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 90%;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 30px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 32px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 40px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 401px) and (max-width: 500px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 40%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 30px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 20px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 24%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 20px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 35%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 15%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 3%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 3%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 90%;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 10px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 28px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 30px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 301px) and (max-width: 400px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 40%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 25px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 12px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 24%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 13px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 35%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 15%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 3%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 3%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 90%;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 10px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 28px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 30px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}
@media (min-width: 1px) and (max-width: 300px){
  /* ======= Hero CMOTDUV ======= */
  .cmotdu-hero{
    --bg:#0f3a44;            /* azul verdoso del fondo */
    --text:#e9f2f4;
    --muted:#b9c6cc;
    --cta:#c7643e;           /* botón */
    --arrow-bg:#0d3a2b;      /* pastilla oscura de la flecha */
    --arrow-clr:#ffffff;
  
    position: relative;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    padding: clamp(48px, 8vw, 72px) 0;
    isolation: isolate;
  }
  
  /* Contenido centrado */
  .hero__content{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .hero__top-deco{
    display:block;
    margin: 0 auto clamp(18px, 2.8vw, 26px);
    width: 40%;
    height: auto;
  }
  
  .hero__title{
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 25px;
    line-height: 1.1;
    color: #f0e7dd;
  }
  .hero__subtitle{
    margin: 10px 0 0;
    font-size: 12px;
    color: #f0e7dd;
    line-height: 1.35;
  }
  
  .hero__mid-deco{
    display:block;
    margin: clamp(16px, 2.8vw, 22px) auto clamp(26px, 3.4vw, 34px);
    width: 24%;
    height: auto;
  }
  
  /* CTA + Flecha */
  .hero__cta{
    display: grid;
    place-items: center;
    gap: 12px;
  }
  
  .btn-cta{
    display:inline-block;
    font-size: 13px;
    font-style: italic;
    background: #8a4227;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 6px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
    transition: transform .15s ease, filter .15s ease;
  }
  .btn-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); background: #c05c37;}
  
  /* Pastilla con imagen de flecha */
  .btn-arrow{
    appearance: none;
    border: 0;
    background: transparent; /* sin fondo */
    width: 40px;              /* ajusta al tamaño de la imagen */
    height: 40px;
    display: grid;
    place-items: center;
    cursor: pointer;
    animation: arrowFloat 1.4s ease-in-out infinite;
  }
  
  .arrow-img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Animación */
  @keyframes arrowFloat{
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
  
  /* Ilustraciones laterales */
  .hero__side{
    position: absolute;
    bottom: 0;
    width: 35%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }
  .hero__side--left{  left: -2vw; }
  .hero__side--right{ right: -2vw; }
  
  @keyframes brickFloat {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(25px); } /* distancia a la derecha */
  }
  @keyframes brickFloatReverse {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-25px); } /* hacia la izquierda */
  }
  
  /* Ladrillos */
  .hero__bricks{
    position: absolute;
    top: 0;
    width: 15%;
    height: auto;
    opacity: .45;
    z-index: 1;
    pointer-events: none;
    animation: brickFloat 3s ease-in-out infinite;
  }
  .hero__bricks--left{ left: 3%; top: 25%; animation: brickFloat 3s ease-in-out infinite;}
  .hero__bricks--right{ right: 3%; top: 20%; animation: brickFloatReverse 3s ease-in-out infinite;}
  
  /* Contenedor del título + montaña */
  .title-row{
    position: relative;
    display: grid;
    grid-template-columns: auto max-content; /* texto a la izq, imagen a la der */
    align-items: end;                         /* alinea ambos abajo */
    gap: clamp(8px, 3vw, 24px);
    width: 90%;                 /* opcional: ancho del bloque */
    /*margin: 0 auto clamp(18px, 3vw, 28px);*/  
    margin-bottom: 10px;
    margin-top: 50px;                  
    padding-bottom: 10px; /* espacio para la línea */
  }
  
  /* Línea única debajo de texto + montaña */
  .title-row::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;           /* la línea se extiende bajo todo el bloque */
    bottom: 0;
    height: 3px;        /* grosor */
    background: #d4b48c;/* color beige de tu ejemplo */
    border-radius: 2px;
  }
  
  /* Título */
  .title-row h2{
    margin: 0;
    font-weight: 800;
    color: #b65333;     /* color del título */
    font-size: 28px;
    line-height: 1.05;
  }
  
  /* Montaña alineada con la línea */
  .title-row__mountain{
    height: 30px;
    width: auto;
    align-self: end;
    position: relative;
    z-index: 1;         /* encima de la línea */
    margin-bottom: -2px;/* ajústalo si necesitas que “se siente” sobre la línea */
  }
}