/* =========================================
   VARIABLES
========================================= */

:root {

    --verde-950: #0d281c;
    --verde-900: #123723;
    --verde-850: #17412a;
    --verde-800: #19482d;
    --verde-700: #28613a;
    --verde-600: #39774a;
    --verde-500: #5d914e;

    --verde-claro: #dfead7;
    --verde-suave: #edf4e9;

    --oliva: #879b4f;
    --oliva-oscuro: #708440;
    --oliva-claro: #eef1df;

    --crema: #f8f3e8;
    --crema-oscuro: #efe6d6;

    --tierra: #a7784f;
    --tierra-oscuro: #855b39;
    --tierra-claro: #f2e7dc;

    --blanco: #ffffff;

    --texto: #203029;
    --texto-secundario: #657069;
    --texto-claro: #dce7df;

    --borde:
        rgba(24, 72, 45, 0.10);

    --sombra-suave:
        0 14px 36px
        rgba(13, 40, 28, 0.08);

    --sombra-media:
        0 20px 50px
        rgba(13, 40, 28, 0.12);

}


/* =========================================
   GENERAL
========================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

    scroll-padding-top: 90px;

}


body {

    width: 100%;

    min-width: 320px;

    overflow-x: hidden;

    font-family:
        "Manrope",
        Arial,
        Helvetica,
        sans-serif;

    color:
        var(--texto);

    background:
        var(--crema);

    line-height: 1.6;

    -webkit-font-smoothing:
        antialiased;

    -moz-osx-font-smoothing:
        grayscale;

}


img {

    display: block;

    max-width: 100%;

    height: auto;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    font: inherit;

}


svg {

    display: block;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;

}


.contenedor {

    width:
        min(1180px, 92%);

    margin-inline: auto;

}


/* =========================================
   ORDEN DE SECCIONES
========================================= */

main {

    display: flex;

    flex-direction: column;

}


.inicio {

    order: 1;

}


.propuesta {

    order: 2;

}


.despacho {

    order: 3;

}


.como-comprar {

    order: 4;

}


.origen {

    order: 5;

}


.beneficios {

    order: 6;

}


.clientes {

    order: 7;

}


.contacto-final {

    order: 8;

}


/* =========================================
   HEADER
========================================= */

.encabezado {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(248, 243, 232, 0.97);

    -webkit-backdrop-filter:
        blur(16px);

    backdrop-filter:
        blur(16px);

    border-bottom:
        1px solid
        var(--borde);

    transition:
        box-shadow 0.25s ease,
        background 0.25s ease;

}


.encabezado.scrolled {

    background:
        rgba(248, 243, 232, 0.99);

    box-shadow:
        0 8px 28px
        rgba(13, 40, 28, 0.10);

}


.navegacion {

    min-height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 26px;

}


.marca {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.logo-principal {

    width: 205px;

    height: auto;

    flex-shrink: 0;

}


/* =========================================
   MENÚ
========================================= */

.menu {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 20px;

}


.menu > a:not(.menu-precio) {

    position: relative;

    padding: 10px 0;

    color: #344039;

    font-size: 15px;

    font-weight: 600;

    white-space: nowrap;

}


.menu > a:not(.menu-precio)::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 2px;

    width: 0;

    height: 2px;

    border-radius: 4px;

    background:
        var(--verde-600);

    transition:
        width 0.2s ease;

}


.menu > a:not(.menu-precio):hover {

    color:
        var(--verde-700);

}


.menu > a:not(.menu-precio):hover::after {

    width: 100%;

}


.menu-precio {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding:
        10px
        15px;

    border-radius: 10px;

    background:
        var(--verde-700);

    color: white;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 8px 20px
        rgba(40, 97, 58, 0.16);

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.menu-precio:hover {

    background:
        var(--verde-900);

    transform:
        translateY(-1px);

}


/* =========================================
   MENÚ MÓVIL
========================================= */

.menu-toggle {

    display: none;

    width: 46px;

    height: 46px;

    padding: 10px;

    border: none;

    border-radius: 10px;

    background:
        var(--verde-claro);

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 100%;

    height: 2px;

    margin: 5px 0;

    border-radius: 5px;

    background:
        var(--verde-900);

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;

}


.menu-toggle.activo
span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.menu-toggle.activo
span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.activo
span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================
   HERO
========================================= */

.inicio {

    position: relative;

    overflow: hidden;

    padding:
        60px
        0
        75px;

    background:

        radial-gradient(
            circle at 92% 18%,
            rgba(135, 155, 79, 0.30),
            transparent 31%
        ),

        radial-gradient(
            circle at 8% 90%,
            rgba(167, 120, 79, 0.12),
            transparent 27%
        ),

        linear-gradient(
            135deg,
            #f9f6ec 0%,
            #e6efd9 55%,
            #dfe9ce 100%
        );

}


.inicio-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    align-items: center;

    gap: 55px;

}


.etiqueta {

    display: inline-flex;

    padding:
        6px
        14px;

    margin-bottom: 18px;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.65);

    border:
        1px solid
        rgba(40, 97, 58, 0.12);

    color:
        var(--verde-700);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;

}


.inicio h1 {

    max-width: 680px;

    margin-bottom: 22px;

    color:
        var(--verde-950);

    font-size:
        clamp(
            48px,
            5.2vw,
            70px
        );

    font-weight: 800;

    letter-spacing: -2.5px;

    line-height: 1;

}


.inicio h1 span {

    display: block;

    margin-top: 10px;

    color:
        var(--oliva);

}


.texto-principal {

    max-width: 620px;

    margin-bottom: 24px;

    color: #526058;

    font-size: 18px;

    line-height: 1.65;

}


/* =========================================
   DATOS HERO
========================================= */

.inicio-datos {

    display: flex;

    flex-wrap: wrap;

    gap:
        10px
        20px;

    margin-bottom: 27px;

}


.inicio-datos div {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #46534b;

    font-size: 13px;

    font-weight: 600;

}


.inicio-datos svg {

    width: 18px;

    height: 18px;

    flex-shrink: 0;

    color:
        var(--verde-700);

}


.microtexto {

    margin-top: 12px;

    color: #6f786f;

    font-size: 11px;

}


/* =========================================
   BOTONES
========================================= */

.botones {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.boton {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding:
        12px
        22px;

    border: 0;

    border-radius: 11px;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.25;

    text-align: center;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;

}


.boton:hover {

    transform:
        translateY(-2px);

}


.boton svg {

    width: 20px;

    height: 20px;

    flex-shrink: 0;

}


.boton-principal {

    background:
        var(--verde-700);

    color: white;

    box-shadow:
        0 10px 24px
        rgba(40, 97, 58, 0.20);

}


.boton-principal:hover {

    background:
        var(--verde-900);

}


.boton-precio-principal {

    min-height: 56px;

    padding:
        14px
        25px;

}


.boton-secundario {

    min-height: 56px;

    background:
        rgba(255, 255, 255, 0.70);

    color:
        var(--verde-900);

    border:
        1px solid
        rgba(24, 72, 45, 0.16);

}


.boton-grande {

    min-height: 56px;

    padding:
        14px
        27px;

}


/* =========================================
   FOTO HERO
========================================= */

.imagen-hero {

    position: relative;

    min-width: 0;

}


.imagen-hero > img {

    width: 100%;

    height: 455px;

    object-fit: cover;

    border-radius: 28px;

    border:
        4px solid
        rgba(255, 255, 255, 0.75);

    box-shadow:
        var(--sombra-media);

}


.hero-badge {

    position: absolute;

    background:
        rgba(248, 243, 232, 0.97);

    -webkit-backdrop-filter:
        blur(10px);

    backdrop-filter:
        blur(10px);

    box-shadow:
        var(--sombra-media);

}


.hero-badge-origen {

    left: -20px;

    bottom: 28px;

    padding:
        15px
        18px;

    border-radius: 14px;

    border-left:
        4px solid
        var(--tierra);

}


.hero-badge-origen span {

    display: block;

    color:
        var(--tierra);

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;

}


.hero-badge-origen strong {

    display: block;

    color:
        var(--verde-950);

    font-size: 17px;

}


.hero-badge-origen small {

    font-size: 10px;

}


.hero-badge-despacho {

    top: 24px;

    right: -20px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        12px
        15px;

    border-radius: 14px;

    border-left:
        4px solid
        var(--oliva);

}


.hero-badge-despacho svg {

    width: 25px;

    height: 25px;

    flex-shrink: 0;

    color:
        var(--verde-700);

}


.hero-badge-despacho span {

    display: block;

    font-size: 10px;

}


.hero-badge-despacho strong {

    font-size: 14px;

}


/* =========================================
   PROPUESTA
========================================= */

.propuesta {

    position: relative;

    z-index: 5;

    margin-top: -24px;

}


.propuesta-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    overflow: hidden;

    border-radius: 20px;

    box-shadow:
        var(--sombra-media);

}


.propuesta-item {

    display: flex;

    align-items: center;

    gap: 16px;

    min-height: 108px;

    padding:
        22px
        27px;

}


.propuesta-item:nth-child(1) {

    background: #f4f8ee;

}


.propuesta-item:nth-child(2) {

    background:
        var(--oliva-claro);

}


.propuesta-item:nth-child(3) {

    background:
        var(--tierra-claro);

}


.icono {

    width: 46px;

    height: 46px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 13px;

}


.icono svg {

    width: 23px;

    height: 23px;

}


.icono-verde {

    background:
        var(--verde-claro);

    color:
        var(--verde-700);

}


.icono-oliva {

    background:
        #dde4bd;

    color:
        var(--oliva-oscuro);

}


.icono-tierra {

    background:
        #e8d1bd;

    color:
        var(--tierra-oscuro);

}


.propuesta-item h3 {

    color:
        var(--verde-950);

    font-size: 15px;

}


.propuesta-item p {

    color:
        var(--texto-secundario);

    font-size: 12px;

}


/* =========================================
   SECCIONES
========================================= */

.seccion {

    padding:
        105px
        0;

}


.subtitulo {

    display: inline-block;

    color:
        var(--verde-600);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;

}


.cabecera-seccion {

    max-width: 760px;

    margin:
        0
        auto
        55px;

    text-align: center;

}


.cabecera-seccion h2 {

    margin:
        10px
        0
        17px;

    color:
        var(--verde-950);

    font-size:
        clamp(
            36px,
            4.5vw,
            53px
        );

    font-weight: 800;

    letter-spacing: -1.8px;

    line-height: 1.08;

}


.cabecera-seccion p {

    color:
        var(--texto-secundario);

    font-size: 17px;

}


/* =========================================
   CONDICIONES POR CANTIDAD
========================================= */

.despacho {

    background:

        linear-gradient(
            135deg,
            #d7e5ce,
            #e9f0df
        );

}


.despacho-escalas {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;

}


.escala {

    position: relative;

    min-width: 0;

    min-height: 315px;

    padding:
        29px
        25px;

    border-radius: 20px;

    background: white;

    box-shadow:
        var(--sombra-suave);

    transition:
        transform 0.2s ease;

}


.escala:hover {

    transform:
        translateY(-4px);

}


.escala-3 {

    border-top:
        5px solid
        #94b45d;

}


.escala-10 {

    border-top:
        5px solid
        #6d954e;

}


.escala-40 {

    border-top:
        5px solid
        var(--tierra);

}


.escala-destacada {

    background:

        linear-gradient(
            145deg,
            var(--verde-900),
            var(--verde-700)
        );

    color: white;

    transform:
        translateY(-10px);

}


.etiqueta-destacada {

    position: absolute;

    top: 20px;

    right: 20px;

    padding:
        5px
        9px;

    border-radius: 999px;

    background:
        rgba(190, 213, 123, 0.17);

    color:
        #c7dd8c;

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

}


.escala-cantidad {

    display: flex;

    align-items: flex-end;

    gap: 5px;

    margin-bottom: 24px;

}


.escala-cantidad span {

    position: absolute;

    top: 29px;

    color:
        var(--verde-600);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

}


.escala-cantidad strong {

    margin-top: 22px;

    color:
        var(--verde-950);

    font-size: 57px;

    line-height: 1;

}


.escala-cantidad small {

    padding-bottom: 7px;

    color:
        var(--texto-secundario);

    font-size: 18px;

    font-weight: 700;

}


.escala h3 {

    margin-bottom: 11px;

    color:
        var(--verde-950);

    font-size: 19px;

}


.escala p,
.escala li {

    color:
        var(--texto-secundario);

    font-size: 13px;

}


.escala ul {

    margin:
        11px
        0
        0
        17px;

}


.escala-destacada
.escala-cantidad span {

    color:
        #cae091;

}


.escala-destacada
.escala-cantidad strong {

    color: white;

}


.escala-destacada
.escala-cantidad small,
.escala-destacada p {

    color:
        #d6e2da;

}


.escala-destacada h3 {

    color: white;

}


.despacho-accion {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    margin-top: 55px;

    padding:
        35px
        38px;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.85);

    box-shadow:
        var(--sombra-suave);

}


.despacho-accion h3 {

    margin:
        5px
        0
        6px;

    color:
        var(--verde-950);

    font-size: 23px;

}


.despacho-accion p {

    color:
        var(--texto-secundario);

}


/* =========================================
   CÓMO COMPRAR
========================================= */

.como-comprar {

    background:

        linear-gradient(
            180deg,
            #e2ecd8,
            #eef4e8
        );

}


.pasos {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

}


.paso {

    position: relative;

    min-width: 0;

    min-height: 280px;

    padding: 32px;

    border-radius: 20px;

    box-shadow:
        var(--sombra-suave);

}


.paso-verde {

    background: #f8fbf5;

    border-top:
        4px solid
        var(--verde-600);

}


.paso-oliva {

    background: #f5f6ea;

    border-top:
        4px solid
        var(--oliva);

}


.paso-tierra {

    background: #fbf4ee;

    border-top:
        4px solid
        var(--tierra);

}


.paso-numero {

    position: absolute;

    top: 25px;

    right: 27px;

    color:
        rgba(40, 97, 58, 0.14);

    font-size: 35px;

    font-weight: 800;

}


.paso-icono {

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    margin-bottom: 25px;

    border-radius: 16px;

    background:
        var(--verde-claro);

    color:
        var(--verde-700);

}


.paso-icono svg {

    width: 28px;

    height: 28px;

}


.paso h3 {

    margin-bottom: 10px;

    color:
        var(--verde-950);

    font-size: 20px;

}


.paso p {

    color:
        var(--texto-secundario);

    font-size: 14px;

}


.como-comprar-accion {

    margin-top: 38px;

    text-align: center;

}


/* =========================================
   ORIGEN
========================================= */

.origen {

    background:

        linear-gradient(
            135deg,
            var(--crema),
            var(--crema-oscuro)
        );

}


.origen-grid {

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 75px;

}


.origen-imagen {

    position: relative;

    min-width: 0;

}


.origen-imagen > img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 28px;

    box-shadow:
        var(--sombra-media);

}


.origen-etiqueta {

    position: absolute;

    left: 25px;

    bottom: 25px;

    padding:
        18px
        21px;

    border-radius: 15px;

    background:
        rgba(13, 40, 28, 0.93);

    color: white;

}


.origen-etiqueta span {

    display: block;

    color:
        #cbdc8f;

    font-size: 9px;

    font-weight: 800;

}


.origen-etiqueta strong {

    display: block;

    margin: 3px 0;

    font-size: 18px;

}


.origen-etiqueta small {

    color:
        #d8e3dc;

}


.origen-contenido h2 {

    margin:
        12px
        0
        23px;

    color:
        var(--verde-950);

    font-size:
        clamp(
            38px,
            4.8vw,
            54px
        );

    font-weight: 800;

    letter-spacing: -2px;

    line-height: 1.07;

}


.origen-contenido > p {

    margin-bottom: 17px;

    color:
        var(--texto-secundario);

    font-size: 16px;

}


.origen-datos {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin:
        27px
        0
        30px;

}


.origen-datos div {

    min-width: 0;

    padding: 15px;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.70);

}


.origen-datos span {

    display: block;

    color:
        var(--texto-secundario);

    font-size: 9px;

    text-transform: uppercase;

}


.origen-datos strong {

    color:
        var(--verde-900);

}


/* =========================================
   BENEFICIOS
========================================= */

.beneficios {

    background:

        linear-gradient(
            135deg,
            #f6efe3,
            #fbf7f0
        );

}


.beneficios-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 19px;

}


.beneficio {

    min-width: 0;

    min-height: 265px;

    padding:
        28px
        24px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        var(--sombra-suave);

}


.beneficio-verde {

    border-top:
        4px solid
        var(--verde-600);

}


.beneficio-oliva {

    border-top:
        4px solid
        var(--oliva);

}


.beneficio-tierra {

    border-top:
        4px solid
        var(--tierra);

}


.beneficio-verde-oscuro {

    border-top:
        4px solid
        var(--verde-900);

}


.beneficio-icono {

    width: 54px;

    height: 54px;

    display: grid;

    place-items: center;

    margin-bottom: 23px;

    border-radius: 15px;

    background:
        var(--verde-claro);

    color:
        var(--verde-700);

}


.beneficio-icono svg {

    width: 26px;

    height: 26px;

}


.beneficio h3 {

    margin-bottom: 10px;

    color:
        var(--verde-950);

    font-size: 18px;

}


.beneficio p {

    color:
        var(--texto-secundario);

    font-size: 13px;

}


/* =========================================
   CLIENTES
========================================= */

.clientes {

    padding:
        80px
        0;

    background:

        linear-gradient(
            135deg,
            #dce8cf,
            #eaf0df
        );

}


.clientes-grid {

    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    align-items: center;

    gap: 80px;

}


.clientes h2 {

    margin:
        9px
        0
        15px;

    color:
        var(--verde-950);

    font-size:
        clamp(
            34px,
            4vw,
            45px
        );

    line-height: 1.1;

}


.clientes p {

    color:
        var(--texto-secundario);

}


.clientes-lista {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 11px;

}


.clientes-lista span {

    position: relative;

    min-width: 0;

    padding:
        15px
        15px
        15px
        43px;

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.80);

    color:
        var(--verde-900);

    font-size: 14px;

    font-weight: 700;

}


.clientes-lista span::before {

    content: "✓";

    position: absolute;

    left: 15px;

    top: 50%;

    width: 20px;

    height: 20px;

    display: grid;

    place-items: center;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background:
        var(--verde-700);

    color: white;

    font-size: 10px;

}


/* =========================================
   CONTACTO FINAL
========================================= */

.contacto-final {

    padding:
        80px
        0;

    background:

        linear-gradient(
            120deg,
            var(--verde-900),
            var(--verde-700)
        );

}


.contacto-final-grid {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

}


.contacto-subtitulo {

    color:
        #c7dd8c;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

}


.contacto-final h2 {

    margin:
        7px
        0;

    color: white;

    font-size:
        clamp(
            34px,
            4vw,
            47px
        );

}


.contacto-final p {

    color:
        #d7e1da;

}


.boton-whatsapp-final {

    min-height: 58px;

    background:
        #25d366;

    color: white;

}


/* =========================================
   FOOTER
========================================= */

footer {

    background:
        var(--verde-950);

    color:
        #b9c7be;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        0.8fr
        1fr;

    gap: 70px;

    padding:
        60px
        0
        42px;

}


.logo-footer {

    width: 125px;

    margin-bottom: 16px;

}


.footer-marca p {

    max-width: 230px;

    font-size: 13px;

}


.footer-columna {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.footer-columna strong {

    margin-bottom: 6px;

    color: white;

    font-size: 13px;

}


.footer-columna a,
.footer-columna span {

    color:
        #acbbb1;

    font-size: 12px;

}


.footer-columna a:hover {

    color: white;

}


.footer-inferior {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        20px
        0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    font-size: 11px;

}


/* =========================================
   WHATSAPP FLOTANTE
========================================= */

.whatsapp-flotante {

    position: fixed;

    right: 24px;

    bottom: 24px;

    z-index: 950;

    display: flex;

    align-items: center;

    gap: 9px;

    min-height: 52px;

    max-width:
        calc(100vw - 48px);

    padding:
        12px
        17px;

    border-radius: 999px;

    background:
        #25d366;

    color: white;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 12px 32px
        rgba(0, 0, 0, 0.20);

}


.whatsapp-flotante svg {

    width: 23px;

    height: 23px;

    flex-shrink: 0;

}


/* =========================================
   ANIMACIONES
========================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(18px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;

}


.reveal.visible {

    opacity: 1;

    transform: none;

}


/* =========================================
   HASTA 1200 PX
========================================= */

@media (max-width: 1200px) {


    .contenedor {

        width: 94%;

    }


    .logo-principal {

        width: 170px;

    }


    .menu {

        gap: 11px;

    }


    .menu > a:not(.menu-precio) {

        font-size: 13px;

    }


    .menu-precio {

        padding:
            10px
            11px;

        font-size: 10.5px;

    }


    .inicio-grid {

        gap: 40px;

    }


    .hero-badge-origen {

        left: 10px;

    }


    .hero-badge-despacho {

        right: 10px;

    }


    .despacho-escalas {

        gap: 12px;

    }


    .escala {

        padding:
            27px
            20px;

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 980px) {


    .contenedor {

        width: 90%;

    }


    .navegacion {

        min-height: 82px;

    }


    .logo-principal {

        width: 160px;

    }


    .menu-toggle {

        display: block;

    }


    .menu {

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding:
            10px
            5%
            20px;

        background:
            rgba(248, 243, 232, 0.99);

        -webkit-backdrop-filter:
            blur(16px);

        backdrop-filter:
            blur(16px);

        box-shadow:
            0 18px 30px
            rgba(13, 40, 28, 0.12);

    }


    .menu.menu-abierto {

        display: flex;

    }


    .menu > a:not(.menu-precio) {

        width: 100%;

        padding:
            14px
            5px;

        font-size: 15px;

        border-bottom:
            1px solid
            rgba(24, 72, 45, 0.08);

    }


    .menu > a:not(.menu-precio)::after {

        display: none;

    }


    .menu-precio {

        width: 100%;

        min-height: 50px;

        margin-top: 12px;

        font-size: 13px;

    }


    .inicio {

        padding:
            50px
            0
            65px;

    }


    .inicio-grid {

        grid-template-columns:
            1fr;

        gap: 45px;

    }


    .inicio-texto {

        max-width: 760px;

        margin-inline: auto;

        text-align: center;

    }


    .inicio h1 {

        max-width: 760px;

        margin-inline: auto;

        margin-bottom: 22px;

        font-size:
            clamp(
                48px,
                8vw,
                65px
            );

    }


    .texto-principal {

        margin-inline: auto;

    }


    .inicio-datos {

        justify-content: center;

    }


    .botones {

        justify-content: center;

    }


    .imagen-hero {

        max-width: 680px;

        margin-inline: auto;

    }


    .imagen-hero > img {

        height: 430px;

    }


    .propuesta {

        margin-top: 0;

        padding-top: 20px;

    }


    .propuesta-grid {

        grid-template-columns:
            1fr;

    }


    .propuesta-item {

        min-height: 90px;

    }


    .despacho-escalas {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 18px;

    }


    .escala-destacada {

        transform: none;

    }


    .despacho-accion {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .pasos {

        grid-template-columns:
            1fr;

    }


    .paso {

        min-height: auto;

    }


    .origen-grid {

        grid-template-columns:
            1fr;

        gap: 45px;

    }


    .origen-imagen {

        max-width: 680px;

        margin-inline: auto;

    }


    .origen-imagen > img {

        height: 430px;

    }


    .origen-contenido {

        max-width: 700px;

        margin-inline: auto;

    }


    .beneficios-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .clientes-grid {

        grid-template-columns:
            1fr;

        gap: 40px;

    }


    .contacto-final-grid {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px;

    }

}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 767px) {


    html {

        scroll-padding-top:
            78px;

    }


    .contenedor {

        width: 90%;

    }


    .navegacion {

        min-height: 76px;

    }


    .logo-principal {

        width: 140px;

    }


    .inicio {

        padding:
            38px
            0
            55px;

    }


    .etiqueta {

        margin-bottom: 15px;

        font-size: 9px;

    }


    .inicio h1 {

        font-size:
            clamp(
                36px,
                11vw,
                46px
            );

        line-height: 1.03;

        letter-spacing: -1.7px;

    }


    .inicio h1 span {

        margin-top: 7px;

    }


    .texto-principal {

        font-size: 16px;

        line-height: 1.6;

    }


    .inicio-datos {

        flex-direction:
            column;

        align-items:
            center;

        gap: 10px;

    }


    .botones {

        flex-direction:
            column;

        width: 100%;

    }


    .boton {

        width: 100%;

    }


    .microtexto {

        max-width: 300px;

        margin:
            12px
            auto
            0;

    }


    .imagen-hero > img {

        height: 310px;

        border-radius: 22px;

    }


    .hero-badge {

        position: static;

        width: 100%;

        margin-top: 10px;

    }


    .hero-badge-origen {

        padding:
            13px
            16px;

    }


    .hero-badge-despacho {

        justify-content:
            center;

    }


    .seccion {

        padding:
            70px
            0;

    }


    .cabecera-seccion {

        margin-bottom:
            38px;

    }


    .cabecera-seccion h2 {

        font-size:
            clamp(
                32px,
                9vw,
                38px
            );

        letter-spacing:
            -1.2px;

    }


    .cabecera-seccion p {

        font-size: 15px;

    }


    .despacho-escalas {

        grid-template-columns:
            1fr;

    }


    .escala {

        min-height: auto;

    }


    .escala-destacada {

        transform: none;

    }


    .despacho-accion {

        padding:
            27px
            22px;

    }


    .despacho-accion h3 {

        font-size: 21px;

    }


    .paso {

        padding:
            28px
            24px;

    }


    .origen-imagen > img {

        height: 300px;

        border-radius: 20px;

    }


    .origen-etiqueta {

        left: 12px;

        right: 12px;

        bottom: 12px;

        padding:
            13px
            16px;

    }


    .origen-contenido h2 {

        font-size:
            clamp(
                34px,
                9vw,
                42px
            );

    }


    .origen-contenido > p {

        font-size: 15px;

    }


    .origen-datos {

        grid-template-columns:
            1fr;

    }


    .beneficios-grid {

        grid-template-columns:
            1fr;

    }


    .beneficio {

        min-height: auto;

    }


    .clientes {

        padding:
            65px
            0;

    }


    .clientes h2 {

        font-size:
            clamp(
                31px,
                9vw,
                38px
            );

    }


    .clientes-lista {

        grid-template-columns:
            1fr;

    }


    .contacto-final {

        padding:
            60px
            0;

    }


    .contacto-final h2 {

        font-size:
            clamp(
                31px,
                9vw,
                38px
            );

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap: 32px;

        padding-top:
            45px;

    }


    .logo-footer {

        width: 115px;

    }


    .footer-inferior {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap: 5px;

    }


    .whatsapp-flotante {

        right: 15px;

        bottom: 15px;

        width: 54px;

        height: 54px;

        justify-content:
            center;

        padding: 0;

    }


    .whatsapp-flotante span {

        display: none;

    }

}


/* =========================================
   CELULAR PEQUEÑO
========================================= */

@media (max-width: 420px) {


    .logo-principal {

        width: 125px;

    }


    .menu-toggle {

        width: 42px;

        height: 42px;

    }


    .inicio h1 {

        font-size: 34px;

    }


    .texto-principal {

        font-size: 15px;

    }


    .imagen-hero > img {

        height: 270px;

    }


    .cabecera-seccion h2 {

        font-size: 31px;

    }


    .origen-imagen > img {

        height: 260px;

    }


    .origen-contenido h2 {

        font-size: 33px;

    }


    .escala-cantidad strong {

        font-size: 50px;

    }


    .contacto-final h2 {

        font-size: 31px;

    }

}


/* =========================================
   ACCESIBILIDAD
========================================= */

@media (prefers-reduced-motion: reduce) {


    html {

        scroll-behavior: auto;

    }


    *,
    *::before,
    *::after {

        scroll-behavior:
            auto !important;

        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;

    }


    .reveal {

        opacity: 1;

        transform: none;

    }

}