:root {
    --cream: #f7f3e7;
    --blue: #43a7f5;
    --blue-dark: #2376b8;
    --blue-deep: #1d709f;
    --pink: #f7b5a3;
    --pink-soft: #fbe7df;
    --ink: #3d3d3d;
    --ink-soft: #545454;
    --white: #ffffff;
    --shadow-soft: 0 18px 36px rgba(31, 85, 132, 0.08);
    --container: 1268px;
    --radius-card: 22px;
    --radius-button: 16px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 8.8rem;
    scrollbar-width: thin;
    scrollbar-color: var(--blue) #e8e0cf;
}

html::-webkit-scrollbar {
    width: 0.95rem;
}

html::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #efe8d9 0%, #f7f3e7 100%);
}

html::-webkit-scrollbar-thumb {
    border: 3px solid #f3ecdd;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #57b2f7 0%, var(--blue-deep) 100%);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: var(--white);
    color: var(--ink);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.scroll-top {
    position: fixed;
    display: grid;
    place-items: center;
    right: clamp(1rem, 2vw, 2rem);
    bottom: clamp(1rem, 2vw, 2rem);
    z-index: 40;
    width: 3.85rem;
    height: 3.85rem;
    padding: 0;
    border: 0;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
    box-shadow: 0 16px 30px rgba(29, 112, 159, 0.22);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transform: translate3d(0, 1rem, 0) scale(0.92);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.scroll-top span {
    display: block;
    width: 0.95rem;
    height: 0.95rem;
    margin: 0;
    border-top: 0.22rem solid var(--white);
    border-left: 0.22rem solid var(--white);
    transform: rotate(45deg);
}

.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
}

.scroll-top:hover {
    background: linear-gradient(180deg, #5eb5f8 0%, var(--blue-deep) 100%);
    box-shadow: 0 20px 34px rgba(29, 112, 159, 0.28);
    transform: translate3d(0, -0.16rem, 0);
}

.scroll-top:active {
    transform: translate3d(0, 0, 0) scale(0.97);
}

.scroll-top:focus-visible {
    outline: 3px solid rgba(67, 167, 245, 0.28);
    outline-offset: 4px;
}

.scroll-reveal {
    --reveal-delay: 0ms;
}

body.motion-ready .scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 1.6rem, 0);
    filter: saturate(0.94);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.7s ease;
    transition-delay: var(--reveal-delay);
    will-change: transform, opacity;
}

body.motion-ready .scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: none;
}

.container {
    width: min(calc(100% - 5rem), var(--container));
    margin: 0 auto;
}

.section {
    position: relative;
}

.section-title,
.contact-title {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    font-size: clamp(2.3rem, 2.08rem + 1.28vw, 3.35rem);
    line-height: 1.06;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.section-title--white {
    color: var(--white);
}

.section-subtitle {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.94);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 35;
    background: rgba(247, 243, 231, 0.94);
    backdrop-filter: blur(12px);
    transition: background-color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    border-bottom: 1px solid transparent;
}

.site-header.is-stuck {
    background: rgba(247, 243, 231, 0.98);
    border-bottom-color: rgba(61, 61, 61, 0.08);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
}

.header-row {
    display: grid;
    grid-template-columns: minmax(220px, 366px) 1fr auto;
    align-items: center;
    gap: 1.75rem;
    min-height: 8.1rem;
    padding: 1.3rem 0 1.15rem;
}

.brand-link {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: clamp(15rem, 19vw, 23rem);
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: clamp(1.4rem, 1vw + 1rem, 3rem);
    padding: 0 1rem;
}

.site-nav a {
    position: relative;
    padding-bottom: 0.3rem;
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 0.18rem;
    border-radius: 999px;
    background: var(--blue);
    transform: translateX(-50%) scaleX(0.4);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav a,
.footer-links a,
.footer-legal a,
.footer-legal p {
    font-size: clamp(0.92rem, 0.8rem + 0.35vw, 1rem);
    font-weight: 500;
    color: var(--ink);
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="page"],
.footer-links a:hover,
.footer-legal a:hover {
    color: var(--blue-dark);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.menu-toggle {
    display: none;
    justify-self: end;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 1.8rem;
    height: 0.16rem;
    margin: 0.32rem auto;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-amazon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-width: 15.4rem;
    min-height: 5.75rem;
    padding: 0.85rem 1.6rem;
    border: 0;
    border-radius: var(--radius-button);
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 12px 25px rgba(67, 167, 245, 0.18);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-amazon__label {
    font-family: "Fredoka", sans-serif;
    line-height: 0.96;
    letter-spacing: -0.02em;
    font-size: 1.28rem;
    font-weight: 700;
}

.btn-amazon__logo {
    width: auto;
    height: 2.2rem;
    transform: translateY(0.04rem);
}

.btn-amazon:hover {
    background: #379cf0;
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(67, 167, 245, 0.24);
}

.hero-section {
    position: relative;
    min-height: clamp(28rem, 45vw, 41.25rem);
    background: #cab7a6;
}

.hero-media,
.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img {
    object-fit: cover;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(80, 61, 49, 0.52) 0%, rgba(80, 61, 49, 0.3) 24%, rgba(80, 61, 49, 0.06) 54%, rgba(80, 61, 49, 0) 78%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    min-height: inherit;
    padding-bottom: clamp(2.6rem, 4vw, 4.5rem);
}

.hero-copy {
    max-width: 38.8125rem;
    color: var(--white);
}

.hero-title {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    max-width: 38.8125rem;
    font-size: clamp(3.25rem, 2.95rem + 1vw, 4rem);
    line-height: 0.9375;
    font-weight: 700;
    letter-spacing: -0.08rem;
    text-wrap: pretty;
}

.hero-subtitle {
    max-width: 38.8125rem;
    margin: 0.55rem 0 1rem;
    font-size: 1.5rem;
    line-height: 2.5rem;
    letter-spacing: -0.03rem;
    font-weight: 400;
}

.hero-subtitle strong {
    font-weight: 700;
}

.btn-amazon--hero {
    min-width: clamp(14rem, 24vw, 19rem);
    min-height: clamp(5rem, 8vw, 8.2rem);
}

.btn-amazon--hero .btn-amazon__label {
    font-size: 1.5rem;
}

.btn-amazon--hero .btn-amazon__logo {
    height: clamp(1.95rem, 1.3rem + 1.4vw, 3.2rem);
}

.benefits-section {
    padding: 4.1rem 0 5.5rem;
}

.benefits-container {
    max-width: 76rem;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 34.5rem));
    grid-template-areas:
        "aglutina-image aglutina-copy"
        "olores-copy olores-image"
        "duracion-image duracion-copy"
        "confiable-copy confiable-image";
    justify-content: space-between;
    align-items: start;
    column-gap: clamp(2.5rem, 4vw, 3.6rem);
    row-gap: clamp(2.2rem, 3vw, 3.35rem);
    margin-top: 2.15rem;
}

.benefit-figure,
.benefit-copy {
    min-width: 0;
}

body.motion-ready .benefit-reveal {
    opacity: 0;
    transform: translate3d(var(--benefit-shift-x, 0), var(--benefit-shift-y, 1.15rem), 0) scale(0.985);
    filter: blur(8px);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.72s ease;
    transition-delay: var(--benefit-delay, 0ms);
    will-change: transform, opacity, filter;
}

body.motion-ready .benefit-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: none;
}

.benefit-figure {
    position: relative;
}

.benefit-figure > img:first-child {
    width: 100%;
    aspect-ratio: 1.62 / 1;
    object-fit: cover;
    border-radius: 1.32rem;
    box-shadow: var(--shadow-soft);
}

.benefit-figure--aglutina {
    grid-area: aglutina-image;
    justify-self: start;
    width: min(100%, 25.6rem);
}

.benefit-figure--olores {
    grid-area: olores-image;
    justify-self: end;
    width: min(100%, 25.6rem);
}

.benefit-figure--duracion {
    grid-area: duracion-image;
    justify-self: start;
    width: min(100%, 25.6rem);
}

.benefit-figure--confiable {
    grid-area: confiable-image;
    justify-self: end;
    width: min(100%, 25.6rem);
}

.benefit-copy {
    width: min(100%, 34.4375rem);
}

.benefit-copy--aglutina {
    grid-area: aglutina-copy;
    margin-top: 2.1rem;
}

.benefit-copy--olores {
    grid-area: olores-copy;
    margin-top: 2.35rem;
}

.benefit-copy--duracion {
    grid-area: duracion-copy;
    margin-top: 2rem;
}

.benefit-copy--confiable {
    grid-area: confiable-copy;
    margin-top: 2.7rem;
}

.benefit-copy h3 {
    margin: 0 0 0.55rem;
    max-width: 16.875rem;
    font-family: "Fredoka", sans-serif;
    font-size: 1.75rem;
    line-height: 1.5;
    font-weight: 700;
    color: #3e3e3e;
}

.benefit-copy p {
    margin: 0;
    max-width: 34.4375rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 400;
    color: #3e3e3e;
}

.benefit-copy strong {
    color: #3e3e3e;
    font-weight: 700;
}

.benefit-icon {
    position: absolute;
    filter: drop-shadow(0 10px 18px rgba(35, 118, 184, 0.08));
}

.benefit-icon--aglutina {
    right: -1.95rem;
    bottom: -1.8rem;
    width: clamp(7rem, 9vw, 9rem);
}

.benefit-icon--olores {
    left: -2.15rem;
    bottom: -1.95rem;
    width: clamp(6.25rem, 8vw, 8.15rem);
}

.benefit-icon--duracion {
    right: -1rem;
    bottom: -1.25rem;
    width: clamp(5.8rem, 7vw, 7.55rem);
}

.benefit-icon--confiable {
    left: -1.55rem;
    bottom: -1.95rem;
    width: clamp(5.9rem, 7vw, 7.7rem);
}

.testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 3.2rem;
    background: linear-gradient(180deg, #43a7f5 0%, #43a7f5 100%);
}

.testimonials-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.testimonial-paw {
    position: absolute;
    z-index: 0;
    width: 4.7rem;
    opacity: 1;
    pointer-events: none;
}

.testimonial-paw--tl-a {
    top: 2.7rem;
    left: -0.45rem;
    width: 4rem;
    transform: rotate(-16deg);
}

.testimonial-paw--tl-b {
    top: 4.95rem;
    left: 3.6rem;
    width: 4.8rem;
    transform: rotate(10deg);
}

.testimonial-paw--ml {
    top: 14.1rem;
    left: 1.15rem;
    width: 4.95rem;
    transform: rotate(-12deg);
}

.testimonial-paw--tr-a {
    top: 3.35rem;
    right: 3.8rem;
    width: 4.6rem;
    transform: rotate(-12deg);
}

.testimonial-paw--tr-b {
    top: 5.45rem;
    right: -0.2rem;
    width: 4.1rem;
    transform: rotate(14deg);
}

.testimonial-paw--mr-a {
    top: 13.7rem;
    right: 3.2rem;
    width: 5rem;
    transform: rotate(-10deg);
}

.testimonial-paw--mr-b {
    top: 16.15rem;
    right: -0.4rem;
    width: 4.85rem;
    transform: rotate(12deg);
}

.testimonials-inner .section-title {
    max-width: 52.875rem;
    margin: 0 auto;
    font-family: "Fredoka", sans-serif;
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.06rem;
}

.testimonials-inner .section-subtitle {
    max-width: 52.875rem;
    margin: 0.8rem auto 1.2rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: -0.03rem;
}

.testimonial-subtitle-strong,
.testimonial-subtitle-soft {
    display: block;
}

.testimonial-subtitle-strong {
    font-weight: 700;
}

.testimonial-subtitle-soft {
    margin-top: 0.45rem;
    font-weight: 400;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 3.203rem minmax(0, 1fr) 3.203rem;
    align-items: center;
    gap: 1.4rem;
    width: min(100%, 53rem);
    margin: 0 auto;
    min-height: 10.875rem;
    padding: 1.4rem 1.75rem 1.35rem;
    border-radius: 2rem;
    background: #1e70a2;
    box-shadow: 0 10px 18px rgba(21, 103, 153, 0.24);
}

.testimonial-copy {
    padding: 0;
    color: var(--white);
}

.testimonial-copy p {
    max-width: 100%;
    margin: 0.3rem auto 0.45rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03rem;
}

.testimonial-copy strong {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03rem;
    opacity: 1;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.12rem;
    margin-bottom: 0.85rem;
}

.testimonial-star {
    width: 3.0625rem;
    height: 3.0625rem;
    flex: 0 0 auto;
}

.testimonial-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.203rem;
    height: 3.203rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.testimonial-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
}

.steps-section {
    padding: 3.8rem 0 4.65rem;
    border-top: 0.56rem solid var(--blue);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.7rem 4.7rem;
    margin-top: 2.5rem;
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.35rem;
    align-items: start;
}

.step-number {
    min-width: 6.4rem;
    font-family: "Fredoka", sans-serif;
    font-size: clamp(4.8rem, 4.1rem + 1.5vw, 6rem);
    line-height: 0.9;
    font-weight: 700;
    color: var(--blue);
}

.step-copy h3 {
    margin: 0 0 0.55rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 700;
    color: #3e3e3e;
}

.step-copy p {
    margin: 0;
    color: #3e3e3e;
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    line-height: 1.25;
    font-weight: 400;
}

.media-section {
    position: relative;
}

.media-frame {
    position: relative;
}

.media-frame img,
.media-video {
    display: block;
    width: 100%;
    height: auto;
}

.media-video {
    background: #cab7a6;
}

.media-frame.is-active .media-play {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.92);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.media-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(6.2rem, 10vw, 8.8rem);
    height: clamp(6.2rem, 10vw, 8.8rem);
    padding: 0;
    border: 0.19rem solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    transform: translate(-50%, -50%);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.media-play span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 1.5rem solid transparent;
    border-bottom: 1.5rem solid transparent;
    border-left: 2.2rem solid rgba(255, 255, 255, 0.96);
    transform: translate(-34%, -50%);
}

.about-section {
    padding: 4.25rem 0 4.7rem;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(21rem, 0.94fr);
    gap: clamp(2rem, 4vw, 4.3rem);
    align-items: center;
}

.about-copy p:not(.about-intro) {
    margin: 0 0 1.25rem;
    max-width: 47.9375rem;
    font-size: 1.25rem;
    line-height: 1.25;
    font-weight: 400;
    color: #3e3e3e;
}

.about-intro {
    margin-top: 1rem;
    max-width: 47.9375rem;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.25;
    color: var(--ink) !important;
}

.about-media {
    position: relative;
    padding-bottom: 4.8rem;
}

.about-photo {
    width: 100%;
    aspect-ratio: 0.88 / 1;
    object-fit: cover;
    border-radius: 1.8rem;
}

.about-badge {
    position: absolute;
    right: -3.2rem;
    bottom: -0.8rem;
    width: clamp(18rem, 29vw, 29rem);
}

.contact-section {
    overflow: hidden;
    padding: 4.2rem 0 4rem;
    background: var(--pink);
}

.contact-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-title {
    color: #3e3e3e;
    line-height: 1;
}

.contact-lead,
.contact-strong {
    margin: 0;
    color: #3e3e3e;
}

.contact-lead {
    max-width: 39rem;
    margin: 0.85rem auto 0;
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 400;
}

.contact-strong {
    margin-top: 0.65rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
}

.contact-feedback {
    width: min(100%, 55rem);
    margin: 1.55rem auto 0;
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.72);
}

.contact-feedback--success {
    border: 2px solid rgba(41, 132, 90, 0.3);
}

.contact-feedback--error {
    border: 2px solid rgba(175, 62, 62, 0.28);
}

.contact-feedback p {
    margin: 0.2rem 0;
    color: var(--ink);
}

.contact-form {
    width: min(100%, 55rem);
    margin: 3rem auto 0;
}

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

.field {
    text-align: left;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: clamp(0.98rem, 0.92rem + 0.22vw, 1.1rem);
    font-weight: 700;
    color: #3e3e3e;
}

.field input,
.field textarea {
    width: 100%;
    border: 0;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    box-shadow: inset 0 0 0 2px rgba(65, 134, 183, 0.1);
}

.field input {
    height: 4.3rem;
    padding: 0 1.35rem;
    font-size: 0.94rem;
    font-weight: 500;
}

.field textarea {
    min-height: 10rem;
    padding: 1rem 1.35rem;
    resize: vertical;
    font-size: 0.94rem;
    font-weight: 500;
}

.field input:focus,
.field textarea:focus {
    outline: 3px solid rgba(30, 111, 185, 0.2);
    box-shadow: inset 0 0 0 2px rgba(30, 111, 185, 0.25);
}

.contact-submit {
    width: 100%;
    margin-top: 1.35rem;
    height: 4.25rem;
    border: 0;
    border-radius: 0.95rem;
    background: var(--blue);
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
    background: #379cf0;
    transform: translateY(-1px);
}

.contact-paw {
    position: absolute;
    width: 4.25rem;
    opacity: 1;
    pointer-events: none;
    transform: rotate(var(--paw-rotate, 0deg));
}

.contact-paw--tl-a {
    top: 4rem;
    left: 5.4rem;
    --paw-rotate: -8deg;
}

.contact-paw--tl-b {
    top: 6.25rem;
    left: 10rem;
    width: 4.6rem;
    --paw-rotate: 12deg;
}

.contact-paw--tr-a {
    top: 7rem;
    right: 8rem;
    --paw-rotate: -10deg;
}

.contact-paw--tr-b {
    top: 8.1rem;
    right: 3.4rem;
    width: 4.8rem;
    --paw-rotate: 10deg;
}

.contact-paw--ml-edge {
    top: 17.9rem;
    left: -1.95rem;
    width: 4.85rem;
    --paw-rotate: -16deg;
}

.contact-paw--ml-a {
    top: 20.1rem;
    left: 4rem;
    width: 4.7rem;
    --paw-rotate: -10deg;
}

.contact-paw--mr-a {
    top: 20rem;
    right: 8.7rem;
    width: 4.55rem;
    --paw-rotate: -12deg;
}

.contact-paw--mr-b {
    top: 22.2rem;
    right: 4rem;
    width: 4.7rem;
    --paw-rotate: 12deg;
}

.contact-paw--bl-a {
    left: 4.2rem;
    bottom: 3rem;
    width: 4.8rem;
    --paw-rotate: -14deg;
}

.contact-paw--bl-b {
    left: 10rem;
    bottom: 1.15rem;
    width: 4.65rem;
    --paw-rotate: 16deg;
}

.contact-paw--br-a {
    right: 10rem;
    bottom: 2.6rem;
    width: 4.7rem;
    --paw-rotate: -12deg;
}

.contact-paw--br-b {
    right: 3.6rem;
    bottom: 1.15rem;
    width: 4.9rem;
    --paw-rotate: 14deg;
}

.site-footer {
    padding: 2.05rem 0 3rem;
    background: var(--cream);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(16rem, 24rem) minmax(9rem, 12rem) minmax(10rem, 14rem) auto;
    align-items: start;
    gap: 1.4rem 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(61, 61, 61, 0.12);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.9rem;
}

.brand-logo--footer {
    width: 100%;
    max-width: 25rem;
}

.btn-amazon--footer {
    max-width: 18.2rem;
}

.footer-links,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 4.7rem;
}

.footer-social a {
    color: var(--ink);
}

.footer-social svg {
    width: 2rem;
    height: 2rem;
}

@media (max-width: 1100px) {
    .container {
        width: min(calc(100% - 2.5rem), var(--container));
    }

    .header-row {
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
    }

    .site-nav {
        gap: 1.2rem;
    }

    .benefits-container {
        max-width: 67rem;
    }

    .benefits-layout {
        column-gap: 2.2rem;
        row-gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-copy {
        max-width: 44rem;
    }

    .about-media {
        max-width: 32rem;
    }

    .about-badge {
        right: -1.8rem;
        width: min(78vw, 27rem);
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-social {
        justify-content: flex-start;
        padding-top: 1rem;
    }
}

@media (max-width: 980px) {
    .benefits-layout {
        grid-template-columns: minmax(0, 34rem);
        grid-template-areas:
            "aglutina-image"
            "aglutina-copy"
            "olores-image"
            "olores-copy"
            "duracion-image"
            "duracion-copy"
            "confiable-image"
            "confiable-copy";
        justify-content: center;
        row-gap: 1.75rem;
        margin-top: 1.8rem;
    }

    .benefit-figure,
    .benefit-copy {
        width: min(100%, 34rem);
        justify-self: center;
    }

    .benefit-copy--aglutina,
    .benefit-copy--olores,
    .benefit-copy--duracion,
    .benefit-copy--confiable {
        margin-top: 0;
    }

    .benefit-copy h3 {
        font-size: 1.45rem;
        line-height: 1.35;
    }

    .benefit-copy p {
        font-size: 1.06rem;
        line-height: 1.55;
    }
}

@media (max-width: 820px) {
    html {
        scroll-padding-top: 7.25rem;
    }

    .header-row {
        grid-template-columns: 1fr auto;
        min-height: 6.6rem;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.48rem) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.48rem) rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        padding: 1.25rem;
        background: rgba(247, 243, 231, 0.98);
        box-shadow: 0 18px 28px rgba(0, 0, 0, 0.08);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding-bottom: 0.1rem;
    }

    .site-nav a::after {
        left: 0;
        width: 2.2rem;
        transform: scaleX(0.4);
        transform-origin: left center;
    }

    .site-nav a:hover::after,
    .site-nav a.is-active::after,
    .site-nav a[aria-current="page"]::after {
        transform: scaleX(1);
    }

    .btn-amazon--small {
        display: none;
    }

    .hero-content {
        align-items: flex-end;
    }

    .hero-section {
        min-height: 28rem;
    }

    .hero-copy {
        max-width: 22rem;
    }

    .benefits-layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 1.55rem;
    }

    .benefit-figure,
    .benefit-copy {
        width: 100%;
    }

    .benefit-copy {
        max-width: none;
    }

    .benefit-copy h3 {
        max-width: none;
    }

    .steps-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        padding: 1rem 1rem 1.1rem;
    }

    .testimonial-paw {
        width: 3.95rem;
    }

    .testimonial-paw--tl-a {
        top: 3rem;
        left: -0.85rem;
        width: 3.5rem;
    }

    .testimonial-paw--tl-b {
        top: 5rem;
        left: 2.3rem;
        width: 4rem;
    }

    .testimonial-paw--ml {
        top: 15.9rem;
        left: -0.4rem;
        width: 4.1rem;
    }

    .testimonial-paw--tr-a {
        top: 3.6rem;
        right: 2.5rem;
        width: 3.85rem;
    }

    .testimonial-paw--tr-b {
        top: 5.3rem;
        right: -0.75rem;
        width: 3.55rem;
    }

    .testimonial-paw--mr-a {
        top: 16rem;
        right: 2rem;
        width: 4.1rem;
    }

    .testimonial-paw--mr-b {
        top: 18rem;
        right: -0.65rem;
        width: 4rem;
    }

    .testimonials-inner .section-title {
        font-size: 2.35rem;
    }

    .testimonials-inner .section-subtitle,
    .testimonial-copy p,
    .testimonial-copy strong {
        font-size: 1.15rem;
    }

    .testimonial-stars {
        margin-bottom: 0.45rem;
    }

    .testimonial-star {
        width: 2.35rem;
        height: 2.35rem;
    }

    .testimonial-arrow {
        display: none;
    }

    .contact-paw {
        width: 3.95rem;
    }

    .contact-paw--tl-a {
        top: 3.4rem;
        left: 2rem;
    }

    .contact-paw--tl-b {
        top: 5.45rem;
        left: 6rem;
        width: 4.15rem;
    }

    .contact-paw--tr-a {
        top: 5.75rem;
        right: 4.7rem;
        width: 4rem;
    }

    .contact-paw--tr-b {
        top: 7rem;
        right: 1.2rem;
        width: 4.2rem;
    }

    .contact-paw--ml-edge {
        top: 17.2rem;
        left: -1.55rem;
        width: 4.15rem;
    }

    .contact-paw--ml-a {
        top: 19.5rem;
        left: 1.3rem;
        width: 4rem;
    }

    .contact-paw--mr-a {
        top: 23rem;
        right: 3.4rem;
        width: 4rem;
    }

    .contact-paw--mr-b {
        top: 25.1rem;
        right: 0.6rem;
        width: 4.1rem;
    }

    .contact-paw--bl-a {
        left: 1.5rem;
        bottom: 4.15rem;
        width: 4.15rem;
    }

    .contact-paw--bl-b {
        left: 5.5rem;
        bottom: 1.6rem;
        width: 4.05rem;
    }

    .contact-paw--br-a {
        right: 5rem;
        bottom: 4rem;
        width: 4.05rem;
    }

    .contact-paw--br-b {
        right: 1rem;
        bottom: 1.45rem;
        width: 4.2rem;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 1.5rem), var(--container));
    }

    .scroll-top {
        width: 3.3rem;
        height: 3.3rem;
        border-radius: 1.1rem;
    }

    .brand-logo {
        width: min(15rem, 58vw);
    }

    .hero-section {
        min-height: 22rem;
    }

    .hero-section::after {
        background: linear-gradient(180deg, rgba(80, 61, 49, 0.48) 0%, rgba(80, 61, 49, 0.22) 48%, rgba(80, 61, 49, 0.08) 100%);
    }

    .hero-content {
        justify-content: center;
        padding-bottom: 1.35rem;
    }

    .hero-copy {
        margin: 0 auto;
        text-align: center;
    }

    .hero-title {
        max-width: 14rem;
        margin-inline: auto;
    }

    .section-title,
    .contact-title {
        font-size: 2rem;
        text-align: center;
        margin-inline: auto;
    }

    .benefits-section .section-title {
        max-width: 10.8rem;
    }

    .testimonials-inner .section-title {
        max-width: 18rem;
        font-size: 2.05rem;
    }

    .testimonial-paw {
        width: 3rem;
    }

    .testimonial-paw--tl-a {
        top: 3.25rem;
        left: -1rem;
        width: 2.65rem;
    }

    .testimonial-paw--tl-b {
        top: 4.7rem;
        left: 1.5rem;
        width: 3rem;
    }

    .testimonial-paw--ml {
        top: 15rem;
        left: -0.8rem;
        width: 3.1rem;
    }

    .testimonial-paw--tr-a {
        top: 3.95rem;
        right: 1.15rem;
        width: 2.95rem;
    }

    .testimonial-paw--tr-b {
        top: 5.3rem;
        right: -0.95rem;
        width: 2.75rem;
    }

    .testimonial-paw--mr-a {
        top: 14.8rem;
        right: 0.8rem;
        width: 3.1rem;
    }

    .testimonial-paw--mr-b {
        top: 16.5rem;
        right: -0.9rem;
        width: 3rem;
    }

    .testimonials-inner .section-subtitle {
        max-width: 18.75rem;
        margin-bottom: 0.95rem;
        font-size: 1rem;
        line-height: 1.18;
    }

    .testimonial-subtitle-soft {
        margin-top: 0.2rem;
    }

    .benefit-copy h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .benefit-copy p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-subtitle {
        max-width: 18rem;
        margin-inline: auto;
        margin-bottom: 1rem;
        text-align: center;
    }

    .btn-amazon--hero {
        min-width: 11.6rem;
        min-height: 4.7rem;
    }

    .btn-amazon--hero .btn-amazon__label {
        font-size: 1rem;
    }

    .btn-amazon--hero .btn-amazon__logo {
        height: 1.7rem;
    }

    .benefits-section,
    .steps-section,
    .about-section {
        padding-top: 2.8rem;
        padding-bottom: 3rem;
    }

    .benefit-icon--aglutina {
        right: -0.5rem;
        bottom: -1rem;
        width: 6.2rem;
    }

    .benefit-icon--olores {
        left: -0.6rem;
        bottom: -1rem;
        width: 5.8rem;
    }

    .benefit-icon--duracion {
        right: -0.2rem;
        bottom: -0.8rem;
        width: 5.2rem;
    }

    .benefit-icon--confiable {
        left: -0.35rem;
        bottom: -1rem;
        width: 5.4rem;
    }

    .step-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
        justify-items: center;
    }

    .step-number {
        min-width: 0;
    }

    .benefit-copy,
    .about-copy,
    .footer-brand,
    .footer-links,
    .footer-legal {
        text-align: center;
    }

    .benefit-copy h3,
    .benefit-copy p,
    .about-copy p,
    .about-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand,
    .footer-links,
    .footer-legal {
        align-items: center;
    }

    .media-play span {
        border-top-width: 1rem;
        border-bottom-width: 1rem;
        border-left-width: 1.5rem;
    }

    .testimonial-card {
        min-height: 0;
        padding: 1rem 0.95rem 1.05rem;
        border-radius: 1.6rem;
    }

    .testimonial-stars {
        gap: 0.08rem;
        margin-bottom: 0.3rem;
    }

    .testimonial-star {
        width: 1.95rem;
        height: 1.95rem;
    }

    .testimonial-copy p {
        max-width: 15rem;
        font-size: 1rem;
        line-height: 1.18;
        margin: 0.15rem auto 0.3rem;
    }

    .testimonial-copy strong {
        font-size: 0.95rem;
        line-height: 1.12;
    }

    .about-media {
        padding-bottom: 3.6rem;
    }

    .about-badge {
        right: -0.5rem;
        bottom: -0.3rem;
        width: 78vw;
    }

    .contact-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .contact-form {
        margin-top: 2rem;
    }

    .field input {
        height: 3.7rem;
    }

    .contact-submit {
        height: 3.8rem;
    }

    .footer-social {
        justify-content: center;
    }

    .contact-paw {
        width: 3.15rem;
    }

    .contact-paw--tl-a {
        top: 2rem;
        left: 0.9rem;
    }

    .contact-paw--tl-b {
        top: 3.55rem;
        left: 3.9rem;
        width: 3.35rem;
    }

    .contact-paw--tr-a {
        top: 4.7rem;
        right: 3.5rem;
        width: 3.2rem;
    }

    .contact-paw--tr-b {
        top: 5.7rem;
        right: 0.7rem;
        width: 3.35rem;
    }

    .contact-paw--ml-edge {
        top: 19.6rem;
        left: -1.25rem;
        width: 3.45rem;
    }

    .contact-paw--ml-a {
        top: 21.9rem;
        left: 1rem;
        width: 3.3rem;
    }

    .contact-paw--mr-a {
        top: 25rem;
        right: 2.15rem;
        width: 3.3rem;
    }

    .contact-paw--mr-b {
        top: 27rem;
        right: 0.35rem;
        width: 3.35rem;
    }

    .contact-paw--bl-a {
        left: 0.8rem;
        bottom: 4.8rem;
        width: 3.4rem;
    }

    .contact-paw--bl-b {
        left: 3.75rem;
        bottom: 2.6rem;
        width: 3.3rem;
    }

    .contact-paw--br-a {
        right: 3.8rem;
        bottom: 4.8rem;
        width: 3.3rem;
    }

    .contact-paw--br-b {
        right: 0.85rem;
        bottom: 2.55rem;
        width: 3.4rem;
    }

    .site-footer {
        padding-bottom: 2.2rem;
    }
}

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

    .scroll-top,
    body.motion-ready .scroll-reveal {
        transition: none;
    }

    body.motion-ready .scroll-reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
