@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Lobster+Two:wght@400;700&family=Nunito+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --font-logo: 'Lobster Two', cursive;
    --font-title: 'Baloo 2', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --wine: #A40E12;
    --wine-dark: #78090E;
    --gold: #F5B51B;
    --gold-soft: #FFE9AF;
    --cream: #FFF8EC;
    --cream-deep: #F8EEDC;
    --brown: #6B2D1A;
    --text: #2B1A14;
    --muted: #6F5A51;
    --white: #FFFFFF;
    --green: #1FAE55;
    --green-dark: #128440;
    --border: rgba(107, 45, 26, 0.12);
    --shadow-soft: 0 16px 38px rgba(65, 29, 18, 0.08);
    --shadow-card: 0 12px 32px rgba(65, 29, 18, 0.11);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 12px;
    --container: 1200px;
    --header-height: 78px;
}

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

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

html.menu-open,
body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}

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

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

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2,
h3,
.section-title,
.hero-title {
    font-family: var(--font-title);
    font-weight: 800;
    line-height: 1.14;
}

p,
button,
.btn,
.button,
.nav-link,
.product-card {
    font-family: var(--font-body);
}

button {
    font: inherit;
    color: inherit;
}

address {
    font-style: normal;
}

[hidden] {
    display: none !important;
}

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

.container {
    width: 100%;
    max-width: calc(var(--container) + 48px);
    margin-inline: auto;
    padding-inline: 24px;
    box-sizing: border-box;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1100;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--wine);
    color: var(--white);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.legacy-redirect {
    display: grid;
    place-content: center;
    gap: 18px;
    min-height: 100vh;
    padding: 28px;
    text-align: center;
}

.legacy-redirect h1 {
    color: var(--wine);
    font-size: clamp(2rem, 5vw, 3rem);
}

.section {
    padding: 84px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--wine);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.section-heading {
    max-width: 670px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading .eyebrow {
    justify-content: center;
}

.section-heading h2 {
    margin-bottom: 14px;
    color: var(--text);
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
}

.section-heading > p:last-child {
    color: var(--muted);
    font-size: 1.06rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 52px;
    padding: 13px 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.filter:focus-visible,
.nav-toggle:focus-visible {
    outline: 3px solid rgba(245, 181, 27, 0.55);
    outline-offset: 3px;
}

.button-primary {
    background: var(--wine);
    box-shadow: 0 14px 26px rgba(164, 14, 18, 0.22);
    color: var(--white);
}

.button-primary:hover {
    background: var(--wine-dark);
    box-shadow: 0 18px 32px rgba(164, 14, 18, 0.32);
}

.button-whatsapp {
    gap: 10px;
    padding: 7px 24px 7px 9px;
    background: var(--green);
    box-shadow: 0 14px 27px rgba(31, 174, 85, 0.2);
    color: var(--white);
}

.whatsapp-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.whatsapp-icon svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.button-whatsapp:hover {
    background: var(--green-dark);
    box-shadow: 0 18px 33px rgba(31, 174, 85, 0.32);
}

.button-outline {
    border-color: rgba(164, 14, 18, 0.23);
    background: var(--white);
    color: var(--wine);
}

.button-outline:hover {
    border-color: var(--wine);
    background: var(--wine);
    color: var(--white);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 60;
    width: 100%;
    height: var(--header-height);
    color: var(--wine);
    border-bottom: 1px solid rgba(107, 45, 26, 0.09);
    background: rgba(255, 248, 236, 0.9);
    backdrop-filter: blur(14px);
    transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
    background: rgba(255, 248, 236, 0.98);
    box-shadow: 0 10px 27px rgba(43, 26, 20, 0.07);
}

body.menu-open .site-header {
    z-index: 110;
    color: var(--gold);
    border-bottom-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

body.menu-open .brand-subtitle {
    color: rgba(255, 255, 255, 0.78);
}

body.menu-open .brand,
body.menu-open .nav-toggle {
    position: relative;
    z-index: 112;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex-shrink: 0;
    flex-direction: column;
    min-width: 0;
    color: inherit;
    line-height: 1;
}

.logo,
.brand,
.site-logo,
.header-logo,
.brand-name {
    font-family: var(--font-logo);
}

.brand-name {
    font-size: clamp(2.22rem, 3.25vw, 2.72rem);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.brand-subtitle {
    align-self: center;
    margin-top: 5px;
    color: var(--brown);
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    position: relative;
    padding: 12px 9px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
    transition: color 180ms ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 7px;
    left: 10px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--gold);
    transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--wine);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

.header-cta {
    min-height: 46px;
    padding: 6px 18px 6px 8px;
    white-space: nowrap;
}

.header-cta .whatsapp-icon {
    width: 32px;
    height: 32px;
}

.header-cta .whatsapp-icon svg {
    width: 18px;
    height: 18px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    cursor: pointer;
    border: 1px solid currentColor;
    border-radius: var(--radius-sm);
    background: transparent;
    color: inherit;
}

body.menu-open .nav-toggle {
    border-color: rgba(245, 181, 27, 0.7);
    background: rgba(107, 45, 26, 0.32);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(43, 10, 8, 0.3);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    display: block;
    width: 19px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
    position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle-lines::before {
    top: -6px;
}

.nav-toggle-lines::after {
    top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
    transform: translateY(6px) rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
    opacity: 0;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 85;
    display: none;
    padding: 0;
    cursor: pointer;
    border: 0;
    background: transparent;
}

.nav-backdrop.is-visible {
    display: block;
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    max-width: 100%;
    padding: calc(var(--header-height) + 50px) 0 70px;
    background:
        radial-gradient(circle at 18% 22%, rgba(164, 14, 18, 0.07), transparent 27%),
        radial-gradient(circle at 85% 15%, rgba(245, 181, 27, 0.14), transparent 28%),
        linear-gradient(140deg, #FFF8EC 0%, #FFFDF9 50%, #F8EEDC 100%);
}

.hero::before {
    content: "";
    position: absolute;
    right: min(8vw, 92px);
    bottom: 34px;
    z-index: 0;
    width: min(36vw, 430px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 181, 27, 0.18), transparent 68%);
    filter: blur(4px);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(370px, 0.9fr);
    align-items: center;
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    min-width: 0;
    gap: clamp(26px, 3.2vw, 42px);
}

.hero-content,
.hero-image {
    min-width: 0;
    max-width: 100%;
}

.hero-content h1 {
    max-width: 590px;
    margin-bottom: 14px;
    color: var(--text);
    font-size: clamp(2.8rem, 4.55vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.015em;
}

.hero-lead {
    max-width: 565px;
    margin-bottom: 16px;
    color: var(--wine);
    font-family: var(--font-title);
    font-size: clamp(1.18rem, 2.2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.25;
}

.hero-text {
    max-width: 590px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: clamp(1rem, 1.55vw, 1.1rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 15px;
    margin-bottom: 22px;
}

.hero-actions .button {
    min-height: 58px;
    padding-inline: 30px;
    font-size: 1rem;
}

.hero-actions .button-whatsapp {
    padding: 8px 30px 8px 10px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 575px;
    gap: 10px;
    color: var(--muted);
    font-size: 0.93rem;
}

.hero-highlights span {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 96px;
    justify-content: center;
    padding: 18px 15px 17px 45px;
    border: 1px solid rgba(107, 45, 26, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 26px rgba(65, 29, 18, 0.06);
}

.hero-highlights span::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 18px;
    width: 13px;
    height: 13px;
    border: 3px solid rgba(245, 181, 27, 0.38);
    border-radius: 50%;
    background: var(--wine);
    box-shadow: 0 0 0 5px rgba(164, 14, 18, 0.08);
}

.hero-highlights strong {
    color: var(--text);
    font-family: var(--font-title);
    font-size: 1.18rem;
    line-height: 1.05;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0;
    justify-self: start;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 24px -16px -18px 24px;
    z-index: 0;
    border-radius: var(--radius-lg);
    background: var(--gold);
    opacity: 0.18;
}

.hero-image > picture img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 442px;
    aspect-ratio: 1.03 / 1;
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 45px rgba(58, 30, 19, 0.16);
    object-fit: cover;
    object-position: center;
}

.hero-carousel {
    display: none;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-carousel-viewport {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
}

.hero-carousel-track {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    transition: transform 360ms ease;
    will-change: transform;
}

.hero-slide {
    box-sizing: border-box;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.hero-slide img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.hero-slide-content {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-slide-content span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--wine);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-slide-content h2 {
    margin-bottom: 7px;
    color: var(--text);
    font-size: 1.18rem;
    line-height: 1.16;
    letter-spacing: -0.01em;
}

.hero-slide-content p {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.hero-carousel-control,
.hero-carousel-dots button {
    cursor: pointer;
}

.hero-carousel-control {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: rgba(164, 14, 18, 0.92);
    color: var(--white);
    box-shadow: 0 11px 24px rgba(43, 26, 20, 0.22);
    transition: transform 180ms ease, background-color 180ms ease;
}

.hero-carousel-control:hover {
    transform: translateY(-1px);
    background: var(--wine-dark);
}

.hero-carousel-control span {
    transform: translateY(-1px);
    font-size: 1.6rem;
    line-height: 1;
}

.hero-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 13px;
}

.hero-carousel-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(107, 45, 26, 0.28);
    transition: width 180ms ease, background-color 180ms ease;
}

.hero-carousel-dots button.is-active {
    width: 24px;
    background: var(--wine);
}

/* Benefits */
.benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    min-height: 217px;
    padding: 27px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(164, 14, 18, 0.16);
    box-shadow: var(--shadow-soft);
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    margin-bottom: 21px;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--wine);
    font-size: 0.83rem;
    font-weight: 700;
}

.benefit-card h3 {
    margin-bottom: 9px;
    font-size: 1.12rem;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

/* Categories */
.categories {
    background: var(--cream);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.category-card img {
    width: 100%;
    height: 226px;
    object-fit: cover;
}

.category-card > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 265px;
    padding: 27px 27px 29px;
}

.category-card h3 {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 1.27rem;
    line-height: 1.2;
}

.category-card p {
    flex-grow: 1;
    margin-bottom: 23px;
    color: var(--muted);
    font-size: 0.94rem;
}

.category-card .button {
    min-height: 46px;
    padding: 10px 22px;
}

/* Products */
.products {
    background: var(--white);
}

.products .section-heading {
    margin-bottom: 34px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.filter {
    min-height: 45px;
    padding: 9px 21px;
    cursor: pointer;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--cream);
    color: var(--brown);
    font-size: 0.93rem;
    font-weight: 700;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter:hover {
    transform: translateY(-1px);
    border-color: rgba(164, 14, 18, 0.3);
}

.filter.is-active {
    border-color: var(--wine);
    background: var(--wine);
    color: var(--white);
}

.product-count {
    margin-bottom: 35px;
    color: var(--muted);
    font-size: 0.91rem;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(107, 45, 26, 0.08);
    border-radius: var(--radius-md);
    background: #FFFEFC;
    box-shadow: 0 5px 19px rgba(65, 29, 18, 0.05);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.product-card img {
    width: 100%;
    height: 221px;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
}

.tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--brown);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-info h3 {
    margin-bottom: 9px;
    color: var(--text);
    font-size: 1.19rem;
    line-height: 1.2;
}

.product-info p {
    flex-grow: 1;
    margin-bottom: 23px;
    color: var(--muted);
    font-size: 0.92rem;
}

.button-interest {
    width: 100%;
    min-height: 47px;
    border: 1px solid rgba(164, 14, 18, 0.18);
    background: #FFF7F5;
    color: var(--wine);
}

.button-interest:hover {
    border-color: var(--wine);
    background: var(--wine);
    color: var(--white);
}

/* Business */
.business {
    padding: 70px 0;
    background: var(--cream);
}

.business-panel {
    display: grid;
    grid-template-columns: 1.42fr 0.8fr;
    align-items: center;
    gap: clamp(35px, 7vw, 82px);
    padding: clamp(42px, 6vw, 63px);
    border-radius: var(--radius-lg);
    background: var(--wine);
    color: var(--white);
}

.business-panel .eyebrow {
    color: var(--gold);
}

.business-panel h2 {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
}

.business-panel > div:first-child > p:not(.eyebrow) {
    max-width: 620px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.04rem;
}

.business-points {
    display: grid;
    gap: 14px;
}

.business-points p {
    display: flex;
    flex-direction: column;
    padding: 18px 21px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.06);
}

.business-points strong {
    color: var(--gold);
    font-size: 1.08rem;
}

.business-points span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

/* Preparation */
.preparation {
    background: var(--white);
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.preparation-card {
    padding: 28px 25px 32px;
    border-radius: var(--radius-md);
    background: var(--cream);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.preparation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.preparation-card span {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--wine);
    font-size: 0.86rem;
    font-weight: 700;
}

.preparation-card h3 {
    margin-bottom: 10px;
    color: var(--brown);
    font-size: 1.16rem;
    line-height: 1.2;
}

.preparation-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

/* About */
.about {
    background: var(--cream-deep);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(45px, 7vw, 94px);
}

.about-copy h2 {
    margin-bottom: 21px;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
}

.about-copy > p:last-child {
    color: var(--muted);
    font-size: 1.04rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.about-values p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 138px;
    padding: 22px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 9px 25px rgba(65, 29, 18, 0.045);
}

.about-values strong {
    margin-bottom: 4px;
    color: var(--wine);
    font-size: 1.22rem;
}

.about-values span {
    color: var(--muted);
    font-size: 0.9rem;
}

/* Contact */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 28px;
}

.contact-card,
.map-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.contact-card {
    padding: clamp(27px, 4vw, 37px);
}

.contact-card h3 {
    margin-bottom: 13px;
    color: var(--wine);
    font-size: 1.45rem;
}

.contact-card address {
    margin-bottom: 26px;
    color: var(--muted);
}

.contact-list {
    display: grid;
    gap: 14px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--border);
}

.contact-list span {
    color: var(--muted);
    font-size: 0.91rem;
}

.contact-list a {
    color: var(--wine);
    font-weight: 700;
    text-align: right;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-actions {
    display: grid;
    gap: 11px;
}

.map-card {
    overflow: hidden;
    min-height: 480px;
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
}

/* Footer */
.site-footer {
    background: #291710;
    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.9fr;
    gap: clamp(35px, 8vw, 82px);
    padding: 58px 0 44px;
}

.footer-brand .brand {
    margin-bottom: 21px;
    color: var(--gold);
}

.footer-brand .brand-subtitle {
    align-self: flex-start;
    padding-left: 5px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand p {
    max-width: 355px;
    font-size: 0.94rem;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.site-footer h2 {
    margin-bottom: 9px;
    color: var(--white);
    font-size: 1rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.94rem;
    transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact p {
    margin-bottom: 7px;
    font-size: 0.94rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 19px 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.83rem;
}

/* Floating conversion button */
.floating-whatsapp {
    position: fixed;
    right: clamp(18px, 2.2vw, 26px);
    bottom: clamp(18px, 2.2vw, 28px);
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 9px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 15px 30px rgba(12, 84, 40, 0.3);
    color: var(--white);
    transition: transform 180ms ease, background-color 180ms ease, gap 180ms ease, padding 180ms ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    gap: 9px;
    padding-right: 17px;
    background: var(--green-dark);
}

.floating-whatsapp .whatsapp-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.17);
}

.floating-whatsapp .whatsapp-icon svg {
    width: 22px;
    height: 22px;
}

.floating-whatsapp strong {
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    font-size: 0.94rem;
    white-space: nowrap;
    transition: max-width 190ms ease, opacity 160ms ease;
}

.floating-whatsapp:hover strong {
    max-width: 92px;
    opacity: 1;
}

/* Scroll reveal */
.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 580ms ease, transform 580ms ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet and mobile */
@media (max-width: 1080px) {
    :root {
        --header-height: 72px;
    }

    .nav-toggle {
        display: grid;
    }

    .nav-panel {
        position: fixed;
        inset: 0;
        z-index: 90;
        display: flex;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: clamp(17px, 3.5vh, 30px);
        padding: calc(var(--header-height) + 20px) clamp(20px, 6vw, 48px) max(42px, calc(env(safe-area-inset-bottom) + 22px));
        overflow: auto;
        color: var(--white);
        border: 0;
        background:
            radial-gradient(circle at 78% 12%, rgba(245, 181, 27, 0.21), transparent 31%),
            radial-gradient(circle at 20% 86%, rgba(245, 181, 27, 0.11), transparent 34%),
            linear-gradient(180deg, var(--wine) 0%, var(--wine-dark) 58%, #4E130F 100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        clip-path: circle(0% at calc(100% - 42px) 36px);
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        transition:
            clip-path 540ms cubic-bezier(0.22, 1, 0.36, 1),
            opacity 340ms ease,
            visibility 0s linear 540ms;
    }

    .nav-panel.is-open {
        display: flex;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        clip-path: circle(150% at calc(100% - 42px) 36px);
        transition-delay: 0s;
    }

    .nav-panel::before {
        content: "";
        position: absolute;
        top: var(--header-height);
        right: clamp(24px, 8vw, 72px);
        left: clamp(24px, 8vw, 72px);
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(245, 181, 27, 0.48), transparent);
        opacity: 0;
        transform: scaleX(0.65);
        transition: opacity 360ms ease, transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nav-panel::after {
        content: "";
        position: absolute;
        inset: auto 12% 7% 12%;
        height: 24%;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(245, 181, 27, 0.14), transparent 64%);
        opacity: 0;
        filter: blur(24px);
        transform: translateY(20px);
        pointer-events: none;
        transition: opacity 440ms ease, transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nav-panel.is-open::before,
    .nav-panel.is-open::after {
        opacity: 1;
        transform: none;
        transition-delay: 180ms;
    }

    .nav-links {
        position: relative;
        z-index: 1;
        display: flex;
        width: min(100%, 450px);
        flex-direction: column;
        align-items: center;
        gap: clamp(2px, 1vh, 9px);
    }

    .nav-link {
        display: flex;
        width: 100%;
        min-height: clamp(43px, 6.5vh, 61px);
        align-items: center;
        justify-content: center;
        padding: 8px 14px;
        color: rgba(255, 255, 255, 0.82);
        font-size: clamp(1.02rem, 4vw, 1.48rem);
        font-weight: 800;
        letter-spacing: 0.01em;
        text-align: center;
        opacity: 0;
        transform: translate3d(0, 18px, 0);
        transition: opacity 340ms ease, transform 460ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease;
    }

    .nav-link::after {
        right: 29%;
        bottom: 5px;
        left: 29%;
        background: var(--gold);
    }

    .nav-link:hover,
    .nav-link:focus-visible {
        color: var(--white);
    }

    .nav-panel.is-open .nav-link {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .nav-panel.is-open .nav-link:nth-child(1) {
        transition-delay: 110ms, 110ms, 0s;
    }

    .nav-panel.is-open .nav-link:nth-child(2) {
        transition-delay: 150ms, 150ms, 0s;
    }

    .nav-panel.is-open .nav-link:nth-child(3) {
        transition-delay: 190ms, 190ms, 0s;
    }

    .nav-panel.is-open .nav-link:nth-child(4) {
        transition-delay: 230ms, 230ms, 0s;
    }

    .nav-panel.is-open .nav-link:nth-child(5) {
        transition-delay: 270ms, 270ms, 0s;
    }

    .nav-panel.is-open .nav-link:nth-child(6) {
        transition-delay: 310ms, 310ms, 0s;
    }

    .header-cta {
        position: relative;
        z-index: 1;
        width: min(100%, 320px);
        opacity: 0;
        transform: translate3d(0, 18px, 0);
        transition:
            opacity 340ms ease,
            transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
            background-color 180ms ease,
            box-shadow 180ms ease;
    }

    .nav-panel.is-open .header-cta {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transition-delay: 350ms, 350ms, 0s, 0s;
    }

    body.menu-open .floating-whatsapp {
        opacity: 0;
        pointer-events: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        max-width: 710px;
    }

    .hero-image {
        max-width: 610px;
        justify-self: center;
    }

    .benefits-grid,
    .preparation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card:last-child {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .category-card:last-child img {
        height: 100%;
    }

    .business-panel {
        grid-template-columns: 1fr;
    }

    .business-points {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .map-card,
    .map-card iframe {
        min-height: 370px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-inline: 16px;
    }

    .section {
        padding: 63px 0;
    }

    .brand-name {
        font-size: 2.05rem;
    }

    .brand-subtitle {
        font-size: 0.57rem;
    }

    .hero {
        padding: calc(var(--header-height) + 26px) 0 44px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-content .eyebrow {
        justify-content: center;
    }

    .hero-content h1 {
        max-width: 100%;
        font-size: clamp(2rem, 9.6vw, 2.55rem);
    }

    .hero-lead {
        max-width: 100%;
        margin-bottom: 14px;
        font-size: 1.1rem;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 24px;
        font-size: 1rem;
    }

    .hero-actions {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        margin-bottom: 0;
    }

    .hero-actions .button,
    .hero .button {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-inline: 0;
        box-sizing: border-box;
    }

    .hero-highlights {
        display: none;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-image {
        width: 100%;
        max-width: min(430px, 100%);
        margin-inline: auto;
        box-sizing: border-box;
    }

    .hero-image::before,
    .hero-image > picture {
        display: none;
    }

    .hero-carousel {
        position: relative;
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        touch-action: pan-y;
    }

    .hero-carousel-viewport {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
        border: 1px solid rgba(107, 45, 26, 0.1);
        border-radius: 24px;
        background: var(--white);
        box-shadow: 0 15px 34px rgba(65, 29, 18, 0.12);
    }

    .hero-slide {
        overflow: hidden;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        border-radius: 24px;
        background: var(--white);
    }

    .hero-slide img {
        width: 100%;
        max-width: 100%;
        height: clamp(220px, 58vw, 260px);
        border-radius: 24px 24px 0 0;
    }

    .hero-slide-content {
        box-sizing: border-box;
        width: 100%;
        padding: 16px 18px 22px;
        text-align: left;
    }

    .hero-slide-content p {
        margin-bottom: 18px;
    }

    .hero-slide-content .button {
        box-sizing: border-box;
        width: 100%;
        min-height: 44px;
        padding: 10px 18px;
    }

    .hero-carousel-control {
        top: clamp(94px, 29vw, 118px);
    }

    .hero-carousel-prev {
        left: 10px;
    }

    .hero-carousel-next {
        right: 10px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .benefits-grid,
    .category-grid,
    .product-grid,
    .preparation-grid,
    .about-grid,
    .about-values,
    .business-points,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: 0;
    }

    .category-card:last-child {
        grid-column: auto;
        display: block;
    }

    .category-card:last-child img,
    .category-card img {
        height: 218px;
    }

    .category-card > div {
        min-height: initial;
    }

    .filters {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
        max-width: 100%;
        margin-inline: 0;
        padding: 1px 0 9px;
        scrollbar-width: none;
    }

    .filters::-webkit-scrollbar {
        display: none;
    }

    .filter {
        flex: 0 1 auto;
    }

    .product-card img {
        height: auto;
        aspect-ratio: 1.35;
    }

    .business {
        padding: 44px 0;
    }

    .business-panel {
        padding: 36px 24px;
        text-align: center;
    }

    .business-panel .eyebrow {
        justify-content: center;
    }

    .business-panel .button {
        width: 100%;
    }

    .business-points {
        text-align: left;
    }

    .about-copy {
        text-align: center;
    }

    .about-copy .eyebrow {
        justify-content: center;
    }

    .contact-card {
        text-align: center;
    }

    .contact-list li {
        flex-direction: column;
        gap: 3px;
    }

    .contact-list a {
        text-align: center;
    }

    .map-card,
    .map-card iframe {
        min-height: 310px;
    }

    .footer-grid {
        gap: 34px;
        padding: 47px 0 38px;
        text-align: center;
    }

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

    .footer-brand p {
        margin-inline: auto;
    }

    .footer-brand .brand-subtitle {
        align-self: center;
        padding-left: 0;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .floating-whatsapp {
        padding: 8px;
    }

    .floating-whatsapp strong {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
        clip-path: inset(50%);
    }
}

@media (max-width: 390px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-inline: 16px;
    }

    .header-inner {
        gap: 8px;
    }

    .brand-name {
        font-size: 1.88rem;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
