@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
    --ink: #151b1a;
    --ink-2: #26302e;
    --deep: #111917;
    --deep-2: #172622;
    --blue-deep: #11354c;
    --blue-soft: #284d55;

    --gold: #b88742;
    --gold-2: #d9b573;
    --gold-3: #f0d28a;

    --cream: #f7f1e7;
    --cream-2: #f2e4cb;
    --paper: #fffdf8;
    --paper-2: #fbf6ed;

    --muted: #65706b;
    --muted-2: #87918d;
    --line: #e6d8c4;

    --danger: #a74d3d;
    --success: #597c59;

    --serif: "Cormorant Garamond", "Libre Baskerville", Georgia, "Times New Roman", serif;
    --sans: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;

    --shadow-soft: 0 1rem 2.5rem rgb(35 28 19 / 7%);
    --shadow-card: 0 1.45rem 3rem rgb(35 28 19 / 9%);
    --shadow-gold: 0 0.9rem 1.8rem rgb(184 135 66 / 18%);

    --radius-xl: 2rem;
    --radius-lg: 1.45rem;
    --radius-md: 1.05rem;
    --radius-sm: 0.75rem;

    --container: min(1460px, calc(100% - 72px));

    --paw-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='black'%3E%3Cellipse cx='31.8' cy='43.5' rx='13.2' ry='11.4' transform='rotate(-8 31.8 43.5)'/%3E%3Cellipse cx='15.8' cy='25.8' rx='6.9' ry='8.9' transform='rotate(-22 15.8 25.8)'/%3E%3Cellipse cx='27.6' cy='17.3' rx='6.9' ry='9.5' transform='rotate(-7 27.6 17.3)'/%3E%3Cellipse cx='40.6' cy='17.9' rx='6.9' ry='9.5' transform='rotate(8 40.6 17.9)'/%3E%3Cellipse cx='52.1' cy='27.1' rx='6.9' ry='8.9' transform='rotate(24 52.1 27.1)'/%3E%3C/g%3E%3C/svg%3E");
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;

    color: var(--ink);
    background:
        radial-gradient(circle at 100% 0%, rgb(217 181 115 / 7%) 0, transparent 26rem),
        var(--paper);

    font: 16px/1.7 var(--sans);
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.home-section-title {
    width: 100%;
    max-width: none;
    margin: 0;

    color: var(--deep);
    font-family: var(--serif);
    font-size: clamp(3.25rem, 5vw, 5.25rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.sr-only,
.skip-link {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    z-index: 99;

    width: auto;
    height: auto;
    padding: 0.75rem 1rem;

    clip: auto;

    color: var(--paper);
    background: var(--deep);
}

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

.button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.58rem;

    min-height: 3rem;
    padding: 0.86rem 1.45rem;

    border: 1px solid rgb(184 135 66 / 62%);
    border-radius: 999px;

    color: #fffdf8;
    background:
        linear-gradient(135deg, #c99748 0%, #a76a22 100%);

    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    white-space: nowrap;

    box-shadow:
        var(--shadow-gold),
        inset 0 1px 0 rgb(255 255 255 / 20%);

    transition:
        transform 170ms ease,
        box-shadow 170ms ease,
        background 170ms ease,
        border-color 170ms ease,
        color 170ms ease;
}

.button::before,
.header-cta::before {
    content: "";

    width: 1.05rem;
    height: 1.05rem;

    flex: 0 0 auto;

    background: currentColor;

    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;
}

.button:hover,
.button:focus-visible {
    color: #fff;
    background:
        linear-gradient(135deg, #b88742 0%, #7d501f 100%);

    box-shadow:
        0 1rem 2rem rgb(130 86 31 / 22%),
        inset 0 1px 0 rgb(255 255 255 / 18%);

    transform: translateY(-2px);
}

.button-outline {
    color: var(--deep);
    background:
        linear-gradient(180deg, rgb(255 253 248 / 78%) 0%, rgb(255 248 236 / 70%) 100%);

    border-color: rgb(184 135 66 / 46%);

    box-shadow:
        0 0.85rem 1.6rem rgb(35 28 19 / 5%),
        inset 0 1px 0 rgb(255 255 255 / 78%);
}

.button-outline::before {
    content: none;
}

.button-outline:hover,
.button-outline:focus-visible {
    color: #fffdf8;
    background:
        linear-gradient(135deg, #18201f 0%, #0f1715 100%);

    border-color: rgb(24 32 31 / 82%);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fffaf3;
    border-bottom: 1px solid rgb(17 17 17 / 8%);
}

.site-header .container {
    width: min(1760px, calc(100% - 48px));
}

.header-inner {
    min-height: 80px;
    display: grid;
    grid-template-columns: minmax(290px, auto) minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.5rem, 2.5vw, 3.5rem);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 290px;
}

.brand img {
    width: clamp(290px, 17vw, 315px);
    height: 70px;
    max-height: 70px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 2.1vw, 2.5rem);
    margin: 0;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: 1rem 0 .85rem;
    color: #111;
    font-family: "Inter", var(--sans);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .035em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 180ms ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: .45rem;
    width: 0;
    height: 1.5px;
    background: #c96f18;
    transform: translateX(-50%);
    transition: width 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
    color: #c96f18;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav__products svg {
    width: .9rem;
    height: .9rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.header-action {
    position: relative;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 24px;
    height: 42px;
    padding: 0;
    border: 0;
    color: #111;
    background: transparent;
    cursor: pointer;
    transition: color 180ms ease;
}

.header-action:hover,
.header-action:focus-visible {
    color: #c96f18;
}

.header-action svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-cart__badge {
    position: absolute;
    top: 4px;
    right: -7px;
    display: grid;
    place-items: center;
    min-width: 15px;
    height: 15px;
    padding: 0 3px;
    border-radius: 999px;
    color: #fff;
    background: #c96f18;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

.header-cta {
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #c96f18;
    box-shadow: none;
    font-family: "Inter", var(--sans);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.header-cta::before {
    content: none;
}

.header-cta::after {
    content: "";
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;
}

.header-cta:hover,
.header-cta:focus-visible {
    color: #fff;
    background: #a95810;
    box-shadow: none;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgb(17 17 17 / 14%);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #111;
}

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

.hero {
    position: relative;

    min-height: calc(100svh - 92px);

    overflow: hidden;

    background:
        radial-gradient(circle at 77% 37%, rgb(240 208 154 / 78%) 0, transparent 29rem),
        radial-gradient(circle at 12% 74%, rgb(255 255 255 / 88%) 0, transparent 24rem),
        linear-gradient(115deg, #fffdf8 0%, #f8efe0 52%, #f3dfbd 100%);
}

.hero::before {
    content: "";

    position: absolute;
    left: -8rem;
    bottom: -10rem;
    z-index: 1;

    width: 28rem;
    height: 28rem;

    border: 1px solid rgb(184 135 66 / 18%);
    border-radius: 50%;

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;
    right: -14vw;
    bottom: -10.5rem;
    z-index: 1;

    width: min(68rem, 62vw);
    height: 17rem;

    border-top: 0.35rem solid rgb(217 181 115 / 88%);
    border-radius: 55% 45% 0 0;

    background:
        linear-gradient(135deg, #0e1614 0%, #18211f 62%, #0b1110 100%);

    opacity: 0.96;

    transform: rotate(-4deg);

    pointer-events: none;
}

.hero .container {
    width: min(1500px, calc(100% - 72px));
}

.hero-grid {
    position: relative;
    z-index: 2;

    min-height: calc(100svh - 92px);

    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 5.8rem);
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 55rem;
    padding: clamp(4.5rem, 7vw, 7rem) 0 clamp(5rem, 8vw, 7rem);
}

.eyebrow {
    display: block;

    margin: 0 0 1.05rem;

    color: #9a6420;

    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero h1,
.section h2,
.closing h2 {
    margin: 0;

    color: var(--deep);

    font-family: var(--serif);
    font-size: clamp(4.4rem, 5.55vw, 6.35rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.hero h1 {
    max-width: 12.4ch;
}

.hero h1 em {
    position: relative;

    display: inline-block;

    width: max-content;
    max-width: 100%;

    color: var(--gold);

    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.045em;
    white-space: nowrap;
}

.hero h1 em::after {
    content: "♡";

    position: absolute;
    top: 0.09em;
    right: -0.74em;

    color: rgb(184 135 66 / 78%);

    font-family: var(--serif);
    font-size: 0.48em;
    font-style: normal;
    line-height: 1;
}

.hero-copy>p {
    max-width: 43rem;

    margin: 1.55rem 0 0;

    color: #56615d;

    font-size: clamp(1.04rem, 1.15vw, 1.18rem);
    font-weight: 500;
    line-height: 1.78;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;

    margin-top: 2rem;
}

/* Mini guía del hero */

.hero-guide {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;

    max-width: 51rem;
    margin-top: 1.45rem;
}

.hero-guide a {
    position: relative;

    min-height: 6.1rem;
    padding: 1rem 1rem 0.95rem;

    overflow: hidden;

    border: 1px solid rgb(184 135 66 / 22%);
    border-radius: 1.05rem;

    color: var(--deep);
    background:
        radial-gradient(circle at 100% 0%, rgb(217 181 115 / 15%) 0, transparent 5rem),
        linear-gradient(180deg, rgb(255 253 248 / 70%) 0%, rgb(255 248 237 / 64%) 100%);

    box-shadow:
        0 0.8rem 1.8rem rgb(79 57 29 / 6%),
        inset 0 1px 0 rgb(255 255 255 / 70%);

    transition:
        transform 170ms ease,
        border-color 170ms ease,
        box-shadow 170ms ease,
        background 170ms ease;
}

.hero-guide a::before {
    content: "";

    position: absolute;
    right: 0.8rem;
    bottom: 0.62rem;

    width: 2.25rem;
    height: 2.25rem;

    background: rgb(184 135 66 / 13%);

    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;

    pointer-events: none;
}

.hero-guide a:hover,
.hero-guide a:focus-visible {
    border-color: rgb(184 135 66 / 45%);

    background:
        radial-gradient(circle at 100% 0%, rgb(217 181 115 / 21%) 0, transparent 5rem),
        linear-gradient(180deg, rgb(255 253 248 / 88%) 0%, rgb(255 248 237 / 78%) 100%);

    box-shadow:
        0 1rem 2rem rgb(79 57 29 / 10%),
        inset 0 1px 0 rgb(255 255 255 / 80%);

    transform: translateY(-2px);
}

.hero-guide span {
    display: block;

    margin-bottom: 0.34rem;

    color: #b88742;

    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.06em;
}

.hero-guide strong {
    display: block;

    color: var(--deep);

    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.2;
}

.hero-guide small {
    display: block;

    margin-top: 0.36rem;
    padding-right: 1.55rem;

    color: #626d68;

    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.4;
}

.hero-visual {
    position: relative;
    z-index: 2;

    align-self: end;

    height: min(68svh, 43rem);
    min-height: 35rem;
}

.hero-visual::before {
    content: "";

    position: absolute;
    right: 1.5%;
    bottom: 3rem;
    z-index: 0;

    width: min(38vw, 37rem);
    height: min(38vw, 37rem);

    border: 1px solid rgb(184 135 66 / 34%);
    border-radius: 50%;

    background:
        radial-gradient(circle, rgb(255 253 248 / 38%) 0 52%, transparent 53%);

    box-shadow:
        inset 0 0 0 1.4rem rgb(255 253 248 / 18%);
}

.hero-visual::after {
    content: "Elegir mejor también es cuidar";

    position: absolute;
    top: 24%;
    right: 2%;
    z-index: 4;

    max-width: 13.5rem;
    padding: 0.85rem 1rem;

    border: 1px solid rgb(184 135 66 / 16%);
    border-radius: 1rem;

    color: var(--deep);
    background: rgb(255 253 248 / 80%);

    font: italic 1.03rem/1.15 var(--serif);
    text-align: center;

    box-shadow: 0 1rem 2rem rgb(74 52 24 / 9%);
    backdrop-filter: blur(6px);
}

.hero-visual img {
    position: absolute;
    right: -2%;
    bottom: 0;
    z-index: 3;

    width: min(52vw, 44rem);
    height: 100%;

    object-fit: contain;
    object-position: center bottom;

    filter: drop-shadow(0 1.6rem 1.5rem rgb(52 34 18 / 14%));
}

.orbit {
    display: none;
}

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

.section {
    position: relative;

    padding-block: clamp(5.5rem, 7vw, 7.5rem);
}

.hero+.section {
    padding-top: clamp(6rem, 8vw, 8.5rem);
}

.section-heading {
    max-width: 1200px;
    margin: 0 auto 3.2rem;

    text-align: center;
}

.section-heading h2 {
    color: var(--deep);
    font-size: clamp(2.6rem, 4vw, 4.3rem);
    line-height: 0.98;
}

.section-heading p {
    max-width: 42rem;
    margin: 1rem auto 0;

    color: var(--muted);

    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
}

/* =========================================================
   MARCAS · CARRUSEL CONTINUO
   ========================================================= */

.brand-marquee {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    margin: 0;
    padding: 46px 0 24px;

    color: #36251d;

    background: linear-gradient(135deg,
            #d7b596 0%,
            #dcbda1 48%,
            #d2ac8b 100%);
}

.brand-marquee::before {
    content: none;
}

.brand-marquee::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(255, 242, 214, 0.09);
    -webkit-mask-image: var(--paw-mask), var(--paw-mask);
    -webkit-mask-position: left -18px top 34px, right 18px top 32px;
    -webkit-mask-size: 110px 110px, 92px 92px;
    -webkit-mask-repeat: no-repeat;
    mask-image: var(--paw-mask), var(--paw-mask);
    mask-position: left -18px top 34px, right 18px top 32px;
    mask-size: 110px 110px, 92px 92px;
    mask-repeat: no-repeat;
    pointer-events: none;
}

.brand-marquee__heading {
    position: relative;
    z-index: 2;
    width: min(100% - 48px, 1460px);
    margin: 0 auto 1.15rem;
    text-align: center;
}

.brand-marquee__heading::before,
.brand-marquee__heading::after {
    position: absolute;
    color: rgba(117, 71, 33, 0.16);
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
}

.brand-marquee__heading::before {
    content: "\2661";
    left: 2%;
    top: 0.1rem;
    font-size: 2.75rem;
    transform: rotate(-12deg);
}

.brand-marquee__heading::after {
    content: "\2661";
    right: 3%;
    top: 2.2rem;
    font-size: 2.05rem;
    transform: rotate(10deg);
}

.brand-marquee__heading span {
    display: block;
    margin-bottom: 0.45rem;
    color: #754721;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.brand-marquee__heading h2 {
    margin: 0;
    color: #302119;
    text-shadow: none;
    font-family: var(--serif);
    font-size: clamp(2.25rem, 3.2vw, 3.65rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.035em;
}

.brand-marquee__viewport {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 8px 0 12px;
    overflow: hidden;
    background: transparent;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            #000 3%,
            #000 97%,
            transparent 100%);

    mask-image: linear-gradient(to right,
            transparent 0%,
            #000 3%,
            #000 97%,
            transparent 100%);
}

.brand-marquee__track {
    position: relative;
    z-index: 1;
    display: flex;
    width: max-content;
    will-change: transform;
}

.brand-marquee__group {
    display: flex;
    flex: 0 0 auto;
    gap: 0;
    padding-right: 0;
}

.brand-marquee__item {
    position: relative;
    z-index: 0;
    display: grid;
    place-items: center;
    flex: 0 0 240px;
    width: 240px;
    height: 80px;
    margin: 0;
    padding: 0 30px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand-marquee__item::after {
    content: "";
    position: absolute;
    top: 29%;
    right: 0;
    width: 1px;
    height: 42%;
    background: rgba(76, 46, 28, 0.18);
    pointer-events: none;
}

.brand-marquee__item:hover,
.brand-marquee__item:focus-within {
    z-index: 3;
}

.brand-marquee__item:focus-visible {
    outline: 2px solid rgb(138 90 32 / 70%);
    outline-offset: 5px;
}

.brand-marquee__logo {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    padding: 0;
    object-fit: contain;
    object-position: center;
    transform: scale(1);
    transform-origin: center;
    filter: drop-shadow(0 0 0 transparent);
    transition: none;
}

.brand-marquee__logo[alt="Logo Acana" i],
.brand-marquee__logo[alt="Logo Taste of the Wild" i] {
    transform: scale(.94);
}

.brand-marquee__logo[alt="Logo Nómade" i],
.brand-marquee__logo[alt="Logo Biofresh" i],
.brand-marquee__logo[alt="Logo Pet Family" i] {
    transform: scale(1.06);
}

.brand-marquee__item:nth-child(3n + 1) {
    transform: translateY(-4px);
}

.brand-marquee__item:nth-child(3n + 2) {
    transform: translateY(3px);
}

.brand-marquee__item .home-media-placeholder {
    display: grid;
    place-content: center;
    width: 82%;
    height: 72%;
    padding: 0.25rem;
    color: #493a2f;
    font-size: 0.82rem;
    text-align: center;
}

@media (max-width: 640px) {
    .brand-marquee {
        padding: 34px 0 16px;
    }

    .brand-marquee::before {
        content: none;
    }

    .brand-marquee::after {
        background: rgba(255, 242, 214, 0.07);
        -webkit-mask-position: left -12px top 18px, right 10px top 20px;
        -webkit-mask-size: 72px 72px, 66px 66px;
        mask-position: left -12px top 18px, right 10px top 20px;
        mask-size: 72px 72px, 66px 66px;
    }

    .brand-marquee__heading {
        width: min(100% - 28px, 560px);
        margin-bottom: 1rem;
        text-align: center;
    }

    .brand-marquee__heading::before {
        left: 0;
        font-size: 1.9rem;
    }

    .brand-marquee__heading::after {
        content: none;
    }

    .brand-marquee__heading span {
        margin-bottom: 0.35rem;
        font-size: 0.7rem;
    }

    .brand-marquee__heading h2 {
        font-size: clamp(1.85rem, 8.5vw, 2.5rem);
        line-height: 1.05;
    }

    .brand-marquee__viewport {
        padding: 6px 0 10px;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 2%, #000 98%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, #000 2%, #000 98%, transparent 100%);
    }

    .brand-marquee__group {
        gap: 0;
        padding-right: 0;
    }

    .brand-marquee__item {
        flex-basis: 150px;
        width: 150px;
        height: 64px;
        padding: 0 8px;
    }

    .brand-marquee__item::after {
        top: 30%;
        height: 40%;
    }

    .brand-marquee__logo {
        width: 100%;
        height: 100%;
        max-width: none;

        transform: scale(1);
    }

    .brand-marquee__item .home-media-placeholder {
        width: 84%;
        height: 72%;
        max-width: 84%;
    }

    .home-categories {
        padding-top: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-marquee__viewport {
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .brand-marquee__track {
        will-change: auto;
    }
}

/* ===========================================================================
   PRUEBA ANTES DE DECIDIR · vitrina interactiva de formatos
   Bloque consolidado: una sola definición por breakpoint.
   ========================================================================== */

.home-trial {
    position: relative;
    isolation: isolate;
    padding: clamp(3.5rem, 4.5vw, 4.5rem) 0;
    overflow: hidden;
    color: #28332d;
    background:
        radial-gradient(
            ellipse at 76% 42%,
            rgb(255 252 242 / 92%) 0%,
            rgb(255 246 224 / 58%) 28%,
            transparent 54%
        ),
        radial-gradient(
            ellipse at 16% 50%,
            rgb(166 103 36 / 9%) 0%,
            transparent 38%
        ),
        radial-gradient(
            circle at 8% 100%,
            rgb(184 126 55 / 14%) 0%,
            transparent 24rem
        ),
        linear-gradient(
            112deg,
            #e5c18c 0%,
            #edd3a9 42%,
            #f8ead7 100%
        );
}

.home-trial::before,
.home-trial::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    background: rgb(160 122 63 / 11%);
    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;
}

.home-trial::before {
    top: 1.2rem;
    right: 1.4rem;
    width: clamp(8rem, 12vw, 11rem);
    height: clamp(8rem, 12vw, 11rem);
    opacity: 0.56;
}

.home-trial::after {
    left: 1.2rem;
    bottom: 1.2rem;
    width: clamp(9rem, 13vw, 12rem);
    height: clamp(9rem, 13vw, 12rem);
    opacity: 0.56;
}

.home-trial__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(32rem, 0.92fr);
    align-items: center;
    gap: clamp(2.5rem, 4vw, 4.5rem);
    width: min(calc(100% - 4rem), 1360px);
    margin-inline: auto;
}

/* ---------------------------------------------------------------------------
   Simón + relato
   --------------------------------------------------------------------------- */

.home-trial__story {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        clamp(18rem, 21vw, 20.5rem)
        minmax(0, 1fr);
    align-items: center;
    gap: clamp(2.25rem, 3vw, 3.5rem);
    width: 100%;
    min-width: 0;
    min-height: 28rem;
}

.home-trial__story::before {
    content: "";
    position: absolute;
    left: -1.2rem;
    top: -1rem;
    z-index: 0;
    width: 4.5rem;
    height: 4.5rem;
    background: rgb(160 122 63 / 10%);
    opacity: 0.22;
    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;
    pointer-events: none;
}

.home-trial__pet-slot {
    position: relative;
    z-index: 2;
    width: clamp(18rem, 21vw, 20.5rem);
    min-width: 18rem;
    height: clamp(27rem, 31vw, 29rem);
    overflow: visible;
}

/*
 * El escenario termina antes que el slot para reservar abajo
 * el espacio de los dos mensajes. Así nada cubre orejas ni cuerpo.
 */
.home-trial__pet-placeholder {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: calc(100% - 6.4rem);
    overflow: visible;
    isolation: isolate;
    background: transparent;
    border: 0;
    box-shadow: none;
}

/* Halo orgánico detrás de Simón. */
.home-trial__pet-placeholder::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    z-index: 0;
    width: 88%;
    height: 88%;
    border: 1px solid rgb(184 135 66 / 20%);
    border-radius: 48% 52% 46% 54% / 56% 48% 52% 44%;
    background:
        radial-gradient(
            ellipse at 50% 38%,
            rgb(255 250 238 / 78%) 0%,
            rgb(235 203 153 / 34%) 56%,
            transparent 78%
        );
    transform: translateX(-50%);
    pointer-events: none;
}

/* Base frontal: oculta únicamente el corte inferior del PNG. */
.home-trial__pet-placeholder::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.2rem;
    z-index: 4;
    width: 92%;
    height: 2.5rem;
    border-radius: 50%;
    background:
        linear-gradient(
            180deg,
            #e9bd79 0%,
            #d99a42 100%
        );
    box-shadow:
        0 0.85rem 1.2rem rgb(92 55 24 / 18%),
        inset 0 2px 0 rgb(255 244 214 / 42%);
    transform: translateX(-50%);
    pointer-events: none;
}

/*
 * Compatibilidad con el HTML generado durante las pruebas:
 * el halo y la base se resuelven con pseudo-elementos para impedir
 * que existan dos fondos u óvalos superpuestos.
 */
.home-trial__pet-backdrop,
.home-trial__pet-ledge {
    display: none;
}

.home-trial__pet-image {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    z-index: 3;
    display: block;
    width: 122%;
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    translate: -50% 0;
    rotate: 0deg;
    scale: 1;
    transform-origin: 50% 100%;
    filter: drop-shadow(0 1.35rem 1rem rgb(73 44 22 / 22%));
    will-change: translate, rotate, scale;
    pointer-events: none;
}

/* Reacción al pasar el mouse sin interferir con transformaciones de GSAP. */
/*
 * Un solo contenedor semántico, dos burbujas visuales:
 * <strong> = ¡Guau!
 * <p>      = mensaje
 */
.home-trial__pet-message {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 6;
    display: grid;
    justify-items: start;
    gap: 0.45rem;
    width: min(15.5rem, 92%);
    padding: 0;
    border: 0;
    color: #4d3721;
    background: transparent;
    box-shadow: none;
    translate: -50% 0;
    rotate: 0deg;
    backdrop-filter: none;
}

.home-trial__pet-message::before {
    content: none;
}

.home-trial__pet-message strong {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 2.7rem;
    padding: 0.55rem 1rem;
    border: 1px solid rgb(145 91 31 / 18%);
    border-radius: 999px;
    color: #4a2e13;
    background: rgb(255 251 241 / 97%);
    box-shadow: 0 0.75rem 1.6rem rgb(97 60 24 / 12%);
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 650;
    line-height: 1;
}

.home-trial__pet-message strong::after {
    content: "";
    position: absolute;
    left: 1.2rem;
    bottom: -0.38rem;
    width: 0.75rem;
    height: 0.75rem;
    border-right: 1px solid rgb(145 91 31 / 18%);
    border-bottom: 1px solid rgb(145 91 31 / 18%);
    background: rgb(255 251 241 / 97%);
    transform: rotate(45deg);
}

.home-trial__pet-message p {
    width: 100%;
    margin: 0;
    padding: 0.85rem 1rem;
    border: 1px solid rgb(145 91 31 / 16%);
    border-radius: 1rem 1rem 1rem 0.38rem;
    color: #4d3925;
    background: rgb(255 251 241 / 94%);
    box-shadow: 0 1rem 2.1rem rgb(97 60 24 / 11%);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.45;
    backdrop-filter: blur(8px);
}

.home-trial__pet-message p::after {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.35rem;
    vertical-align: -0.16rem;
    background: #b27a36;
    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;
}

/*
 * Pop visual de las dos burbujas.
 * El contenedor puede seguir siendo animado por GSAP; estos movimientos
 * solo afectan a sus hijos y no pisan la posición del bloque.
 */
@keyframes homeTrialBubblePop {
    from {
        opacity: 0;
        translate: 0 0.7rem;
        scale: 0.9;
    }

    to {
        opacity: 1;
        translate: 0 0;
        scale: 1;
    }
}

/* ---------------------------------------------------------------------------
   Copy
   --------------------------------------------------------------------------- */

.home-trial__copy {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 28rem;
    margin: 0;
}

.home-trial__copy::before {
    content: "";
    position: absolute;
    inset: -2.5rem -3rem;
    z-index: -1;
    border-radius: 50%;
    background:
        radial-gradient(
            ellipse at center,
            rgb(255 250 239 / 48%) 0%,
            transparent 68%
        );
    filter: blur(10px);
    pointer-events: none;
}

.home-trial__copy > span {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #956323;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-trial__copy > span::before {
    content: "";
    width: 2.75rem;
    height: 1px;
    background: #b47a30;
}

.home-trial__copy .home-section-title {
    margin: 0.75rem 0 1rem;
    color: #23312d;
    font-size: clamp(2.85rem, 3.5vw, 3.75rem);
    line-height: 0.94;
}

.home-trial__copy p {
    max-width: 25rem;
    margin: 0 0 1.4rem;
    color: #5f6c66;
    font-size: 1.08rem;
    line-height: 1.7;
    text-align: left;
}

.home-trial__copy .button {
    margin-top: 0.4rem;
    color: #fffdf7;
    background: linear-gradient(135deg, #563b28, #36251a);
    box-shadow: 0 0.9rem 1.8rem rgb(64 42 20 / 16%);
}

.home-trial__copy .button:is(:hover, :focus-visible) {
    background: linear-gradient(135deg, #67472f, #452d1e);
    box-shadow: 0 1.1rem 2.1rem rgb(64 42 20 / 22%);
    transform: translateY(-2px);
}

/* ---------------------------------------------------------------------------
   Vitrina orbital
   --------------------------------------------------------------------------- */

.home-trial__stage {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 40rem;
    margin-block: -3rem;
    outline: none;
    touch-action: pan-y;
}

.home-trial__stage::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 44%;
    width: min(96%, 40rem);
    height: 29rem;
    border-radius: 50%;
    background:
        radial-gradient(
            ellipse,
            rgb(255 250 239 / 74%),
            rgb(220 181 119 / 16%) 55%,
            transparent 72%
        );
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.home-trial__stage:focus-visible {
    border-radius: 2rem;
    box-shadow: 0 0 0 3px rgb(149 99 35 / 28%);
}

.home-trial__spiral {
    position: absolute;
    inset: 2rem 0 auto;
    width: 100%;
    height: 32rem;
    overflow: visible;
    pointer-events: none;
}

.home-trial__spiral path {
    fill: none;
    stroke: rgb(166 111 45 / 34%);
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-dasharray: 1300;
    stroke-dashoffset: 1300;
}

.home-trial__items {
    position: relative;
    height: 540px;
}

.home-trial__item {
    position: absolute;
    left: 50%;
    top: 48%;
    display: grid;
    place-items: center;
    width: clamp(240px, 24vw, 360px);
    aspect-ratio: 3 / 4;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform-origin: center bottom;
    will-change: transform, opacity, filter;
}

.home-trial__item::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5%;
    width: 62%;
    height: 8%;
    border-radius: 50%;
    background: rgb(67 43 20 / 25%);
    filter: blur(14px);
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 300ms ease;
}

.home-trial__item[aria-pressed="true"]::before {
    opacity: 1;
}

.home-trial__item-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 1.4rem 1.1rem rgb(67 43 20 / 18%));
    pointer-events: none;
    user-select: none;
}

.home-trial__item > .home-media-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    color: #fff;
    background: linear-gradient(145deg, #242728, #090a0b);
    text-align: center;
}

.home-trial__item:focus-visible {
    outline: 2px solid #80511c;
    outline-offset: 0.45rem;
    border-radius: 1rem;
}

.home-trial__active-info {
    position: relative;
    z-index: 12;
    display: grid;
    justify-items: center;
    min-height: 6.5rem;
    margin: 1.75rem auto 0;
    text-align: center;
}

.home-trial__active-info span {
    color: #946022;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-trial__active-info strong {
    margin-top: 0.2rem;
    color: #27342e;
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3.35rem);
    font-weight: 500;
    line-height: 1;
}

.home-trial__active-info p {
    margin: 0.45rem 0 0;
    color: #5f655f;
    font-size: 0.96rem;
}

.home-trial__controls {
    position: relative;
    z-index: 13;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.35rem;
}

.home-trial__controls > button {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgb(112 76 35 / 24%);
    border-radius: 50%;
    color: #51391f;
    background: rgb(255 250 239 / 48%);
    font-size: 1.1rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.home-trial__controls > button:is(:hover, :focus-visible) {
    border-color: rgb(112 76 35 / 52%);
    background: rgb(255 250 239 / 78%);
    transform: translateY(-2px);
}

.home-trial__indicators {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.home-trial__indicators button {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgb(87 60 30 / 30%);
    cursor: pointer;
    transition:
        width 240ms ease,
        background-color 240ms ease;
}

.home-trial__indicators button[aria-current="true"] {
    width: 1.9rem;
    background: #956323;
}

.home-trial__indicators button:focus-visible {
    outline: 2px solid #80511c;
    outline-offset: 0.25rem;
}

/* ---------------------------------------------------------------------------
   Tablet
   --------------------------------------------------------------------------- */

@media (max-width: 68rem) {
    .home-trial {
        padding-block: 4rem 3.5rem;
    }

    .home-trial__layout {
        grid-template-columns: 1fr;
        width: min(100% - 2rem, 760px);
        gap: 2rem;
    }

    .home-trial__story {
        grid-template-columns:
            clamp(16rem, 34vw, 18rem)
            minmax(0, 1fr);
        gap: clamp(1.75rem, 4vw, 2.75rem);
        width: min(100%, 46rem);
        min-height: 26rem;
        margin-inline: auto;
    }

    .home-trial__pet-slot {
        width: clamp(16rem, 34vw, 18rem);
        min-width: 16rem;
        height: clamp(25rem, 46vw, 27rem);
    }

    .home-trial__copy {
        max-width: 31rem;
        margin: 0;
    }

    .home-trial__copy::before {
        inset: -3rem -2rem;
    }

    .home-trial__copy > span {
        justify-content: flex-start;
    }

    .home-trial__copy p {
        margin-inline: 0;
        text-align: left;
    }

    .home-trial__stage {
        min-height: 35rem;
        margin-block: -2rem -1rem;
    }

    .home-trial__items {
        height: 450px;
    }

    .home-trial__item {
        width: clamp(230px, 43vw, 320px);
    }
}

/* ---------------------------------------------------------------------------
   Móvil
   --------------------------------------------------------------------------- */

@media (max-width: 42rem) {
    .home-trial {
        padding-block: 3.5rem 3rem;
    }

    .home-trial__layout {
        width: min(100% - 1.5rem, 390px);
        gap: 1.25rem;
    }

    .home-trial__story {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        min-height: 0;
    }

    .home-trial__story::before {
        left: auto;
        right: -1rem;
        top: 1rem;
    }

    .home-trial__pet-slot {
        width: min(100%, 19.5rem);
        min-width: 0;
        height: 27rem;
        margin-inline: auto;
    }

    .home-trial__pet-placeholder {
        height: calc(100% - 6.2rem);
    }

    .home-trial__pet-image {
        width: 118%;
    }

    .home-trial__pet-message {
        width: min(15rem, 90%);
    }

    .home-trial__copy {
        max-width: 100%;
        margin: 0;
    }

    .home-trial__copy::before {
        inset: -2rem -1rem;
    }

    .home-trial__copy .home-section-title {
        font-size: clamp(2.8rem, 12.5vw, 3.45rem);
    }

    .home-trial__copy p {
        margin-top: 1.15rem;
        font-size: 0.98rem;
    }

    .home-trial__copy .button {
        width: 100%;
        margin-top: 1.5rem;
    }

    .home-trial__stage {
        min-height: 31.5rem;
        margin-block: -0.5rem 0;
    }

    .home-trial__stage::before {
        top: 38%;
        width: 125%;
        height: 22rem;
    }

    .home-trial__spiral {
        top: 0;
        height: 25rem;
    }

    .home-trial__items {
        height: 370px;
    }

    .home-trial__item {
        top: 43%;
        width: min(68vw, 260px);
    }

    .home-trial__active-info {
        min-height: 6.75rem;
        margin-top: -0.25rem;
    }

    .home-trial__active-info strong {
        font-size: 2.35rem;
    }

    .home-trial__active-info p {
        max-width: 18rem;
        font-size: 0.9rem;
    }

    .home-trial__controls {
        margin-top: 0.35rem;
    }
}

/* ---------------------------------------------------------------------------
   Movimiento reducido
   --------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .home-trial__pet-image {
        translate: -50% 0 !important;
        rotate: 0deg !important;
        scale: 1 !important;
        transition: none !important;
    }

    .home-trial__pet-message strong,
    .home-trial__pet-message p,
    .home-trial__spiral path,
    .home-trial__item,
    .home-trial__active-info,
    .home-trial__controls {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================================================
   NUESTROS PRODUCTOS
   ========================================================= */

.home-categories {
    position: relative;
    padding: clamp(42px, 4vw, 64px) 0 4.5rem;
    overflow: hidden;
    background: linear-gradient(180deg, #f8eadb 0%, #f7e8d7 100%);
}

.home-categories .container {
    position: relative;
}

.home-categories .home-section-heading {
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.home-selection .home-section-heading>div>span {
    display: block;
    margin-bottom: 0.75rem;

    color: #8a5a20;

    font-size: 0.85rem;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-categories .home-section-heading h2 {
    margin: 0;
    color: #2f2118;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 4.25rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
}

.home-categories .home-section-heading p {
    margin: 0.85rem 0 0;
    color: #6d5a4b;
    font-size: 0.96rem;
}

.home-categories__rail {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
}

.home-category-card {
    min-width: 0;
}

.home-category-card>a {
    display: flex;
    min-height: 25rem;
    padding: 1rem .5rem 1.25rem;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #2f2118;
    text-align: center;
    outline: 2px solid transparent;
    outline-offset: 5px;
}

.home-category-card>a:focus-visible {
    outline-color: #8a5a20;
}

.home-category-card__visual {
    position: relative;
    display: grid;
    width: clamp(210px, 15vw, 300px);
    max-width: 100%;
    height: 16.5rem;
    margin: 0;
    place-items: center;
    transform-style: preserve-3d;
    will-change: transform;
}

.home-category-card__visual::before {
    content: "";
    position: absolute;
    inset: 11% 4% 4%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgb(218 176 112 / 25%) 0%, rgb(240 216 183 / 13%) 46%, transparent 74%);
    opacity: .72;
    transform: scale(.92);
    transition: transform 300ms ease, opacity 300ms ease, filter 300ms ease;
}

.home-category-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: drop-shadow(0 12px 13px rgb(70 45 25 / 8%));
    transition: transform 300ms ease, filter 300ms ease;
}

.home-category-card:nth-child(1)>a {
    transform: translateY(-8px);
}

.home-category-card:nth-child(2)>a {
    transform: translateY(14px);
}

.home-category-card:nth-child(3)>a {
    transform: translateY(-12px);
}

.home-category-card:nth-child(4)>a {
    transform: translateY(18px);
}

.home-category-card:nth-child(5)>a {
    transform: translateY(-5px);
}

.home-category-card__copy h3 {
    margin: 1rem 0 0.7rem;
    color: #2f2118;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.025em;
    transition: color 280ms ease;
}

.home-category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #705038;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.home-category-card__link svg {
    width: 1.55rem;
    height: 1.55rem;
    padding: 0.36rem;
    border: 1px solid rgb(112 80 56 / 32%);
    border-radius: 50%;
    fill: none;
    stroke: currentColor;
    transition: transform 280ms ease;
}

.home-category-card:hover .home-category-card__image,
.home-category-card>a:focus-visible .home-category-card__image {
    transform: translateY(-14px) scale(1.08) rotate(1.5deg);
    filter: drop-shadow(0 22px 18px rgb(70 45 25 / 14%));
}

.home-category-card:hover .home-category-card__visual::before,
.home-category-card>a:focus-visible .home-category-card__visual::before {
    opacity: 1;
    filter: brightness(1.08);
    transform: scale(1.08);
}

.home-category-card:hover h3,
.home-category-card>a:focus-visible h3 {
    color: #8a5a20;
}

.home-category-card:hover .home-category-card__link svg,
.home-category-card>a:focus-visible .home-category-card__link svg {
    transform: translateX(6px);
}

.home-categories__curve {
    position: absolute;
    left: 0;
    top: 20.5rem;
    z-index: 0;
    width: 100%;
    height: 12rem;
    overflow: visible;
    pointer-events: none;
}

.home-categories__curve path {
    fill: none;
    stroke: rgb(153 103 41 / 23%);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 1700;
    stroke-dashoffset: 1700;
}

@media (max-width: 1100px) {
    .home-categories__rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-category-card>a {
        min-height: 23rem;
    }

    .home-categories__curve {
        display: none;
    }
}

@media (max-width: 760px) {
    .home-categories__rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 640px) {
    .home-categories {
        padding: 20px 0 4rem;
    }

    .home-categories .container {
        width: 100%;
    }

    .home-categories .home-section-heading {
        width: calc(100% - 32px);
        margin-bottom: 2rem;
    }

    .home-categories__rail {
        display: grid;
        grid-auto-columns: 80vw;
        grid-template-columns: none;
        grid-auto-flow: column;
        padding-inline: 7vw;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-padding-inline: 7vw;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        overscroll-behavior-inline: contain;
    }

    .home-categories__rail::-webkit-scrollbar {
        display: none;
    }

    .home-category-card {
        scroll-snap-align: start;
    }

    .home-category-card:nth-child(n)>a {
        min-height: 23rem;
        padding: 1rem .75rem 1.5rem;
        transform: none;
    }

    .home-category-card__visual {
        width: min(70vw, 290px);
        height: 15.5rem;
    }

    .home-category-card__copy h3 {
        font-size: 1.9rem;
    }

    .home-categories__curve {
        display: none;
    }
}

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

    .home-category-card__image,
    .home-category-card__visual::before,
    .home-category-card__copy h3,
    .home-category-card__link svg {
        transition: none;
    }

    .home-category-card:hover .home-category-card__image,
    .home-category-card>a:focus-visible .home-category-card__image {
        transform: none;
    }

    .home-categories__curve path {
        stroke-dashoffset: 0;
    }
}

/* =========================================================
   GUÍA INTERACTIVA
   ========================================================= */
.home-guide {
    position: relative;
    isolation: isolate;
    padding: clamp(5rem, 8vw, 8rem) 0;
    overflow: hidden;
    color: #35271f;
    background: linear-gradient(180deg, #fffaf1 0%, #f8eadb 100%);
}

.home-guide::before,
.home-guide::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.home-guide::before {
    left: -3.5rem;
    top: 8rem;
    width: 11rem;
    height: 11rem;
    background: rgb(184 135 66 / 9%);
    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;
    transform: rotate(-18deg);
}

.home-guide::after {
    right: -5rem;
    bottom: 4rem;
    width: 17rem;
    height: 25rem;
    border: 1px solid rgb(167 106 34 / 13%);
    border-radius: 48% 52% 45% 55%;
    transform: rotate(18deg);
}

.home-guide .container {
    position: relative;
    z-index: 1;
}

.home-guide .home-section-heading {
    width: min(100%, 82rem);
    max-width: none;
    margin: 0 auto clamp(3.5rem, 6vw, 5.5rem);
    text-align: center;
}

@media (min-width: 1200px) {
    .home-guide .home-section-heading h2 {
        white-space: nowrap;
    }
}

.home-guide .home-section-heading>span {
    display: block;
    margin-bottom: .65rem;
    color: #9a6420;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.home-guide .home-section-heading h2 {
    margin: 0;
    color: #30231c;
    font-family: var(--serif);
    font-size: clamp(3rem, 4.5vw, 5rem);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.045em;
}

.home-guide .home-section-heading p {
    margin: 1rem auto 0;
    color: #725f51;
    font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.home-guide__experience {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
    grid-template-areas: "scene needs";
    align-items: center;
    gap: 1.25rem clamp(36px, 4vw, 72px);
    min-height: 620px;
}

.home-guide__experience::before {
    content: "";
    position: absolute;
    left: -8rem;
    top: 46%;
    z-index: 0;
    width: 24rem;
    height: 13rem;
    border-top: 1px solid rgb(167 106 34 / 14%);
    border-radius: 50%;
    transform: rotate(-9deg);
    pointer-events: none;
}

.home-guide__orbit {
    position: relative;
    inset: auto;
    z-index: 2;
    grid-area: needs;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(5.15rem, auto);
    align-items: stretch;
    gap: 16px 18px;
    align-self: center;
    pointer-events: none;
}

.home-guide__orbit::before {
    content: "";
    position: absolute;
    inset: -4.5rem -5rem;
    z-index: -1;
    background:
        radial-gradient(ellipse at center,
            rgb(190 137 63 / 22%) 0%,
            rgb(210 166 103 / 12%) 34%,
            transparent 72%);
    filter: blur(16px);
    pointer-events: none;
}

.home-need-orbit {
    position: relative;

    display: flex;
    align-items: center;
    gap: 0.9rem;

    width: 100%;
    min-height: 5.2rem;
    padding: 0.78rem 1rem 0.78rem 0.82rem;

    overflow: hidden;

    border: 1px solid rgb(217 181 115 / 38%);
    border-radius: 1.5rem 1.5rem 1.5rem 0.55rem;

    color: #fff8ec;
    background:
        linear-gradient(90deg,
            rgb(78 55 39 / 98%) 0%,
            rgb(49 37 29 / 98%) 52%,
            rgb(28 24 20 / 99%) 100%);

    box-shadow:
        inset 3px 0 0 rgb(217 181 115 / 55%),
        inset 0 1px 0 rgb(255 255 255 / 8%),
        0 1rem 2rem rgb(75 48 25 / 16%);

    font: inherit;
    text-align: left;

    opacity: 1;
    cursor: pointer;
    pointer-events: auto;

    transition:
        transform 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease,
        background 240ms ease;
}

.home-need-orbit::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(112deg,
            transparent 0%,
            transparent 36%,
            rgb(240 210 138 / 18%) 49%,
            transparent 62%,
            transparent 100%);

    transform: translateX(-130%);
    transition: transform 720ms ease;

    pointer-events: none;
}

.home-need-orbit::after {
    content: "";

    position: absolute;
    right: 0.55rem;
    bottom: 0.38rem;
    z-index: 0;

    width: 3.35rem;
    height: 3.35rem;

    background: rgb(217 181 115 / 8%);

    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;

    transform: rotate(-13deg);

    pointer-events: none;
}

.home-need-orbit:hover::before,
.home-need-orbit:focus-visible::before,
.home-need-orbit[aria-pressed="true"]::before {
    transform: translateX(125%);
}

.home-need-orbit__icon {
    position: relative;
    z-index: 1;

    display: grid;
    place-items: center;

    flex: 0 0 3.2rem;
    width: 3.2rem;
    height: 3.2rem;

    border: 1px solid rgb(240 210 138 / 52%);
    border-radius: 50% 50% 50% 34%;

    color: #f0d28a;
    background:
        radial-gradient(circle at 35% 28%, rgb(255 244 202 / 18%), transparent 42%),
        linear-gradient(145deg, rgb(217 181 115 / 24%), rgb(184 135 66 / 8%));

    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 13%),
        0 0.55rem 1rem rgb(0 0 0 / 17%);

    transform: translateX(-0.08rem);

    transition:
        transform 240ms ease,
        color 240ms ease,
        background 240ms ease,
        box-shadow 240ms ease;
}

.home-need-orbit__float {
    display: flex;
    align-items: center;
    gap: .8rem;
    transform-origin: center;
}

.home-need-orbit__icon svg {
    width: 1.45rem;
    height: 1.45rem;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-need-orbit strong,
.home-need-orbit small {
    position: relative;
    z-index: 1;

    display: block;
}

.home-need-orbit strong {
    color: #fff8ec;

    font-size: 0.96rem;
    font-weight: 850;
    line-height: 1.15;
}

.home-need-orbit small {
    margin-top: 0.25rem;

    color: rgb(255 248 236 / 72%);

    font-size: 0.79rem;
    font-weight: 600;
    line-height: 1.25;
}

.home-need-orbit:hover,
.home-need-orbit:focus-visible {
    border-color: rgb(240 210 138 / 68%);

    background:
        linear-gradient(90deg,
            rgb(91 63 43 / 99%) 0%,
            rgb(55 41 31 / 99%) 54%,
            rgb(31 26 21 / 100%) 100%);

    box-shadow:
        inset 3px 0 0 #d9b573,
        inset 0 1px 0 rgb(255 255 255 / 10%),
        0 1.25rem 2.5rem rgb(64 40 20 / 24%),
        0 0 1.4rem rgb(184 135 66 / 12%);

    transform: translateY(-3px);
}

.home-need-orbit:hover .home-need-orbit__icon,
.home-need-orbit:focus-visible .home-need-orbit__icon {
    color: #231811;
    background: linear-gradient(145deg, #f0d28a, #b88742);

    box-shadow:
        0 0.7rem 1.3rem rgb(0 0 0 / 24%),
        0 0 1.1rem rgb(217 181 115 / 22%);

    transform: rotate(-5deg) scale(1.08);
}

.home-need-orbit[aria-pressed="true"] {
    border-color: rgb(240 210 138 / 88%);

    background:
        radial-gradient(circle at 16% 40%, rgb(240 210 138 / 16%), transparent 7rem),
        linear-gradient(90deg,
            #65482f 0%,
            #3c2c22 52%,
            #211b16 100%);

    box-shadow:
        inset 4px 0 0 #f0d28a,
        inset 0 1px 0 rgb(255 255 255 / 12%),
        0 1.35rem 2.7rem rgb(58 35 17 / 28%),
        0 0 1.7rem rgb(184 135 66 / 17%);

    transform: translateY(-2px) scale(1.015);
}

.home-need-orbit[aria-pressed="true"] .home-need-orbit__icon {
    color: #21160f;
    background: linear-gradient(145deg, #f0d28a, #b88742);
}

.home-need-card {
    position: relative;
    min-width: 0;
    width: 100%;
    justify-self: stretch;

    border-radius: 1.5rem 1.5rem 1.5rem 0.55rem;

    pointer-events: auto;

    transition: transform 220ms ease;
}

.home-need-card:nth-child(n) {
    width: 100%;
    justify-self: stretch;
    translate: 0;
}

.home-need-card:nth-child(even) .home-need-orbit {
    border-radius: 1.5rem 0.55rem 1.5rem 1.5rem;

    box-shadow:
        inset -3px 0 0 rgb(217 181 115 / 50%),
        inset 0 1px 0 rgb(255 255 255 / 8%),
        0 1rem 2rem rgb(75 48 25 / 16%);
}

.home-need-card:nth-child(even) .home-need-orbit:hover,
.home-need-card:nth-child(even) .home-need-orbit:focus-visible {
    box-shadow:
        inset -3px 0 0 #d9b573,
        inset 0 1px 0 rgb(255 255 255 / 10%),
        0 1.25rem 2.5rem rgb(64 40 20 / 24%),
        0 0 1.4rem rgb(184 135 66 / 12%);
}

.home-need-card:nth-child(even) .home-need-orbit[aria-pressed="true"] {
    box-shadow:
        inset -4px 0 0 #f0d28a,
        inset 0 1px 0 rgb(255 255 255 / 12%),
        0 1.35rem 2.7rem rgb(58 35 17 / 28%),
        0 0 1.7rem rgb(184 135 66 / 17%);
}

.home-need-card:nth-child(3n) .home-need-orbit__icon {
    border-radius: 50% 50% 38% 50%;
}

.home-need-card.is-active {
    z-index: 3;
}

.home-need-card.is-active .home-need-card__detail {
    max-height: 10rem;
    padding: .75rem 1rem 1rem;
    border-left-color: #b88742;
    opacity: 1;
    transform: translateY(0);
}

.home-guide__center {
    position: relative;
    z-index: 1;
    grid-area: scene;
    width: 100%;
    min-height: 620px;
    margin-inline: auto;
    overflow: visible;
}

.home-guide__center::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 1rem;
    z-index: -1;
    width: min(90%, 36rem);
    height: 19rem;
    background: radial-gradient(ellipse, rgb(212 165 94 / 16%), transparent 72%);
    transform: translateX(-50%);
    pointer-events: none;
}

.home-guide__center::after {
    content: "";
    position: absolute;
    left: 1%;
    bottom: 8%;
    z-index: 0;
    width: 8.5rem;
    height: 8.5rem;
    background: rgb(184 135 66 / 7%);
    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;
    transform: rotate(-16deg);
    pointer-events: none;
}

.home-guide__scoop,
.home-guide__falling-food,
.home-guide__bowl {
    position: absolute;
    margin: 0;
    pointer-events: none;
}

.home-guide__scoop {
    left: 46%;
    top: 8px;
    z-index: 4;
    width: clamp(310px, 29vw, 470px);
    height: 230px;
    transform: translateX(-50%);
    transform-origin: 18% 24%;
}

.home-guide__falling-food {
    left: 50%;
    top: 155px;
    z-index: 1;
    width: clamp(230px, 20vw, 340px);
    height: 335px;
    transform: translateX(-50%);
    transform-origin: top center;
}

.home-guide__bowl {
    left: 50%;
    bottom: 0;
    width: min(100%, 520px);
    height: 330px;
    transform: translateX(-50%);
}

.home-guide__bowl--base,
.home-guide__bowl--filled {
    transform-origin: 50% 100%;
}

.home-guide__bowl--base {
    z-index: 2;
}

.home-guide__bowl--filled {
    z-index: 3;
    opacity: 0;
}

.home-guide__scoop-image,
.home-guide__falling-food-image,
.home-guide__bowl-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-guide__bowl--base .home-guide__bowl-image {
    transform: translateY(-8px) scale(1.32);
}

.home-guide__bowl--filled .home-guide__bowl-image {
    transform: scale(1);
}

.home-guide__falling-food-image {
    transform: scale(1.55);
}

.home-guide__scoop-image {
    transform: scale(1.08);
}

.home-guide .home-media-placeholder {
    display: grid;
    place-content: center;
    color: #8b6a50;
    background: rgb(255 250 241 / 42%);
    font-size: .75rem;
    text-align: center;
}

.home-guide .home-media-placeholder>* {
    display: none;
}

.home-guide .home-media-placeholder.home-guide__scoop-image {
    background: url("../img/home/guia/cuchara-alimento.png") center / contain no-repeat;
}

.home-guide .home-media-placeholder.home-guide__falling-food-image {
    background: url("../img/home/guia/alimento-cayendo.png") center / contain no-repeat;
}

.home-guide__bowl--base .home-media-placeholder.home-guide__bowl-image {
    background: url("../img/home/guia/plato-vacio.png") center / contain no-repeat;
}

.home-guide__bowl--filled .home-media-placeholder.home-guide__bowl-image {
    background: url("../img/home/guia/plato-lleno-desbordado.png") center / contain no-repeat;
}

.home-guide__sparkles {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.home-guide__sparkles span {
    position: absolute;

    width: 2rem;
    height: 2rem;

    background: #fff4bd;
    opacity: 0;

    filter:
        drop-shadow(0 0 7px rgb(255 246 195 / 95%)) drop-shadow(0 0 16px rgb(240 196 92 / 82%)) drop-shadow(0 0 30px rgb(201 151 55 / 48%));

    clip-path: polygon(50% 0,
            61% 39%,
            100% 50%,
            61% 61%,
            50% 100%,
            39% 61%,
            0 50%,
            39% 39%);

    will-change: transform, opacity, filter;
}

.home-guide__sparkles span:nth-child(1) {
    left: 25%;
    bottom: 27%;

    width: 3.8rem;
    height: 3.8rem;
}

.home-guide__sparkles span:nth-child(2) {
    right: 25%;
    bottom: 34%;

    width: 2.7rem;
    height: 2.7rem;
}

.home-guide__sparkles span:nth-child(3) {
    left: 40%;
    bottom: 22%;

    width: 9rem;
    height: 9rem;

    border-radius: 50%;
    clip-path: none;

    background: rgb(255 220 135 / 36%);

    filter:
        blur(24px) drop-shadow(0 0 30px rgb(240 196 92 / 55%));
}

.home-guide__sparkles span:nth-child(4) {
    right: 35%;
    bottom: 25%;

    width: 2rem;
    height: 2rem;
}

@media (max-width: 1099px) {
    .home-guide__experience {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: "scene" "needs";
        align-items: start;
    }

    .home-guide__orbit {
        position: relative;
        inset: auto;
        grid-area: needs;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(5.15rem, auto);
        align-items: stretch;
        gap: 14px 16px;
        order: 2;
    }

    .home-need-orbit[class] {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: none;
    }

    .home-guide__center {
        grid-area: scene;
        order: 1;
    }
}

@media (max-width: 699px) {
    .home-guide {
        padding: 4.5rem 0;
    }

    .home-guide .container {
        width: 100%;
    }

    .home-guide .home-section-heading {
        width: calc(100% - 32px);
        margin-bottom: 2.5rem;
    }

    .home-guide .home-section-heading h2 {
        font-size: clamp(2.65rem, 13vw, 3.6rem);
    }

    .home-guide__experience {
        display: flex;
        min-height: 0;
        flex-direction: column;
        gap: 2rem;
        overflow: hidden;
    }

    .home-guide__orbit {
        order: 2;
        display: grid;
        grid-auto-columns: 76vw;
        grid-template-columns: none;
        grid-auto-flow: column;
        width: 100%;
        padding: .35rem 8vw 1rem;
        overflow-x: auto;
        scroll-padding-inline: 8vw;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home-guide__orbit::-webkit-scrollbar {
        display: none;
    }

    .home-need-card {
        translate: none;
        scroll-snap-align: start;
    }

    .home-need-orbit[class] {
        min-height: 5rem;
        translate: none;
    }

    .home-guide__center {
        order: 1;
        width: min(100% - 20px, 360px);
        min-height: 470px;
        overflow: visible;
    }

    .home-guide__scoop {
        left: 48%;
        top: 0;
        width: clamp(280px, 88vw, 340px);
        height: 175px;
    }

    .home-guide__falling-food {
        top: 105px;
        width: clamp(190px, 62vw, 230px);
        height: 255px;
    }

    .home-guide__bowl {
        width: min(100%, 340px);
        height: 235px;
    }

    .home-guide__sparkles span:nth-child(1) {
        width: 2.6rem;
        height: 2.6rem;
    }

    .home-guide__sparkles span:nth-child(2) {
        width: 2rem;
        height: 2rem;
    }

    .home-guide__sparkles span:nth-child(3) {
        width: 5.5rem;
        height: 5.5rem;
        filter: blur(22px);
    }

    .home-guide__sparkles span:nth-child(4) {
        width: 1.55rem;
        height: 1.55rem;
    }

}

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

    .home-need-orbit,
    .home-need-orbit__icon,
    .home-need-card,
    .home-need-card__detail {
        transition: none;
    }

    .home-guide__bowl--base,
    .home-guide__falling-food {
        opacity: 0;
    }

    .home-guide__bowl--filled {
        opacity: 1;
    }

    .home-guide__sparkles span {
        opacity: .15;
    }
}

/* =========================================================
   CRITERIOS
   ========================================================= */

.criteria {
    overflow: hidden;

    color: #f9f5ed;
    background:
        radial-gradient(circle at 0% 0%, rgb(217 181 115 / 14%) 0, transparent 22rem),
        radial-gradient(circle at 100% 100%, rgb(40 77 85 / 42%) 0, transparent 26rem),
        linear-gradient(135deg, #101716 0%, #172622 58%, #0b1110 100%);
}

.criteria::before {
    content: "";

    position: absolute;
    right: -3rem;
    top: 3rem;

    width: 9rem;
    height: 9rem;

    background: rgb(217 181 115 / 8%);

    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;

    pointer-events: none;
}

.criteria-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(3rem, 6vw, 6rem);
}

.criteria-intro {
    position: sticky;
    top: 130px;
    align-self: start;
}

.criteria-intro h2 {
    color: #fffdf8;
    font-size: clamp(2.9rem, 4vw, 4.8rem);
}

.criteria-intro>p {
    color: #bdc6c1;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
}

.criteria .eyebrow {
    color: var(--gold-2);
}

.quote {
    margin-top: 2rem;
    padding: 1.35rem 1.45rem;

    border-left: 3px solid var(--gold);
    border-radius: 0 1rem 1rem 0;

    color: #f4ead7;
    background: rgb(255 255 255 / 5%);

    font: italic 1.25rem/1.35 var(--serif);

    box-shadow: inset 0 1px 0 rgb(255 255 255 / 5%);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.criteria-grid article {
    display: flex;
    gap: 1rem;

    min-height: 8.6rem;
    padding: 1.35rem;

    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 1rem;

    background:
        linear-gradient(180deg, rgb(255 255 255 / 7%) 0%, rgb(255 255 255 / 3%) 100%);

    box-shadow:
        inset 0 1px 0 rgb(255 255 255 / 6%);
}

.criteria-grid article>span {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 2.25rem;
    height: 2.25rem;

    flex: 0 0 auto;

    border: 1px solid rgb(217 181 115 / 35%);
    border-radius: 0.75rem;

    color: var(--gold-2);
    background: rgb(217 181 115 / 8%);

    font: 900 0.78rem/1 var(--sans);
}

.criteria-grid h3 {
    margin: 0;

    color: #fffdf8;

    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.18;
}

.criteria-grid p {
    margin: 0.45rem 0 0;

    color: #b8c1bd;

    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.62;
}

/* =========================================================
   SELECCIÓN CORATTO
   ========================================================= */

.selection {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    background:
        radial-gradient(circle at 100% 0%,
            rgb(184 135 66 / 10%) 0,
            transparent 24rem),
        radial-gradient(circle at 4% 70%,
            rgb(217 181 115 / 9%) 0,
            transparent 19rem),
        #f5efe6;
}

.selection::before,
.selection::after {
    content: "";

    position: absolute;
    z-index: 0;

    background: #b88742;

    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;

    pointer-events: none;
}

.selection::before {
    top: 5rem;
    right: 4%;

    width: 7.5rem;
    height: 7.5rem;

    opacity: 0.07;
    transform: rotate(20deg);
}

.selection::after {
    left: 2%;
    bottom: 5rem;

    width: 5rem;
    height: 5rem;

    opacity: 0.06;
    transform: rotate(-24deg);
}

.selection>.container {
    position: relative;
    z-index: 1;
}

.section-heading.split {
    max-width: none;
    margin-bottom: 3.25rem;

    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr) minmax(18rem, 0.7fr);
    align-items: end;
    gap: clamp(2.5rem, 7vw, 8rem);

    text-align: left;
}

.section-heading.split>div {
    max-width: 46rem;
}

.section-heading.split>div>span {
    display: block;
    margin-bottom: 0.85rem;

    color: #a96b1e;

    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading.split h2 {
    position: relative;

    max-width: 14ch;
    margin: 0;

    color: var(--deep);

    font-family: var(--serif);
    font-size: clamp(3.25rem, 5.25vw, 5.5rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.section-heading.split h2::after {
    content: "";

    display: inline-block;

    width: 0.58em;
    height: 0.58em;
    margin-left: 0.18em;

    background: #b88742;

    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;

    opacity: 0.75;
    transform: rotate(14deg) translateY(0.08em);
}

.section-heading.split>p {
    max-width: 27rem;
    margin: 0;
    padding-left: 1.25rem;

    border-left: 2px solid rgb(184 135 66 / 52%);

    color: #66503d;

    font-size: clamp(1rem, 1.35vw, 1.125rem);
    font-weight: 600;
    line-height: 1.65;
}

.section-heading.split>p {
    max-width: 28rem;
    margin: 0;

    color: var(--muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.product-card {
    position: relative;

    overflow: hidden;

    border: 1px solid rgb(184 135 66 / 18%);
    border-radius: 1.35rem;

    background:
        linear-gradient(180deg, #fffdf8 0%, #fbf5eb 100%);

    box-shadow: var(--shadow-soft);

    transition:
        transform 170ms ease,
        box-shadow 170ms ease,
        border-color 170ms ease;
}

.product-card::after {
    content: "";

    position: absolute;
    right: 1rem;
    bottom: 1rem;

    width: 3rem;
    height: 3rem;

    background: rgb(184 135 66 / 10%);

    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;

    pointer-events: none;
}

.product-card:hover {
    border-color: rgb(184 135 66 / 36%);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.product-image {
    height: 16.5rem;

    display: grid;
    place-items: center;

    background:
        radial-gradient(circle at 50% 42%, rgb(255 253 248 / 72%) 0, transparent 9rem),
        linear-gradient(145deg, #f7efe2 0%, #ead6b7 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    padding: 1.25rem;

    object-fit: contain;
}

.product-image span {
    color: #9c743c;

    font: italic 1.65rem/1.1 var(--serif);
    text-align: center;
}

.product-copy {
    padding: 1.45rem;
}

.product-meta {
    display: inline-flex;

    color: #95692e;

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-copy h3 {
    margin: 0.55rem 0 0.9rem;

    color: var(--deep);

    font-family: var(--sans);
    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.product-copy p {
    margin: 0.55rem 0;

    color: var(--muted);

    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.62;
}

.product-copy p b {
    color: var(--deep);
    font-weight: 900;
}

.product-copy small {
    display: inline-flex;

    margin-top: 0.75rem;
    padding: 0.45rem 0.65rem;

    border-radius: 999px;

    color: #6b491a;
    background: rgb(217 181 115 / 16%);

    font-size: 0.78rem;
    font-weight: 800;
}

.product-copy a {
    margin-top: 1rem;
}

/* =========================================================
   FRACCIONADO
   ========================================================= */

.trial {
    background:
        linear-gradient(180deg, #fffdf8 0%, #fbf6ed 100%);
}

.trial-card {
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(2.2rem, 5vw, 5.5rem);

    padding: clamp(2.5rem, 5vw, 4.5rem);

    overflow: hidden;

    border: 1px solid rgb(184 135 66 / 20%);
    border-radius: var(--radius-xl);

    background:
        radial-gradient(circle at 100% 0%, rgb(217 181 115 / 23%) 0, transparent 18rem),
        linear-gradient(120deg, #f1dfc1 0%, #fbf2e2 100%);

    box-shadow: var(--shadow-card);
}

.trial-card::after {
    content: "";

    position: absolute;
    right: 2rem;
    bottom: 2rem;

    width: 7rem;
    height: 7rem;

    background: rgb(184 135 66 / 8%);

    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;

    pointer-events: none;
}

.trial-card h2 {
    color: var(--deep);
    font-size: clamp(2.7rem, 4vw, 4.6rem);
}

.trial-card p {
    max-width: 42rem;

    color: #5c655f;

    font-size: 1rem;
    font-weight: 500;
    line-height: 1.78;
}

.trial-card ul {
    position: relative;
    z-index: 1;

    list-style: none;
    margin: 0;
    padding: 0;
}

.trial-card li {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    align-items: center;
    gap: 1rem;

    padding: 1rem 0;

    border-bottom: 1px solid rgb(85 65 35 / 16%);

    color: var(--deep);

    font-weight: 750;
}

.trial-card li span {
    display: grid;
    place-items: center;

    width: 2.45rem;
    height: 2.45rem;

    border-radius: 0.75rem;

    color: #fffdf8;
    background: var(--deep);

    font: 900 0.78rem/1 var(--sans);
}

/* =========================================================
   APRENDE
   ========================================================= */

.learn {
    background:
        radial-gradient(circle at 0% 0%, rgb(217 181 115 / 8%) 0, transparent 20rem),
        #faf7f1;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.learn-grid article {
    position: relative;

    min-height: 17rem;
    padding: 1.7rem;

    overflow: hidden;

    border: 1px solid rgb(184 135 66 / 18%);
    border-top: 0.28rem solid var(--gold);
    border-radius: 1.25rem;

    background:
        linear-gradient(180deg, #fffdf8 0%, #fbf6ed 100%);

    box-shadow: var(--shadow-soft);
}

.learn-grid article::after {
    content: "";

    position: absolute;
    right: 1rem;
    bottom: 1rem;

    width: 3rem;
    height: 3rem;

    background: rgb(184 135 66 / 10%);

    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;
}

.learn-grid article>span {
    color: #a17335;

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.learn-grid h3 {
    margin: 0.75rem 0;

    color: var(--deep);

    font-family: var(--sans);
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.learn-grid p {
    color: var(--muted);

    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.7;
}

/* =========================================================
   CIERRE
   ========================================================= */

.closing {
    position: relative;

    padding: clamp(5.5rem, 7vw, 7.5rem) 1.25rem;

    overflow: hidden;

    color: #fffdf8;
    text-align: center;

    background:
        radial-gradient(circle at 50% -20%, #3c554f 0%, var(--deep) 58%),
        var(--deep);
}

.closing::after {
    content: "";

    position: absolute;
    right: 5vw;
    bottom: 3rem;

    width: 8rem;
    height: 8rem;

    background: rgb(217 181 115 / 8%);

    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;
}

.closing .eyebrow {
    color: var(--gold-2);
}

.closing h2 {
    color: #fffdf8;
    font-size: clamp(2.8rem, 4.7vw, 5.2rem);
}

.closing p {
    max-width: 42rem;
    margin: 1.35rem auto 0;

    color: #c6cfcb;

    font-size: 1rem;
    line-height: 1.75;
}

.closing .button-row {
    justify-content: center;
}

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

.site-footer {
    color: #d8dfdc;
    background:
        linear-gradient(180deg, #101716 0%, #090d0c 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.9fr 1.2fr;
    gap: 3.5rem;

    padding: 4.5rem 0;
}

.footer-brand img {
    width: 14rem;
    height: 6rem;

    object-fit: contain;

    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.site-footer h3 {
    margin: 0 0 0.9rem;

    color: #fffdf8;

    font-family: var(--sans);
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer a,
.site-footer p {
    display: block;

    margin: 0.5rem 0;

    color: #aeb8b4;

    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.6;
}

.site-footer a:hover {
    color: var(--gold-2);
}

.footer-bottom {
    padding: 1.15rem 0;

    border-top: 1px solid rgb(255 255 255 / 10%);

    color: #82908a;

    font-size: 0.78rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
    :root {
        --container: min(100% - 40px, 920px);
    }

    .site-header .container {
        width: min(100% - 32px, 1120px);
    }

    .header-inner {
        min-height: 78px;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 230px;
        height: 62px;
        max-height: 62px;
    }

    .header-action--search,
    .header-action--user,
    .header-cta {
        display: none;
    }

    .header-actions {
        margin-left: auto;
        gap: .75rem;
    }

    .header-cart {
        display: inline-grid;
    }

    .nav-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .main-nav {
        display: none;

        position: absolute;
        top: 78px;
        left: 0;
        right: 0;

        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 0.75rem 1.5rem 1.1rem;

        background: #fffaf3;
        border-bottom: 1px solid rgb(17 17 17 / 10%);
        box-shadow: 0 .8rem 1.5rem rgb(40 30 18 / 6%);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 1rem 0;
        font-size: 14px;
    }

    .main-nav a::after {
        display: none;
    }

    .hero::after {
        right: -18vw;
        bottom: -11rem;
        width: 72vw;
        height: 16rem;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-copy {
        max-width: 48rem;
        margin-inline: auto;
        padding: 4.25rem 0 1.8rem;

        text-align: center;
    }

    .hero h1 {
        max-width: none;

        font-size: clamp(3.6rem, 10vw, 5.5rem);
    }

    .hero h1 em::after {
        right: -0.62em;
    }

    .hero-copy>p {
        margin-inline: auto;
    }

    .button-row {
        justify-content: center;
    }

    .hero-guide {
        grid-template-columns: 1fr;
        max-width: 34rem;
        margin-inline: auto;
    }

    .hero-guide a {
        min-height: auto;
    }

    .hero-visual {
        width: min(100%, 44rem);
        height: 29rem;
        min-height: 29rem;
        margin: 0 auto;
    }

    .hero-visual::before {
        right: 50%;
        bottom: 1.8rem;

        width: 24rem;
        height: 24rem;

        transform: translateX(50%);
    }

    .hero-visual::after {
        right: 50%;
        top: 2rem;

        font-size: 0.92rem;

        transform: translateX(50%);
    }

    .hero-visual img {
        right: 50%;

        width: min(100%, 35rem);

        transform: translateX(50%);
    }

    .needs-grid,
    .product-grid,
    .learn-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .criteria-layout {
        grid-template-columns: 1fr;
        gap: 2.8rem;
    }

    .criteria-intro {
        position: static;
    }

    .trial-card {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    :root {
        --container: min(100% - 28px, 100%);
    }

    body {
        font-size: 15px;
    }

    .site-header .container {
        width: calc(100% - 24px);
    }

    .header-inner {
        min-height: 72px;
    }

    .brand img {
        width: 185px;
        height: 56px;
        max-height: 56px;
    }

    .main-nav {
        top: 72px;
    }

    .hero {
        background:
            radial-gradient(circle at 78% 36%, rgb(240 208 154 / 62%) 0, transparent 19rem),
            linear-gradient(115deg, #fffdf8 0%, #f8efe0 62%, #f3dfbd 100%);
    }

    .hero::after {
        display: none;
    }

    .hero-copy {
        padding: 3.2rem 0 1.3rem;
    }

    .eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.18em;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 4.25rem);
    }

    .hero h1 em {
        white-space: normal;
    }

    .hero h1 em::after {
        position: static;
        display: inline-block;
        margin-left: 0.2rem;
    }

    .hero-copy>p {
        font-size: 1rem;
        line-height: 1.72;
    }

    .button-row .button,
    .hero .button {
        width: 100%;
    }

    .hero-guide {
        gap: 0.75rem;
    }

    .hero-guide a {
        padding: 0.95rem;
    }

    .hero-visual {
        height: 22.5rem;
        min-height: 22.5rem;
    }

    .hero-visual::before {
        width: 19rem;
        height: 19rem;
    }

    .hero-visual::after {
        display: none;
    }

    .section,
    .hero+.section {
        padding-block: 4.5rem;
    }

    .section-heading {
        margin-bottom: 2.4rem;
    }

    .section-heading h2,
    .criteria-intro h2,
    .trial-card h2,
    .closing h2 {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
    }

    .section-heading.split {
        display: block;
    }

    .section-heading.split>p {
        margin-top: 1rem;
    }

    .needs-grid,
    .criteria-grid,
    .product-grid,
    .learn-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 14rem;
    }

    .trial-card {
        padding: 2rem 1.35rem;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3.5rem 0;
    }
}

@media (max-width: 899px) {
    .section-heading.split {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        margin-bottom: 2.5rem;
    }

    .section-heading.split h2 {
        max-width: 14ch;
        font-size: clamp(2.8rem, 9vw, 4.6rem);
    }

    .section-heading.split>p {
        max-width: 35rem;
    }

    .selection::before {
        top: 7rem;
        right: -2rem;

        width: 6rem;
        height: 6rem;
    }
}

@media (max-width: 599px) {
    .section-heading.split h2 {
        font-size: clamp(2.65rem, 12vw, 3.8rem);
    }

    .section-heading.split>p {
        padding-left: 1rem;

        font-size: 1rem;
        line-height: 1.55;
    }

    .selection::after {
        left: -1rem;
        bottom: 3rem;

        width: 4rem;
        height: 4rem;
    }
}

/* =========================================================
   CORATTO PET · EXPERIENCIA EDITORIAL V3
   Hero consultivo, caminos de decisión e iconografía propia.
   ========================================================= */

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon-sprite symbol,
.hero-guide svg,
.fraction-badge svg,
.need-icon svg,
.criteria-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes corattoReveal {
    from {
        opacity: 0;
        transform: translateY(1.5rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes corattoPetBreathe {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-0.55rem) scale(1.006);
    }
}

@keyframes corattoBadgeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-0.55rem) rotate(1deg);
    }
}

@keyframes corattoQuestionFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-0.4rem);
    }
}

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

@keyframes corattoGlow {

    0%,
    100% {
        opacity: .38;
        transform: scale(.94);
    }

    50% {
        opacity: .7;
        transform: scale(1.06);
    }
}

@keyframes corattoScroll {

    0%,
    100% {
        transform: translateY(0);
        opacity: .45;
    }

    50% {
        transform: translateY(.35rem);
        opacity: 1;
    }
}

.hero {
    min-height: calc(100svh - 92px);
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 79% 48%, rgb(239 203 139 / 68%) 0, transparent 29rem),
        radial-gradient(circle at 14% 82%, rgb(255 255 255 / 92%) 0, transparent 28rem),
        linear-gradient(118deg, #fffdf9 0%, #faf3e8 48%, #f2ddb8 100%);
}

.hero::before {
    left: -12rem;
    top: auto;
    bottom: -17rem;
    width: 34rem;
    height: 34rem;
    border: 1px solid rgb(184 135 66 / 25%);
    border-radius: 50%;
    background: transparent;
}

.hero::after {
    right: -13vw;
    bottom: -12.5rem;
    width: min(77rem, 68vw);
    height: 20rem;
    border-top: .28rem solid rgb(217 181 115 / 90%);
    border-radius: 62% 38% 0 0;
    background: linear-gradient(142deg, #12201d 0%, #1c2d28 48%, #0b1210 100%);
    opacity: 1;
}

.hero-ambient {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.hero-ambient span {
    position: absolute;
    border: 1px solid rgb(184 135 66 / 20%);
    border-radius: 50%;
}

.hero-ambient span:nth-child(1) {
    right: 8%;
    top: 13%;
    width: 7rem;
    height: 7rem;
    animation: corattoGlow 5s ease-in-out infinite;
}

.hero-ambient span:nth-child(2) {
    right: 39%;
    top: 19%;
    width: .65rem;
    height: .65rem;
    background: var(--gold);
    border: 0;
    box-shadow: 1.2rem 1rem 0 rgb(184 135 66 / 25%);
}

.hero-ambient span:nth-child(3) {
    left: 48%;
    bottom: 13%;
    width: 12rem;
    height: 12rem;
    border-style: dashed;
    animation: corattoOrbit 32s linear infinite;
}

.hero .container {
    width: min(1320px, calc(100% - 64px));
}

.hero-grid {
    min-height: calc(100svh - 92px);
    grid-template-columns: minmax(0, 1.04fr) minmax(30rem, .96fr);
    gap: clamp(1rem, 3vw, 4rem);
    align-items: center;
    padding: 3rem 0 5.5rem;
}

.hero-grid::before {
    left: -38vw;
    bottom: -13rem;
    height: 17rem;
}

.hero-grid::after {
    display: none;
}

.hero-copy {
    z-index: 5;
    max-width: 60rem;
    padding: 1rem 0;
    animation: none;
}

.hero-copy .eyebrow {
    animation: corattoReveal .55s ease both;
}

.hero h1 {
    max-width: 10.8ch;
    margin-bottom: 1.25rem;
    font-size: clamp(4.5rem, 6.4vw, 7.2rem);
    line-height: .84;
    letter-spacing: -.052em;
    animation: corattoReveal .65s .08s ease both;
}

.hero h1 em {
    position: relative;
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
}

.hero h1 em::before {
    content: "";
    position: absolute;
    left: -.06em;
    right: -.15em;
    bottom: -.03em;
    height: .12em;
    border-radius: 50%;
    background: rgb(184 135 66 / 20%);
    transform: rotate(-1.5deg);
}

.hero h1 em::after {
    display: none;
}

.hero-copy>.hero-lead {
    max-width: 42rem;
    margin: 0;
    color: #4c5854;
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.75;
    animation: corattoReveal .65s .16s ease both;
}

.hero-lead strong {
    color: #7d541f;
}

.hero .button-row {
    margin-top: 1.45rem;
    animation: corattoReveal .65s .24s ease both;
}

.hero .button {
    min-height: 3.35rem;
    padding-inline: 1.7rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    color: #68716d;
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .055em;
    text-transform: uppercase;
    animation: corattoReveal .65s .3s ease both;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.hero-trust span::before {
    content: "";
    width: .33rem;
    height: .33rem;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 .23rem rgb(184 135 66 / 11%);
}

.hero-guide {
    max-width: 46rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
    margin-top: 2.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    animation: corattoReveal .7s .36s ease both;
}

.hero-guide::before {
    display: none;
}

.hero-guide a {
    min-height: 7.4rem;
    display: grid;
    grid-template-columns: 2.4rem 1fr;
    align-content: center;
    gap: .65rem;
    padding: 1rem;
    border: 1px solid rgb(184 135 66 / 20%);
    border-radius: 1.15rem;
    color: var(--deep);
    background: rgb(255 253 248 / 72%);
    box-shadow: 0 .8rem 2rem rgb(56 40 20 / 6%), inset 0 1px 0 #fff;
    backdrop-filter: blur(10px);
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
}

.hero-guide a+a {
    border-left: 1px solid rgb(184 135 66 / 20%);
}

.hero-guide a::before,
.hero-guide a::after {
    display: none;
}

.hero-guide a>svg:not(.guide-arrow) {
    width: 2.4rem;
    height: 2.4rem;
    padding: .55rem;
    color: #fff;
    border-radius: .8rem;
    background: linear-gradient(145deg, var(--gold-2), #a76a22);
    box-shadow: 0 .55rem 1.1rem rgb(137 88 28 / 18%);
}

.hero-guide a>span {
    display: block;
}

.hero-guide strong {
    display: block;
    color: var(--deep);
    font-size: .83rem;
    line-height: 1.25;
}

.hero-guide small {
    display: block;
    margin-top: .35rem;
    color: #6d7571;
    font-size: .68rem;
    line-height: 1.35;
}

.hero-guide .guide-arrow {
    grid-column: 2;
    width: 1rem;
    height: 1rem;
    margin-top: .55rem;
    color: var(--gold);
    transition: transform .2s ease;
}

.hero-guide a:hover,
.hero-guide a:focus-visible {
    border-color: rgb(184 135 66 / 56%);
    background: #fffdf8;
    box-shadow: 0 1.1rem 2.3rem rgb(56 40 20 / 12%);
    transform: translateY(-.35rem);
}

.hero-guide a:hover .guide-arrow {
    transform: translateX(.25rem);
}

.hero-visual {
    position: relative;
    align-self: stretch;
    min-height: 42rem;
    height: auto;
    animation: corattoReveal .8s .18s ease both;
}

.hero-visual::before,
.hero-visual::after {
    display: none;
}

.hero-visual .orbit {
    position: absolute;
    z-index: 0;
    right: 1%;
    top: 12%;
    width: min(38rem, 43vw);
    height: min(38rem, 43vw);
    border: 1px solid rgb(184 135 66 / 24%);
    border-radius: 50%;
    background: radial-gradient(circle, rgb(255 250 238 / 58%) 0 52%, transparent 53%);
}

.hero-visual .orbit::before,
.hero-visual .orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgb(184 135 66 / 20%);
}

.hero-visual .orbit::before {
    inset: 2.2rem;
    animation: corattoOrbit 40s linear infinite;
}

.hero-visual .orbit::after {
    inset: 5.2rem;
    border-style: solid;
}

.hero-visual img {
    z-index: 3;
    right: -5%;
    bottom: -1.5rem;
    width: 112%;
    height: 94%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 1.5rem 1.5rem rgb(37 29 19 / 17%));
    animation: corattoPetBreathe 6.5s ease-in-out infinite;
}

.hero-question {
    position: absolute;
    z-index: 5;
    padding: .8rem 1rem .8rem 2.85rem;
    border: 1px solid rgb(184 135 66 / 23%);
    border-radius: 1rem;
    color: #58615d;
    background: rgb(255 253 248 / 82%);
    box-shadow: 0 1rem 2.5rem rgb(52 38 20 / 9%);
    backdrop-filter: blur(12px);
    font: italic .9rem/1.25 var(--serif);
    animation: corattoQuestionFloat 4.5s ease-in-out infinite;
}

.hero-question span {
    position: absolute;
    left: .75rem;
    top: 50%;
    translate: 0 -50%;
    color: var(--gold);
    font: 800 .66rem/1 var(--sans);
}

.hero-question b {
    color: var(--deep);
    font-size: 1rem;
}

.hero-question-one {
    left: -2%;
    top: 18%;
}

.hero-question-two {
    right: -2%;
    top: 34%;
    animation-delay: -2s;
}

.fraction-badge {
    position: absolute;
    z-index: 6;
    right: 3%;
    bottom: 11%;
    display: grid;
    grid-template-columns: 3rem 1fr;
    align-items: center;
    gap: .8rem;
    min-width: 15.5rem;
    padding: .9rem 1rem;
    border: 1px solid rgb(217 181 115 / 45%);
    border-radius: 1.1rem;
    color: #fff;
    background: linear-gradient(135deg, rgb(19 32 29 / 96%), rgb(35 53 47 / 94%));
    box-shadow: 0 1.3rem 2.8rem rgb(18 27 24 / 24%);
    animation: corattoBadgeFloat 4.8s ease-in-out infinite;
}

.fraction-badge svg {
    width: 3rem;
    height: 3rem;
    padding: .65rem;
    color: var(--gold-2);
    border-radius: 50%;
    background: rgb(255 255 255 / 7%);
}

.fraction-badge span {
    display: flex;
    flex-direction: column;
}

.fraction-badge small {
    color: var(--gold-2);
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.fraction-badge strong {
    margin: .1rem 0;
    font: 700 1.45rem/1 var(--serif);
}

.fraction-badge em {
    color: rgb(255 255 255 / 68%);
    font-size: .62rem;
    font-style: normal;
}

.hero-scroll {
    position: absolute;
    z-index: 8;
    left: 50%;
    bottom: .9rem;
    translate: -50% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    color: rgb(255 255 255 / 76%);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-scroll i {
    width: 1px;
    height: 1.3rem;
    background: linear-gradient(#fff, transparent);
    animation: corattoScroll 1.8s ease-in-out infinite;
}

/* Necesidades: mosaico orgánico con iconografía, sin numeración. */
.needs {
    position: relative;
    background: linear-gradient(180deg, #fffdf8, #fbf7ef);
}

.needs-grid {
    gap: 1rem;
    border: 0;
    border-radius: 0;
    overflow: visible;
}

.need-card {
    min-height: 17rem;
    padding: 1.55rem;
    border: 1px solid rgb(184 135 66 / 17%) !important;
    border-radius: 1.4rem;
    background: linear-gradient(145deg, #fff, #fcf7ee);
    box-shadow: 0 1rem 2.7rem rgb(48 35 20 / 6%);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.need-card::before {
    display: none;
}

.need-card::after {
    right: 1rem;
    top: 1rem;
    width: 3.3rem;
    height: 3.3rem;
    opacity: .045;
}

.need-card:nth-child(2),
.need-card:nth-child(4),
.need-card:nth-child(5),
.need-card:nth-child(7) {
    background: linear-gradient(145deg, #f6ead8, #fffaf2);
}

.need-card:hover {
    transform: translateY(-.5rem) rotate(.15deg);
    box-shadow: 0 1.5rem 3.2rem rgb(48 35 20 / 11%);
    border-color: rgb(184 135 66 / 42%) !important;
}

.need-icon {
    width: 3.4rem;
    height: 3.4rem;
    display: grid;
    place-items: center;
    border-radius: 1.05rem 1.05rem 1.05rem .3rem;
    color: #9d6b29;
    background: rgb(217 181 115 / 18%);
    transition: transform .28s ease, background .28s ease;
}

.need-icon svg {
    width: 1.65rem;
    height: 1.65rem;
}

.need-card:hover .need-icon {
    color: #fff;
    background: linear-gradient(145deg, var(--gold-2), var(--gold));
    transform: rotate(-6deg) scale(1.08);
}

.need-card h3 {
    margin-top: 1.7rem;
}

/* Criterios: recorrido conectado en vez de grilla numerada. */
.criteria-layout {
    grid-template-columns: minmax(20rem, .78fr) minmax(0, 1.22fr);
    gap: clamp(3rem, 7vw, 7rem);
}

.criteria-grid {
    position: relative;
    grid-template-columns: 1fr;
    gap: .45rem;
}

.criteria-grid::before {
    content: "";
    position: absolute;
    left: 1.75rem;
    top: 2rem;
    bottom: 2rem;
    width: 1px;
    background: linear-gradient(transparent, var(--gold-2) 12%, var(--gold-2) 88%, transparent);
    opacity: .5;
}

.criteria-grid article {
    position: relative;
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    align-items: center;
    gap: 1rem;
    min-height: 6rem;
    padding: .85rem 1rem .85rem 0;
    border: 0;
    border-radius: 1rem;
    transition: background .25s ease, transform .25s ease;
}

.criteria-grid article:hover {
    background: rgb(255 255 255 / 5%);
    transform: translateX(.4rem);
}

.criteria-grid article>.criteria-icon {
    position: relative;
    z-index: 2;
    width: 3.5rem;
    height: 3.5rem;
    display: grid;
    place-items: center;
    border: 1px solid rgb(217 181 115 / 45%);
    border-radius: 50%;
    color: var(--gold-2);
    background: var(--deep);
    box-shadow: 0 0 0 .4rem var(--deep);
}

.criteria-icon svg {
    width: 1.45rem;
    height: 1.45rem;
}

.criteria-grid h3 {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 650;
}

.criteria-grid p {
    max-width: 34rem;
    margin-top: .2rem;
}

@media (max-width: 1180px) {
    .hero {
        min-height: auto;
    }

    .hero .container {
        width: var(--container);
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 4.5rem;
    }

    .hero-copy {
        max-width: 52rem;
        text-align: center;
        margin-inline: auto;
    }

    .hero-copy>.hero-lead {
        margin-inline: auto;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-guide {
        max-width: 48rem;
        margin-inline: auto;
        text-align: left;
    }

    .hero-visual {
        min-height: 36rem;
        width: min(100%, 48rem);
        margin-inline: auto;
    }

    .hero-visual .orbit {
        right: 50%;
        width: 32rem;
        height: 32rem;
        transform: translateX(50%);
    }

    .hero-visual img {
        right: 50%;
        width: min(100%, 39rem);
        transform: translateX(50%);
        animation: none;
    }

    .hero-question-one {
        left: 1%;
    }

    .hero-question-two {
        right: 1%;
    }

    .criteria-layout {
        grid-template-columns: 1fr;
    }

    .criteria-grid {
        max-width: 47rem;
        margin-inline: auto;
    }
}

@media (max-width: 700px) {
    .hero-grid {
        padding: 3.5rem 0 3rem;
    }

    .hero h1 {
        font-size: clamp(3.3rem, 16vw, 4.7rem);
        line-height: .88;
    }

    .hero-trust {
        gap: .55rem 1rem;
    }

    .hero-guide {
        grid-template-columns: 1fr;
        gap: .65rem;
        margin-top: 1.7rem;
        padding: 0;
    }

    .hero-guide-title {
        text-align: center;
    }

    .hero-guide a {
        min-height: 5.2rem;
        grid-template-columns: 2.4rem 1fr auto;
        padding: .8rem;
    }

    .hero-guide .guide-arrow {
        grid-column: 3;
        grid-row: 1;
        align-self: center;
        margin: 0;
    }

    .hero-visual {
        min-height: 27rem;
        height: 27rem;
    }

    .hero-visual .orbit {
        top: 7%;
        width: 22rem;
        height: 22rem;
    }

    .hero-visual img {
        height: 94%;
        bottom: -1rem;
    }

    .hero-question {
        display: none;
    }

    .fraction-badge {
        right: 50%;
        bottom: 1.3rem;
        translate: 50% 0;
        min-width: 14.8rem;
    }

    .hero-scroll {
        display: none;
    }

    .needs-grid {
        gap: .8rem;
    }

    .need-card {
        min-height: auto;
    }

    .criteria-grid article {
        grid-template-columns: 3.2rem 1fr;
    }

    .criteria-grid article>.criteria-icon {
        width: 3.2rem;
        height: 3.2rem;
    }

    .criteria-grid::before {
        left: 1.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


@media (width < 0px) {
    /* =========================================================
   CORATTO PET · HERO UX V2 (histórico, desactivado por V3)
   Mayor presencia visual, movimiento suave, iconos reales y
   guía inicial menos "card antigua".
   ========================================================= */

    @keyframes corattoHeroFadeUp {
        from {
            opacity: 0;
            transform: translateY(1.1rem);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes corattoFloatPet {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-0.75rem);
        }
    }

    @keyframes corattoFloatBadge {

        0%,
        100% {
            transform: translateY(0) rotate(-1deg);
        }

        50% {
            transform: translateY(-0.45rem) rotate(1deg);
        }
    }

    @keyframes corattoSoftPulse {

        0%,
        100% {
            opacity: 0.38;
            transform: scale(1);
        }

        50% {
            opacity: 0.58;
            transform: scale(1.025);
        }
    }

    .hero {
        isolation: isolate;

        background:
            radial-gradient(circle at 73% 42%, rgb(240 208 154 / 82%) 0, transparent 30rem),
            radial-gradient(circle at 18% 72%, rgb(255 255 255 / 86%) 0, transparent 24rem),
            radial-gradient(circle at 88% 18%, rgb(255 250 237 / 70%) 0, transparent 20rem),
            linear-gradient(112deg, #fffdf8 0%, #f8efe0 52%, #f3dfbd 100%);
    }

    /* Curva negra/dorada inferior derecha */
    .hero::after {
        right: -12vw;
        bottom: -10rem;

        width: min(72rem, 66vw);
        height: 18rem;

        border-top: 0.36rem solid rgb(217 181 115 / 92%);
        border-radius: 58% 42% 0 0;

        background:
            linear-gradient(135deg, #0d1412 0%, #172320 58%, #0a0f0e 100%);

        opacity: 0.98;
    }

    /* Curva negra/dorada inferior izquierda para equilibrar el hero */
    .hero-grid::before {
        content: "";

        position: absolute;
        left: -30vw;
        bottom: -11.5rem;
        z-index: -1;

        width: min(52rem, 58vw);
        height: 16rem;

        border-top: 0.32rem solid rgb(217 181 115 / 72%);
        border-radius: 42% 58% 0 0;

        background:
            linear-gradient(225deg, #111917 0%, #1c2824 58%, #0b100f 100%);

        opacity: 0.94;

        transform: rotate(5deg);

        pointer-events: none;
    }

    /* Mosaico sutil de patitas dentro del hero */
    .hero-grid::after {
        content: "";

        position: absolute;
        inset: 7rem -3rem 3rem auto;
        z-index: -1;

        width: min(38rem, 38vw);

        opacity: 0.22;

        background-image:
            var(--paw-mask),
            var(--paw-mask),
            var(--paw-mask),
            var(--paw-mask),
            var(--paw-mask);
        background-repeat: no-repeat;
        background-size:
            3.7rem 3.7rem,
            2.8rem 2.8rem,
            4.5rem 4.5rem,
            3.2rem 3.2rem,
            2.5rem 2.5rem;
        background-position:
            91% 8%,
            66% 28%,
            100% 58%,
            72% 79%,
            43% 62%;

        pointer-events: none;
    }

    .hero-copy {
        animation: corattoHeroFadeUp 640ms ease both;
    }

    .hero h1 {
        max-width: 12.9ch;
    }

    .hero h1 em::after {
        right: -0.58em;
        top: 0.06em;
    }

    .hero-copy>p {
        max-width: 45rem;
    }

    /* Botones con patita real más visible */
    .button::before,
    .header-cta::before {
        width: 1.18rem;
        height: 1.18rem;
    }

    .hero .button {
        padding-inline: 1.55rem;
    }

    /* La guía deja de parecer 3 cards antiguas y pasa a ser panel de decisión */
    .hero-guide {
        position: relative;

        max-width: 53rem;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;

        margin-top: 1.7rem;
        padding: 0.62rem;

        border: 1px solid rgb(184 135 66 / 30%);
        border-radius: 1.35rem;

        background:
            radial-gradient(circle at 0% 0%, rgb(217 181 115 / 18%) 0, transparent 12rem),
            linear-gradient(135deg, rgb(17 25 23 / 96%) 0%, rgb(30 40 36 / 94%) 100%);

        box-shadow:
            0 1.2rem 2.8rem rgb(21 27 26 / 16%),
            inset 0 1px 0 rgb(255 255 255 / 8%);

        animation: corattoHeroFadeUp 720ms ease 120ms both;
    }

    .hero-guide::before {
        content: "Empieza por lo que necesitas resolver";

        position: absolute;
        left: 1.05rem;
        top: -0.85rem;

        padding: 0.28rem 0.7rem;

        border: 1px solid rgb(184 135 66 / 28%);
        border-radius: 999px;

        color: #6f4a17;
        background: rgb(255 253 248 / 92%);

        font-family: var(--sans);
        font-size: 0.68rem;
        font-weight: 900;
        letter-spacing: 0.07em;
        text-transform: uppercase;

        box-shadow: 0 0.7rem 1.4rem rgb(35 28 19 / 8%);
    }

    .hero-guide a {
        min-height: 5.6rem;
        padding: 1rem 1rem 0.92rem 3.75rem;

        border: 0;
        border-radius: 0.95rem;

        background: transparent;
        box-shadow: none;

        color: #fffdf8;
    }

    .hero-guide a+a {
        border-left: 1px solid rgb(255 255 255 / 10%);
    }

    .hero-guide a::before {
        left: 1rem;
        right: auto;
        top: 50%;
        bottom: auto;

        width: 2.15rem;
        height: 2.15rem;

        border-radius: 0.72rem;

        background:
            linear-gradient(135deg, #d9b573 0%, #b88742 100%);

        -webkit-mask: none;
        mask: none;

        transform: translateY(-50%);

        box-shadow:
            0 0.55rem 1rem rgb(0 0 0 / 18%),
            inset 0 1px 0 rgb(255 255 255 / 22%);
    }

    .hero-guide a::after {
        content: "";

        position: absolute;
        left: 1.48rem;
        top: 50%;
        z-index: 2;

        width: 1.15rem;
        height: 1.15rem;

        background: #fffdf8;

        -webkit-mask: var(--paw-mask) center / contain no-repeat;
        mask: var(--paw-mask) center / contain no-repeat;

        transform: translateY(-50%);
    }

    .hero-guide a:hover,
    .hero-guide a:focus-visible {
        background:
            linear-gradient(180deg, rgb(255 255 255 / 8%) 0%, rgb(255 255 255 / 4%) 100%);

        box-shadow:
            inset 0 1px 0 rgb(255 255 255 / 7%);

        transform: translateY(-1px);
    }

    .hero-guide span {
        display: none;
    }

    .hero-guide strong {
        color: #fffdf8;

        font-size: 0.93rem;
        font-weight: 900;
        letter-spacing: -0.01em;
    }

    .hero-guide small {
        max-width: 12rem;
        margin-top: 0.38rem;
        padding-right: 0;

        color: rgb(255 253 248 / 72%);

        font-size: 0.76rem;
        font-weight: 600;
    }

    .hero-visual {
        animation: corattoHeroFadeUp 720ms ease 160ms both;
    }

    .hero-visual::before {
        animation: corattoSoftPulse 5.8s ease-in-out infinite;
    }

    .hero-visual::after {
        top: 22%;

        border-color: rgb(184 135 66 / 28%);
        background: rgb(255 253 248 / 86%);

        font-size: 1.08rem;

        animation: corattoFloatBadge 4.6s ease-in-out infinite;
    }

    .hero-visual img {
        animation: corattoFloatPet 5.4s ease-in-out infinite;
    }

    /* Iconos/huellas más visibles y menos emoji en cards del sitio */
    .need-card::before,
    .product-card::after,
    .learn-grid article::after,
    .trial-card::after,
    .closing::after {
        background: rgb(184 135 66 / 15%);
    }

    /* Ajuste de tipografía para que las cards no se vean antiguas */
    .need-card h3,
    .product-copy h3,
    .learn-grid h3,
    .criteria-grid h3 {
        letter-spacing: -0.025em;
    }

    .need-card a,
    .product-card a,
    .learn-grid a {
        border-bottom: 1px solid rgb(184 135 66 / 32%);
        padding-bottom: 0.18rem;
    }

    .need-card a:hover,
    .product-card a:hover,
    .learn-grid a:hover {
        color: var(--deep);
        border-color: var(--deep);
    }

    /* Responsive específico del hero v2 */
    @media (max-width: 1180px) {

        .hero-grid::before,
        .hero-grid::after {
            display: none;
        }

        .hero-guide {
            max-width: 36rem;
            grid-template-columns: 1fr;
            gap: 0.2rem;
        }

        .hero-guide::before {
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
        }

        .hero-guide a {
            padding-left: 3.6rem;
        }

        .hero-guide a+a {
            border-left: 0;
            border-top: 1px solid rgb(255 255 255 / 10%);
        }

        .hero-visual img {
            animation: none;
        }
    }

    @media (max-width: 700px) {
        .hero-guide::before {
            position: static;
            display: inline-flex;
            justify-content: center;

            margin: -0.1rem auto 0.55rem;

            transform: none;
        }

        .hero-guide {
            padding: 0.6rem;
        }

        .hero-guide a {
            min-height: 4.8rem;
            padding: 0.85rem 0.85rem 0.85rem 3.35rem;
        }

        .hero-guide a::before {
            left: 0.85rem;
            width: 1.95rem;
            height: 1.95rem;
        }

        .hero-guide a::after {
            left: 1.27rem;
            width: 1.02rem;
            height: 1.02rem;
        }

        .hero-guide small {
            max-width: none;
        }
    }
}

/* =========================================================
   CORATTO PET · HERO STORE EXPERIENCE V4
   Capa final: mayor escala y navegación comercial orgánica.
   ========================================================= */

@keyframes corattoServiceIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes corattoIconNudge {

    0%,
    100% {
        transform: rotate(0) scale(1);
    }

    45% {
        transform: rotate(-7deg) scale(1.08);
    }

    70% {
        transform: rotate(4deg) scale(1.04);
    }
}

.hero .container {
    width: min(1600px, calc(100% - 48px));
}

.hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(36rem, .98fr);
    gap: clamp(1.5rem, 3.5vw, 5.5rem);
    padding-top: 2.4rem;
    padding-bottom: 12rem;
}

.hero-copy {
    max-width: 140rem;
}

.hero h1 {
    max-width: 11.3ch;
    font-size: clamp(5rem, 6.2vw, 7.65rem);
}

.hero-copy>.hero-lead {
    max-width: 46rem;
}

.hero-visual {
    min-height: 46rem;
}

.hero-visual img {
    right: -1%;
    width: 108%;
    height: 98%;
}

.hero-services {
    position: absolute;
    z-index: 12;
    left: 50%;
    bottom: 1.35rem;
    translate: -50% 0;

    width: min(1600px, calc(100% - 48px));
    min-height: 9.2rem;
    display: grid;
    grid-template-columns: 1.35fr repeat(8, minmax(0, 1fr));
    align-items: stretch;

    overflow: hidden;
    border: 1px solid rgb(217 181 115 / 28%);
    border-radius: 2.25rem 2.25rem .9rem .9rem;

    background:
        radial-gradient(circle at 0% 0%, rgb(217 181 115 / 19%) 0, transparent 14rem),
        linear-gradient(120deg, rgb(16 27 24 / 98%), rgb(28 43 38 / 97%));

    box-shadow:
        0 1.6rem 3.8rem rgb(12 20 18 / 26%),
        inset 0 1px 0 rgb(255 255 255 / 8%);
    backdrop-filter: blur(18px);
    animation: corattoServiceIn .75s .5s ease both;
}

.services-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.45rem 1.6rem;
    overflow: hidden;
    border-right: 1px solid rgb(255 255 255 / 10%);
}

.services-intro::after {
    content: "";
    position: absolute;
    right: -1.1rem;
    bottom: -1.8rem;
    width: 6rem;
    height: 6rem;
    background: rgb(217 181 115 / 7%);
    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;
    transform: rotate(-18deg);
}

.services-intro span {
    color: var(--gold-2);
    font-size: .80rem;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.services-intro strong {
    max-width: 25rem;
    margin-top: .35rem;
    color: #fffdf8;
    font: 650 1.45rem/1.03 var(--serif);
}

.hero-services>a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .62rem;
    min-width: 0;
    padding: .75rem .35rem;
    border-right: 1px solid rgb(255 255 255 / 8%);
    color: rgb(255 255 255 / 72%);
    text-align: center;
    transition: color .24s ease, background .24s ease, transform .24s ease;
}

.hero-services>a:last-child {
    border-right: 0;
}

.hero-services>a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: .2rem;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-3));
    translate: -50% 0;
    transition: width .24s ease;
}

.service-icon {
    width: 3.05rem;
    height: 3.05rem;
    display: grid;
    place-items: center;
    border: 1px solid rgb(217 181 115 / 32%);
    border-radius: 50% 50% 50% 30%;
    color: var(--gold-2);
    background: rgb(255 255 255 / 5%);
    transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.service-copy strong {
    color: #fffdf8;

    font-size: clamp(0.82rem, 0.78vw, 0.95rem);
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.service-copy small {
    margin-top: 0.28rem;

    color: rgb(255 255 255 / 62%);

    font-size: clamp(0.64rem, 0.58vw, 0.74rem);
    font-weight: 600;
    line-height: 1.25;
}

.hero-services>a:hover,
.hero-services>a:focus-visible {
    color: #fff;
    background: linear-gradient(180deg, rgb(255 255 255 / 8%), rgb(217 181 115 / 5%));
    transform: translateY(-.15rem);
}

.hero-services>a:hover::after,
.hero-services>a:focus-visible::after {
    width: 62%;
}

.hero-services>a:hover .service-icon,
.hero-services>a:focus-visible .service-icon {
    color: #17231f;
    border-color: var(--gold-2);
    background: var(--gold-2);
    box-shadow: 0 .6rem 1.4rem rgb(0 0 0 / 18%);
    animation: corattoIconNudge .45s ease;
}

@media (max-width: 1380px) {

    .hero .container,
    .hero-services {
        width: min(1240px, calc(100% - 40px));
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(31rem, .92fr);
    }

    .hero h1 {
        font-size: clamp(4.5rem, 6.4vw, 6.6rem);
    }

    .hero-services {
        grid-template-columns: 1.2fr repeat(4, 1fr);
    }

    .hero-services>a:nth-of-type(n+5) {
        display: none;
    }
}

@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding-bottom: 2.5rem;
    }

    .hero-visual {
        min-height: 37rem;
    }

    .hero-services {
        position: relative;
        left: auto;
        bottom: auto;
        translate: none;
        width: min(920px, calc(100% - 40px));
        margin: 0 auto 2rem;
        grid-template-columns: repeat(4, 1fr);
        border-radius: 1.6rem;
    }

    .services-intro {
        grid-column: 1 / -1;
        min-height: 5rem;
        border-right: 0;
        border-bottom: 1px solid rgb(255 255 255 / 10%);
        text-align: center;
        align-items: center;
    }

    .services-intro strong {
        max-width: none;
    }

    .hero-services>a:nth-of-type(n) {
        display: flex;
    }
}

@media (max-width: 700px) {
    .hero .container {
        width: var(--container);
    }

    .hero h1 {
        font-size: clamp(3.25rem, 15.5vw, 4.5rem);
    }

    .hero-services {
        width: calc(100% - 28px);
        display: flex;
        align-items: stretch;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        border-radius: 1.35rem;
    }

    .hero-services::-webkit-scrollbar {
        display: none;
    }

    .services-intro {
        min-width: 10.8rem;
        border-right: 1px solid rgb(255 255 255 / 10%);
        border-bottom: 0;
        text-align: left;
        align-items: flex-start;
        scroll-snap-align: start;
    }

    .hero-services>a {
        display: flex !important;
        min-width: 7.8rem;
        min-height: 8.2rem;
        scroll-snap-align: start;
    }

    .service-copy small {
        max-width: 6.5rem;
        font-size: .56rem;
    }
}

/* =========================================================
   CORATTO PET · AJUSTE DE LEGIBILIDAD Y JERARQUÍA V5
   ========================================================= */

.hero-copy .eyebrow {
    margin-bottom: 1.1rem;
    color: #8b5b1f;
    font-size: clamp(.74rem, .72vw, .84rem);
    line-height: 1.25;
    letter-spacing: .16em;
}

.hero-copy>.hero-lead {
    max-width: 47rem;
    color: #3f4b47;
    font-size: clamp(1.1rem, 1.15vw, 1.28rem);
    font-weight: 500;
    line-height: 1.72;
}

.hero .button {
    min-height: 3.55rem;
    padding-inline: 1.9rem;
    font-size: .82rem;
}

/* Las tres promesas actúan como una sola línea de confianza. */
.hero-trust {
    width: fit-content;
    gap: 0;
    margin-top: 1.15rem;
    padding: .62rem .8rem;
    border: 1px solid rgb(184 135 66 / 18%);
    border-radius: 999px;
    color: #4f5a56;
    background: rgb(255 253 248 / 48%);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 72%);
    font-size: clamp(.7rem, .62vw, .77rem);
    font-weight: 800;
    letter-spacing: .035em;
}

.hero-trust span {
    gap: .55rem;
    padding: 0 .85rem;
    white-space: nowrap;
}

.hero-trust span+span {
    border-left: 1px solid rgb(184 135 66 / 24%);
}

.hero-trust span::before {
    width: .42rem;
    height: .42rem;
    background: #b77e31;
    box-shadow: 0 0 0 .22rem rgb(184 135 66 / 12%);
}

/* Accesos compactos: cálidos, legibles y sin espacio muerto. */
.hero-guide {
    max-width: 51rem;
    gap: .72rem;
    margin-top: 1.65rem;
}

.hero-guide-title {
    grid-column: 1 / -1;

    display: flex;
    align-items: center;
    gap: 1rem;

    width: 100%;
    margin: 0 0 .6rem;

    color: #33403c;

    font-family: var(--sans);
    font-size: clamp(.9rem, 1vw, 1.08rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .18em;
    text-align: center;
    text-transform: uppercase;
}

.hero-guide-title::before,
.hero-guide-title::after {
    content: "";

    height: 1px;
    flex: 1;

    background: linear-gradient(90deg,
            transparent,
            rgb(184 135 66 / 45%));
}

.hero-guide-title::after {
    background: linear-gradient(90deg,
            rgb(184 135 66 / 45%),
            transparent);
}

.hero-guide a {
    min-height: 6.15rem;
    grid-template-columns: 2.75rem minmax(0, 1fr) 1.7rem;
    grid-template-rows: 1fr;
    align-items: center;
    align-content: initial;
    gap: .78rem;
    padding: .95rem .85rem .95rem .95rem;
    border-color: rgb(163 108 38 / 25%);
    border-radius: 1.25rem 1.25rem 1.25rem .4rem;
    color: var(--deep);
    background:
        radial-gradient(circle at 100% 0%, rgb(217 181 115 / 24%), transparent 7rem),
        linear-gradient(145deg, #f2dfc1 0%, #f8ecd8 54%, #efe0c9 100%);
    box-shadow:
        0 .85rem 2rem rgb(87 57 22 / 9%),
        inset 0 1px 0 rgb(255 255 255 / 68%);
}

.hero-guide a:nth-of-type(2) {
    background:
        radial-gradient(circle at 0% 100%, rgb(184 135 66 / 16%), transparent 7rem),
        linear-gradient(145deg, #ead5b5, #f5e7d1 60%, #ead8bd);
}

.hero-guide a:nth-of-type(3) {
    color: #fffdf8;
    border-color: rgb(217 181 115 / 24%);
    background:
        radial-gradient(circle at 100% 0%, rgb(217 181 115 / 13%), transparent 8rem),
        linear-gradient(140deg, #24352f, #17251f);
    box-shadow: 0 1rem 2.1rem rgb(20 32 28 / 17%);
}

.hero-guide a>svg:not(.guide-arrow) {
    width: 2.75rem;
    height: 2.75rem;
    padding: .65rem;
    border-radius: .9rem .9rem .9rem .3rem;
}

.hero-guide a:nth-of-type(3)>svg:not(.guide-arrow) {
    color: var(--gold-2);
    border: 1px solid rgb(217 181 115 / 25%);
    background: rgb(255 255 255 / 6%);
    box-shadow: none;
}

.hero-guide a>span {
    min-width: 0;
}

.hero-guide strong {
    color: #1c2824;
    font-size: clamp(.88rem, .77vw, .98rem);
    line-height: 1.22;
}

.hero-guide small {
    margin-top: .38rem;
    color: #5c6762;
    font-size: clamp(.72rem, .61vw, .8rem);
    font-weight: 600;
    line-height: 1.35;
}

.hero-guide a:nth-of-type(3) strong {
    color: #fffdf8;
}

.hero-guide a:nth-of-type(3) small {
    color: rgb(255 255 255 / 66%);
}

.hero-guide .guide-arrow {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    width: 1.35rem;
    height: 1.35rem;
    margin: 0;
    padding: .2rem;
    color: #9b6627;
}

.hero-guide a:nth-of-type(3) .guide-arrow {
    color: var(--gold-2);
}

.hero-guide a:hover,
.hero-guide a:focus-visible {
    border-color: rgb(163 108 38 / 48%);
    background:
        radial-gradient(circle at 100% 0%, rgb(217 181 115 / 31%), transparent 7rem),
        linear-gradient(145deg, #f0d8b3, #f9edd9);
    box-shadow: 0 1.2rem 2.4rem rgb(87 57 22 / 15%);
    transform: translateY(-.3rem);
}

.hero-guide a:nth-of-type(3):hover,
.hero-guide a:nth-of-type(3):focus-visible {
    background: linear-gradient(140deg, #30483f, #182720);
}

/* Preguntas alrededor de la fotografía: mantienen la letra editorial, ahora legible. */
.hero-question {
    min-width: 12.5rem;
    padding: 1rem 1.15rem 1rem 3.15rem;
    border-radius: 1.15rem 1.15rem 1.15rem .35rem;
    color: #49534f;
    background: rgb(255 251 243 / 91%);
    font-size: clamp(1.02rem, .9vw, 1.15rem);
    line-height: 1.25;
    box-shadow: 0 1.1rem 2.5rem rgb(52 38 20 / 12%);
}

.hero-question span {
    left: .9rem;
    font-size: .75rem;
}

.hero-question b {
    color: #17221f;
    font-size: clamp(1.08rem, .95vw, 1.22rem);
    font-weight: 700;
}

.fraction-badge small {
    font-size: .68rem;
}

.fraction-badge strong {
    font-size: 1.62rem;
}

.fraction-badge em {
    font-size: .7rem;
}

@media (max-width: 1380px) {
    .hero-trust {
        margin-inline: auto;
    }

    .hero-guide {
        max-width: 48rem;
    }

    .hero-question {
        min-width: 11.5rem;
        font-size: .98rem;
    }

    .hero-question b {
        font-size: 1.06rem;
    }
}

@media (max-width: 1180px) {
    .hero-trust {
        justify-content: center;
    }

    .hero-guide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .hero-copy .eyebrow {
        font-size: .72rem;
    }

    .hero-copy>.hero-lead {
        font-size: 1.05rem;
    }

    .hero-trust {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        justify-items: start;
        gap: .5rem;
        padding: .8rem 1rem;
        border-radius: 1rem;
    }

    .hero-trust span {
        padding: 0;
    }

    .hero-trust span+span {
        border-left: 0;
    }

    .hero-guide {
        grid-template-columns: 1fr;
    }

    .hero-guide a {
        min-height: 5.5rem;
        grid-template-columns: 2.65rem 1fr 1.5rem;
        padding: .8rem;
    }

    .hero-guide a>svg:not(.guide-arrow) {
        width: 2.65rem;
        height: 2.65rem;
    }

    .hero-guide strong {
        font-size: .92rem;
    }

    .hero-guide small {
        font-size: .76rem;
    }
}

/* =========================================================
   CORATTO PET · HERO DECISION STRIP
   Reemplaza hero-trust + hero-guide por una guía compacta.
   ========================================================= */

.hero-decision-strip {
    position: relative;

    display: grid;
    grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.1fr) auto;
    align-items: center;
    gap: 1rem;

    width: min(100%, 53rem);
    margin-top: 1.25rem;
    padding: 0.95rem 1rem;

    overflow: hidden;

    border: 1px solid rgb(217 181 115 / 34%);
    border-radius: 1.25rem 1.25rem 1.25rem 0.45rem;

    color: #fffdf8;
    background:
        radial-gradient(circle at 0% 0%, rgb(217 181 115 / 18%) 0, transparent 13rem),
        linear-gradient(135deg, #111917 0%, #20342e 64%, #121d19 100%);

    box-shadow:
        0 1.15rem 2.6rem rgb(21 27 26 / 18%),
        inset 0 1px 0 rgb(255 255 255 / 8%);

    animation: corattoReveal 0.7s 0.32s ease both;
}

.hero-decision-strip::after {
    content: "";

    position: absolute;
    right: -1.4rem;
    bottom: -1.6rem;

    width: 6.5rem;
    height: 6.5rem;

    background: rgb(217 181 115 / 7%);

    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;

    transform: rotate(-18deg);

    pointer-events: none;
}

.hero-decision-strip__copy {
    position: relative;
    z-index: 1;

    min-width: 0;
}

.hero-decision-strip__copy span {
    display: block;

    margin-bottom: 0.25rem;

    color: var(--gold-2);

    font-size: 0.66rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-decision-strip__copy strong {
    display: block;

    color: #fffdf8;

    font-family: var(--serif);
    font-size: clamp(1.35rem, 1.45vw, 1.85rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
}

.hero-decision-strip__copy small {
    display: block;

    max-width: 21rem;
    margin-top: 0.42rem;

    color: rgb(255 253 248 / 68%);

    font-size: 0.78rem;
    font-weight: 550;
    line-height: 1.35;
}

.hero-decision-strip__items {
    position: relative;
    z-index: 1;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.hero-decision-strip__items span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;

    min-height: 2.2rem;
    padding: 0.48rem 0.65rem;

    border: 1px solid rgb(255 255 255 / 9%);
    border-radius: 999px;

    color: rgb(255 253 248 / 78%);
    background: rgb(255 255 255 / 5%);

    font-size: 0.72rem;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
}

.hero-decision-strip__items svg {
    width: 1rem;
    height: 1rem;

    color: var(--gold-2);

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-decision-strip__button {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;

    min-height: 2.85rem;
    padding: 0.78rem 1rem;

    border: 1px solid rgb(217 181 115 / 60%);
    border-radius: 999px;

    color: #17231f;
    background:
        linear-gradient(135deg, #f0d28a 0%, #c99748 100%);

    font-size: 0.73rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    white-space: nowrap;

    box-shadow:
        0 0.75rem 1.45rem rgb(0 0 0 / 18%),
        inset 0 1px 0 rgb(255 255 255 / 28%);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
}

.hero-decision-strip__button svg {
    width: 1.05rem;
    height: 1.05rem;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-decision-strip__button:hover,
.hero-decision-strip__button:focus-visible {
    filter: brightness(1.04);

    box-shadow:
        0 1rem 1.8rem rgb(0 0 0 / 22%),
        inset 0 1px 0 rgb(255 255 255 / 30%);

    transform: translateY(-2px);
}

/* Al eliminar las 3 cards, el hero puede respirar mejor */
.hero .button-row {
    margin-top: 1.55rem;
}

/* Responsive */
@media (max-width: 1180px) {
    .hero-decision-strip {
        grid-template-columns: 1fr;
        width: min(100%, 42rem);
        margin-inline: auto;
        text-align: center;
    }

}

@media (max-width: 700px) {
    .hero-decision-strip {
        margin-top: 1.25rem;
        padding: 1rem;
        border-radius: 1.1rem;
        text-align: left;
    }

    .hero-decision-strip__copy strong {
        font-size: 1.55rem;
    }

    .hero-decision-strip__items {
        justify-content: flex-start;
        gap: 0.45rem;
    }

    .hero-decision-strip__items span {
        width: 100%;
        justify-content: flex-start;
        border-radius: 0.8rem;
    }

}

/* =========================================================
   CORATTO PET · HERO AJUSTE DE AMPLITUD + GUÍA CÁLIDA
   ========================================================= */

/* Más espacio real para el contenido izquierdo */
.hero .container {
    width: min(1680px, calc(100% - 56px));
}

.hero-grid {
    grid-template-columns: minmax(46rem, 1.18fr) minmax(31rem, 0.82fr);
    gap: clamp(2rem, 3vw, 4rem);
    align-items: center;
}

/* Evita que el texto se sienta apretado */
.hero-copy {
    width: 100%;
    max-width: 66rem;
    text-align: left;
}

/* Título grande, pero con mejor caja */
.hero h1 {
    max-width: 12.2ch;
}

/* Este es el texto que sentías compacto */
.hero-copy>.hero-lead,
.hero-copy>p {
    max-width: 55rem;
    text-align: left;
    text-wrap: pretty;
}

/* Botones alineados naturalmente con el texto */
.hero .button-row {
    justify-content: flex-start;
}

/* La guía deja de competir con la barra negra inferior */
.hero-decision-strip {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1fr) auto;

    width: min(100%, 58rem);
    margin-top: 1.35rem;
    padding: 1rem 1.05rem;

    border: 1px solid rgb(184 135 66 / 28%);
    border-radius: 1.35rem 1.35rem 1.35rem 0.45rem;

    color: #17231f;
    background:
        radial-gradient(circle at 100% 0%, rgb(217 181 115 / 22%) 0, transparent 12rem),
        linear-gradient(135deg, rgb(255 253 248 / 88%) 0%, rgb(246 231 207 / 82%) 100%);

    box-shadow:
        0 1rem 2.3rem rgb(80 58 30 / 10%),
        inset 0 1px 0 rgb(255 255 255 / 80%);
}

/* Patita sutil del panel, ahora cálida */
.hero-decision-strip::after {
    background: rgb(184 135 66 / 10%);
}

/* Textos del panel en modo claro */
.hero-decision-strip__copy span {
    color: #9a6420;
}

.hero-decision-strip__copy strong {
    color: #17231f;
}

.hero-decision-strip__copy small {
    max-width: 24rem;
    color: #5f6864;
}

/* Chips claros, no oscuros */
.hero-decision-strip__items span {
    border: 1px solid rgb(184 135 66 / 20%);

    color: #3e4a45;
    background: rgb(255 253 248 / 64%);

    box-shadow: inset 0 1px 0 rgb(255 255 255 / 70%);
}

.hero-decision-strip__items svg {
    color: #a76a22;
}

/* Botón del panel más premium */
.hero-decision-strip__button {
    color: #fffdf8;
    background:
        linear-gradient(135deg, #c99748 0%, #9c641f 100%);

    box-shadow:
        0 0.85rem 1.45rem rgb(184 135 66 / 20%),
        inset 0 1px 0 rgb(255 255 255 / 20%);
}

.hero-decision-strip__button:hover,
.hero-decision-strip__button:focus-visible {
    filter: brightness(1.03);
    transform: translateY(-2px);
}

/* La imagen sigue fuerte, pero deja respirar al texto */
.hero-visual {
    min-height: 43rem;
}

.hero-visual img {
    right: -3%;
    width: 104%;
}

/* Responsive: en tablet vuelve a columna */
@media (max-width: 1180px) {
    .hero .container {
        width: min(100% - 40px, 920px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 52rem;
        margin-inline: auto;
        text-align: center;
    }

    .hero h1 {
        max-width: 10ch;
        margin-inline: auto;
    }

    .hero-copy>.hero-lead,
    .hero-copy>p {
        max-width: 44rem;
        margin-inline: auto;
        text-align: center;
    }

    .hero .button-row {
        justify-content: center;
    }

    .hero-decision-strip {
        grid-template-columns: 1fr;
        width: min(100%, 43rem);
        margin-inline: auto;
        text-align: center;
    }

    .hero-decision-strip__copy small {
        margin-inline: auto;
    }

    .hero-decision-strip__items {
        justify-content: center;
    }

    .hero-decision-strip__button {
        justify-self: center;
    }
}

@media (max-width: 700px) {
    .hero .container {
        width: min(100% - 28px, 100%);
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy>.hero-lead,
    .hero-copy>p {
        text-align: center;
    }

    .hero-decision-strip {
        padding: 1rem;
        text-align: left;
    }

    .hero-decision-strip__copy small {
        margin-inline: 0;
    }

    .hero-decision-strip__items {
        justify-content: flex-start;
    }

    .hero-decision-strip__items span {
        width: 100%;
        border-radius: 0.85rem;
    }

    .hero-decision-strip__button {
        width: 100%;
    }
}

.brand-marquee__viewport,
.brand-marquee__track,
.brand-marquee__row,
.brand-marquee__list {
    position: relative;
    z-index: 2;
}

/* ===========================================================================
   SELECCIÓN CORATTO · vitrina editorial de catálogo
   ========================================================================== */

.home-selection {
    position: relative;
    isolation: isolate;
    padding: clamp(5.5rem, 9vw, 9rem) 0 clamp(5rem, 8vw, 8rem);
    overflow: hidden;
    color: #20312c;
    background:
        radial-gradient(circle at 12% 28%, rgb(205 159 88 / 13%), transparent 25rem),
        radial-gradient(circle at 88% 70%, rgb(190 139 67 / 10%), transparent 28rem),
        #f5ecdd;
}

.home-selection::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;
    height: clamp(5rem, 10vw, 9rem);
    background: linear-gradient(180deg, #17120f 0%, rgb(23 18 15 / 42%) 26%, transparent 100%);
    opacity: 0.42;
    pointer-events: none;
}

.home-selection .container {
    position: relative;
    width: min(100% - 3rem, 1480px);
}

.home-selection .container::before,
.home-selection .container::after,
.home-selection__controls::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: clamp(8rem, 13vw, 13rem);
    aspect-ratio: 1;
    background: rgb(142 98 43 / 5.5%);
    -webkit-mask: var(--paw-mask) center / contain no-repeat;
    mask: var(--paw-mask) center / contain no-repeat;
    pointer-events: none;
}

.home-selection .container::before {
    right: 2%;
    top: -3rem;
    transform: rotate(18deg);
}

.home-selection .container::after {
    left: -8rem;
    bottom: -7rem;
    transform: rotate(-24deg) scale(1.25);
}

.home-selection .home-section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.75fr);
    align-items: end;
    gap: clamp(1.75rem, 4vw, 4.5rem);
}

.home-selection .home-section-heading--split>div {
    max-width: 52rem;
}

.home-selection .home-section-heading span {
    color: #9b6827;
}

.home-selection .home-section-heading h2 {
    margin: 0;

    color: var(--deep);
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 4.75rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.home-selection .home-section-heading--split>p {
    max-width: 31rem;
    margin: 0 0 0.4rem;
    padding-left: 1.15rem;
    border-left: 2px solid rgb(166 110 41 / 52%);
    color: #525f59;
    font-size: 1.05rem;
    line-height: 1.65;
}

.home-selection__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 2.25rem;
}

.home-selection__filters a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.6rem 1.05rem;
    border: 1px solid rgb(120 88 44 / 18%);
    border-radius: 999px;
    color: #52615a;
    background: rgb(255 251 244 / 48%);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-selection__filters a:is(:hover, :focus-visible),
.home-selection__filters a.is-active {
    border-color: #a66e29;
    color: #fffdf8;
    background: #9d692b;
    transform: translateY(-1px);
}

.home-selection__viewport {
    margin-top: 1.35rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
}

.home-selection__viewport::-webkit-scrollbar {
    display: none;
}

.home-selection__rail {
    display: grid;
    grid-auto-columns: minmax(250px, 1fr);
    grid-auto-flow: column;
    gap: clamp(1.5rem, 3vw, 3.25rem);
    min-width: max-content;
    padding: 0.75rem 0.35rem 0.8rem;
}

.selection-product {
    position: relative;
    width: clamp(250px, 20vw, 300px);
    scroll-snap-align: start;
}

@media (min-width: 75rem) {
    .home-selection__rail {
        grid-auto-columns: var(--selection-card-width, clamp(250px, 20vw, 300px));
    }

    .selection-product {
        width: var(--selection-card-width, clamp(250px, 20vw, 300px));
    }
}

.selection-product>a {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
}

.selection-product__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 310px;
    margin: 0;
}

.selection-product__visual::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 1.35rem;
    width: 86%;
    height: 72%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgb(211 170 100 / 28%) 0%, rgb(223 192 137 / 15%) 48%, transparent 72%);
    filter: blur(2px);
    transform: translateX(-50%);
}

.selection-product__visual::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    width: 62%;
    height: 1.05rem;
    border-radius: 50%;
    background: rgb(71 48 25 / 18%);
    filter: blur(10px);
    transform: translateX(-50%);
}

.selection-product__visual img,
.selection-product__placeholder {
    position: relative;
    z-index: 1;
    width: min(100%, 280px);
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 1.2rem 1rem rgb(66 45 24 / 16%));
    transition: transform 280ms ease, filter 280ms ease;
}

.selection-product>a:is(:hover, :focus-visible) .selection-product__visual img {
    filter: drop-shadow(0 1.45rem 1.2rem rgb(66 45 24 / 22%));
    transform: translateY(-0.55rem) scale(1.025);
}

.selection-product__badge,
.selection-product__discount {
    position: absolute;
    z-index: 2;
    top: 0.5rem;
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.025em;
}

.selection-product__badge {
    left: 0;
    color: #6d4a1e;
    background: rgb(255 248 232 / 88%);
    box-shadow: 0 0.4rem 1rem rgb(80 52 22 / 9%);
    backdrop-filter: blur(8px);
}

.selection-product__discount {
    right: 0;
    color: #fff;
    background: #a54632;
}

.selection-product__copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    min-width: 0;
    min-height: 17.5rem;
    padding: 0.65rem 0.25rem 0;
    transition: opacity 160ms ease;
}

.selection-product.is-peeking .selection-product__copy {
    opacity: 0;
}

.selection-product__meta {
    color: #9a6a2e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    line-height: 1.4;
    text-transform: uppercase;
}

.selection-product__copy h3 {
    display: -webkit-box;
    overflow: hidden;
    min-height: 3.75em;
    margin: 0.55rem 0 0;
    color: #20312c;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 1.7vw, 1.65rem);
    font-weight: 650;
    line-height: 1.25;
    text-wrap: balance;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.selection-product__copy>p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 3em;
    margin: 0.7rem 0 0;
    color: #667069;
    font-size: 0.94rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.selection-product__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.3rem 0.55rem;
    min-height: 3.45rem;
    margin-top: 1rem;
    padding-top: 1rem;
}

.selection-product__price-label {
    width: 100%;
    color: #7a827d;
    font-size: 0.78rem;
    font-weight: 700;
}

.selection-product__price-current {
    color: #1f312b;
    font-size: 1.35rem;
    font-weight: 750;
}

.selection-product__price-original {
    order: -1;
    color: #8b918d;
    font-size: 0.95rem;
    text-decoration: line-through;
}

.selection-product__price-label+.selection-product__price-original {
    order: initial;
}

.selection-product__action {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 0.75rem;
    color: #925f23;
    font-size: 0.92rem;
    font-weight: 800;
}

.selection-product__action span {
    transition: transform 180ms ease;
}

.selection-product>a:is(:hover, :focus-visible) .selection-product__action span {
    transform: translateX(0.3rem);
}

.home-selection__controls {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: -0.15rem;
}

.home-selection__controls::before {
    right: 1rem;
    bottom: -4.5rem;
    width: clamp(7rem, 10vw, 10rem);
    transform: rotate(28deg);
}

.home-selection__controls button {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border: 1px solid rgb(112 79 38 / 22%);
    border-radius: 50%;
    color: #684719;
    background: rgb(255 250 241 / 60%);
    font-size: 1.15rem;
    cursor: pointer;
}

.home-selection__controls button:disabled {
    opacity: 0.38;
    cursor: default;
}

.home-selection__controls>[data-slider-progress] {
    position: relative;
    width: min(9rem, 30vw);
    height: 0.2rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgb(94 65 31 / 25%);
}

.home-selection__controls>[data-slider-progress]::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #946020;
    transform: scaleX(var(--selection-progress, 0));
    transform-origin: left;
    transition: transform 180ms ease;
}

@media (max-width: 800px) {
    .home-selection .container {
        width: min(100% - 2rem, 720px);
    }

    .home-selection .home-section-heading--split {
        align-items: flex-start;
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .home-selection .home-section-heading--split>p {
        max-width: 35rem;
    }

    .home-selection .container::before {
        right: -2rem;
        top: 1rem;
    }

    .selection-product {
        width: clamp(240px, 76vw, 285px);
    }

    .selection-product__copy {
        min-height: 17rem;
    }

    .selection-product__visual {
        min-height: 275px;
    }

    .selection-product__visual img,
    .selection-product__placeholder {
        width: min(100%, 245px);
        height: 245px;
    }
}

@media (max-width: 420px) {
    .home-selection {
        padding-block: 5rem 4.5rem;
    }

    .home-selection .container {
        width: min(100% - 1.5rem, 390px);
    }

    .home-selection__filters {
        gap: 0.4rem;
        margin-top: 1.6rem;
    }

    .home-selection__filters a {
        min-height: 2.6rem;
        padding-inline: 0.8rem;
        font-size: 0.84rem;
    }

    .home-selection__rail {
        gap: 1.15rem;
    }

    .selection-product {
        width: min(82vw, 265px);
    }

    .selection-product__visual {
        min-height: 255px;
    }

    .selection-product__visual img,
    .selection-product__placeholder {
        width: min(100%, 230px);
        height: 230px;
    }
}

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

    .selection-product__visual img,
    .selection-product__action span,
    .home-selection__controls>[data-slider-progress]::after {
        transition: none;
    }
}
