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

:root {
    --navy: #205873;
    --navy-2: #173f55;
    --blue: #2b8fbd;
    --gold: #b99355;
    --gold-2: #d8bc82;
    --paper: #f7faf9;
    --white: #ffffff;
    --ink: #12304c;
    --muted: #64748b;
    --line: rgba(18, 60, 102, .11);
    --shadow: 0 16px 38px rgba(18, 60, 102, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 92px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: 'Manrope', sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.hidden { display: none !important; }
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-shell {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    overflow: visible;
    overflow-x: clip;
    border: 0;
    border-radius: 0;
    background: var(--paper);
    box-shadow: none;
}

.site-utility-bar {
    min-height: 34px;
    padding: 7px clamp(28px, 5vw, 78px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #52636b;
    background: linear-gradient(90deg, #eee7d8, #f8f4eb 48%, #e9f2f3);
    border-bottom: 1px solid rgba(185,147,85,.22);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
}
.site-utility-bar nav { display: flex; align-items: center; gap: 22px; }
.site-utility-bar a { transition: color .18s ease; }
.site-utility-bar a:hover { color: #8b692f; }
.site-header {
    min-height: 76px;
    padding: 0 clamp(28px, 5vw, 78px);
    position: sticky;
    top: 0;
    z-index: 1030;
    background:
        radial-gradient(circle at 13% -20%, rgba(89,177,204,.15), transparent 34%),
        linear-gradient(110deg, rgba(255,255,255,.98), rgba(246,250,248,.98) 54%, rgba(235,245,247,.98));
    border-bottom: 1px solid rgba(32,88,115,.12);
    box-shadow: 0 10px 30px rgba(24,66,84,.08);
    transition: min-height .25s ease, padding .25s ease, box-shadow .25s ease;
}
.site-header__inner { min-height: 76px; padding: 0; gap: 26px; transition: min-height .25s ease, gap .25s ease; }
.site-header__collapse { align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; margin: 0; padding: 0; }
.brand img { width: 144px; height: 58px; object-fit: contain; transition: width .25s ease, height .25s ease; }
.site-menu-toggle { border: 1px solid rgba(32,88,115,.28); border-radius: 9px; }
.site-menu-toggle:focus { box-shadow: 0 0 0 .2rem rgba(201,155,63,.25); }
.navbar-toggler-icon { filter: none; }
.site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(20px, 2.15vw, 40px);
    color: var(--navy-2);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: .03em;
}
.site-nav a {
    position: relative;
    padding: 28px 0 25px;
    color: #244c60;
    transition: color .18s ease, padding .25s ease;
}
.site-nav a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--gold);
    transition: transform .2s ease;
}
.site-nav a:hover,
.site-nav a.is-active { color: #0c759d; }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }
.site-nav__dropdown { position: relative; }
.site-nav .site-nav__menu {
    min-width: 320px;
    margin-top: -2px;
    padding: 10px;
    border: 1px solid rgba(185,147,85,.22);
    border-radius: 14px;
    background: rgba(255,253,248,.99);
    box-shadow: 0 24px 55px rgba(23,63,85,.15);
}
.site-nav .site-nav__menu--compact { min-width: 292px; }
.site-nav .site-nav__menu-title {
    display: block;
    padding: 5px 10px 9px;
    color: #8a6a31;
    font-family: 'Manrope', sans-serif;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.site-nav .site-nav__menu a {
    display: grid;
    gap: 2px;
    padding: 12px;
    border-radius: 7px;
    color: var(--ink);
    white-space: normal;
}
.site-nav .site-nav__menu a::after { display: none; }
.site-nav .site-nav__menu a:hover,
.site-nav .site-nav__menu a:focus { color: var(--navy); background: #edf6f5; }
.site-nav .site-nav__menu strong { font-family:'Cormorant Garamond',serif; font-size:1.08rem; font-weight:700; letter-spacing:.01em; }
.site-nav .site-nav__menu small { color: var(--muted); font-family:'Manrope',sans-serif; font-size: .74rem; line-height:1.4; }
.site-header__tools { display: flex; align-items: center; gap: 14px; }
.site-language-nav { position: relative; }
.site-language-nav__toggle {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 46px;

    padding: 0;
    border: 1px solid rgba(11,85,115,.28);
    border-radius: 999px;
    color: #0b5573;
    background: linear-gradient(180deg,#fff,#eef8fa);
    box-shadow: 0 7px 18px rgba(14,73,96,.14);
    font: 700 .76rem/1 'Manrope',sans-serif;
    letter-spacing: .02em;
}
.site-language-nav__globe { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.site-language-nav__toggle.dropdown-toggle::after { display: none; }
.site-language-nav__toggle:hover,.site-language-nav__toggle:focus { color: #063e59; border-color: rgba(11,85,115,.48); background: #fff; transform: translateY(-1px); }
.site-language-nav__menu {
    min-width: 190px;
    max-height: min(430px,70vh);
    overflow-y: auto;
    padding: 8px;
    border: 1px solid rgba(32,88,115,.14);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(7,29,54,.16);
}
.site-language-nav__item { padding: 10px 12px; border-radius: 8px; font-weight: 700; color: var(--ink); }
.site-language-nav__item:hover,
.site-language-nav__item:focus { color: var(--navy); background: #edf6f5; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-catalog,
.header-access {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .025em;
    text-transform: uppercase;
    transition: min-height .25s ease, padding .25s ease, color .18s ease, background .18s ease;
}

@media (min-width: 1200px) {
    .site-header.is-compact {
        min-height: 58px;
        box-shadow: 0 12px 34px rgba(24,66,84,.13);
    }
    .site-header.is-compact .site-header__inner { min-height: 58px; gap: 20px; }
    .site-header.is-compact .brand img { width: 112px; height: 44px; }
    .site-header.is-compact .site-nav a { padding-top: 18px; padding-bottom: 17px; }
    .site-header.is-compact .header-catalog,
    .site-header.is-compact .header-access { min-height: 36px; padding-right: 17px; padding-left: 17px; }
}
.header-catalog {
    color: var(--white);
    background: linear-gradient(180deg, var(--gold-2), #bf9142);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 10px 18px rgba(126,88,31,.18);
}
.header-access {
    color: var(--navy-2);
    border: 1px solid var(--gold);
    background: rgba(255,255,255,.55);
}

.btn-primary,
.btn-secondary,
.button-primary,
.button-secondary {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border-radius: 4px;
    border: 0;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .025em;
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease;
}
.btn-primary,
.button-primary { color: var(--white); background: var(--navy); box-shadow: 0 12px 24px rgba(7,29,54,.2); }
.btn-secondary,
.button-secondary { color: var(--navy); border: 1px solid var(--navy); background: rgba(255,255,255,.82); }
.btn-primary:hover,
.btn-secondary:hover,
.button-primary:hover,
.button-secondary:hover { transform: translateY(-2px); }

.home-page { background: #eff7ff; }
.home-banner {
    position: relative;
    min-height: clamp(360px, 36.6vw, 540px);
    overflow: hidden;
    background: #dcecf8;
}
.home-banner__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .55s ease;
}
.home-banner__slide.is-active { opacity: 1; pointer-events: auto; }
.home-banner__slide picture,
.home-banner__slide img { width: 100%; height: 100%; display: block; }
.home-banner__slide img { object-fit: cover; object-position: center; }
.home-banner__overlay {
    position: relative;
    z-index: 2;
    width: min(520px, 45vw);
    min-height: clamp(360px, 36.6vw, 540px);
    margin-left: clamp(38px, 5vw, 78px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.home-banner__overlay::before {
    content: '';
    position: absolute;
    inset: -40px -80px -40px -40px;
    z-index: -1;
    background: linear-gradient(90deg, rgba(242,248,255,.94), rgba(242,248,255,.55), transparent);
}
.home-banner__overlay h1 {
    margin: 0;
    color: var(--navy-2);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: .92;
    font-weight: 900;
    letter-spacing: -.055em;
    text-transform: uppercase;
}
.home-banner__overlay p {
    max-width: 420px;
    margin: 22px 0 0;
    color: #0b1a2f;
    font-size: 1.06rem;
    line-height: 1.55;
}
.home-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.home-banner__dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 22px;
    display: flex;
    gap: 11px;
    transform: translateX(-50%);
}
.home-banner__dots button {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    box-shadow: 0 0 0 1px rgba(7,29,54,.2);
}
.home-banner__dots button.is-active { background: var(--gold); }
.home-banner__control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(8, 40, 70, .44);
    box-shadow: 0 10px 24px rgba(7, 29, 54, .18);
    transform: translateY(-50%);
    transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.home-banner__control span {
    font-size: 2.1rem;
    line-height: 1;
    margin-top: -2px;
}
.home-banner__control:hover {
    background: rgba(8, 40, 70, .66);
    transform: translateY(-50%) scale(1.04);
}
.home-banner__control--prev { left: 18px; }
.home-banner__control--next { right: 18px; }

.line-grid {
    max-width: none;
    padding: 18px clamp(32px, 4vw, 68px) 10px;
    background: #eff7ff;
}
.line-grid .row { --bs-gutter-x: 8px; --bs-gutter-y: 12px; }
.line-box {
    width: 100%;
    min-height: 224px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 14px;
    overflow: hidden;
    position: relative;
    padding: 24px 24px 20px;
    border: 1px solid rgba(7,29,54,.08);
    border-radius: 8px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 8px 24px rgba(7,29,54,.08);
}
.home-card {
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}
.home-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(18, 60, 102, .14);
}
.home-card:focus-visible {
    outline: 3px solid rgba(202, 161, 90, .45);
    outline-offset: 2px;
}
.home-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.home-card__content .line-box__cta {
    margin-top: auto;
    width: fit-content;
}
.line-box h3 {
    margin: 0;
    color: var(--blue);
    font-size: clamp(1.35rem, 1.6vw, 1.8rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.035em;
    text-transform: uppercase;
}
.line-box p {
    margin: 12px 0 18px;
    color: #12233a;
    font-size: .82rem;
    line-height: 1.45;
}
.line-box a,
.line-box__cta {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 3px;
    color: var(--white);
    background: var(--navy);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
}
.line-box__image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.line-box__image img { max-height: 184px; object-fit: contain; filter: drop-shadow(0 12px 10px rgba(7,29,54,.16)); }
.line-box__image--double img:first-child { max-height: 136px; }
.line-box__image--double img:last-child { max-height: 176px; }
.line-box__image--triple img { max-height: 168px; }
.home-asset-placeholder {
    width: min(100%, 104px);
    min-height: 128px;
    display: grid;
    place-items: center;
    padding: 12px;
    border: 1px dashed rgba(7,29,54,.2);
    border-radius: 14px;
    color: rgba(7,29,54,.56);
    background: rgba(255,255,255,.74);
    text-align: center;
    font-size: .62rem;
    font-weight: 900;
    text-transform: uppercase;
}
.line-box--drinks h3 { color: #111827; }

.feature-row {
    max-width: none;
    padding: 0 clamp(32px, 4vw, 68px) 10px;
    background: #eff7ff;
}
.feature-row .row { --bs-gutter-x: 10px; --bs-gutter-y: 10px; }
.feature-card {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(7,29,54,.1);
}
.feature-card--image img {
    width: 100%;
    min-height: 124px;
    object-fit: cover;
}
.home-split-cards {
    width: 100%;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 10px;
}
.home-split-cards a {
    min-height: 136px;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(7,29,54,.08);
}
.home-split-cards img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-footer {
    color: var(--white);
    background:
        radial-gradient(circle at 10% 0%, rgba(94,181,202,.22), transparent 32%),
        linear-gradient(135deg, #245f73, #18495e 58%, #123c50);
}
.site-footer__grid {
    padding: 42px clamp(44px, 6vw, 108px) 22px;
    display: grid;
    grid-template-columns: 1.35fr repeat(5, minmax(120px, .8fr));
    gap: clamp(24px, 3vw, 50px);
}
.site-footer__brand img { width: 148px; height: 70px; object-fit: contain; }
.site-footer__brand p,
.site-footer p {
    margin: 6px 0;
    color: rgba(255,255,255,.88);
    font-size: .9rem;
}
.site-footer__brand p {
    max-width: 270px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.7;
}
.site-footer__brand span { color: rgba(255,255,255,.62); font-size: .78rem; }
.site-footer h2 {
    margin: 0 0 15px;
    color: var(--gold-2);
    font-family:'Cormorant Garamond',serif;
    font-size: 1.18rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: .025em;
}
.site-footer__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    color: rgba(255,255,255,.88);
    font-size: .86rem;
    line-height: 1.45;
}
.site-footer__links a { width: fit-content; transition: color .18s ease, transform .18s ease; }
.site-footer__links a:hover { color: var(--gold-2); transform: translateX(3px); }
.site-footer__social { display: flex; gap: 10px; }
.site-footer__social a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 50%;
    font-size: .78rem;
    font-weight: 900;
}
.site-footer__bottom {
    grid-column: 1 / -1;
    margin-top: 14px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.14);
}
.site-footer__bottom nav { display: flex; flex-wrap: wrap; gap: 20px; color: rgba(255,255,255,.72); font-size: .78rem; }
.site-footer small {
    color: rgba(255,255,255,.72);
    font-size: .78rem;
}

.site-page { min-height: 620px; background: #fff; }
.page-hero {
    min-height: 126px;
    padding: 34px clamp(32px, 5vw, 90px);
    display: grid;
    place-items: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.9)),
        url('../img/sections/attiva-catalog-water-header.png') center / cover no-repeat;
}
.page-kicker {
    display: inline-flex;
    color: var(--blue);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.page-hero h1,
.product-detail h1,
.contact-reference__panel h1,
.jobs-title h1,
.not-found-page h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
    text-transform: uppercase;
}
.page-hero p,
.product-detail p,
.jobs-title p {
    margin: 8px 0 0;
    color: #1a2b44;
    font-size: .92rem;
}

.catalog-panel {
    width: min(1320px, calc(100% - 46px));
    margin: 0 auto;
    padding: 26px 0 58px;
}
.catalog-toolbar {
    display: grid;
    grid-template-columns: 1fr minmax(240px, 330px);
    gap: 18px;
    align-items: center;
    margin-bottom: 20px;
}
.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
}
.catalog-filter {
    min-width: 96px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid #e0e6ef;
    border-radius: 3px;
    color: #253248;
    background: #f4f6f9;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}
.catalog-filter.is-active,
.catalog-filter:hover { color: var(--white); background: var(--navy); }
.catalog-search {
    display: grid;
    grid-template-columns: 1fr 42px;
    min-height: 38px;
    border: 1px solid #dce3ec;
    border-radius: 3px;
    overflow: hidden;
    background: #fff;
}
.catalog-search input {
    min-width: 0;
    border: 0;
    padding: 0 14px;
    font-size: .78rem;
}
.catalog-search button {
    border: 0;
    color: var(--navy);
    background: #f4f6f9;
    font-weight: 900;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}
.product-card {
    position: relative;
    display: block;
    min-height: 226px;
    padding: 12px 12px 14px;
    border: 1px solid #dfe6f0;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(7,29,54,.04);
}
.product-card__favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    color: #7c8795;
    font-size: 1rem;
}
.product-card__visual {
    height: 124px;
    display: grid;
    place-items: center;
    border-radius: 4px;
    background: #fff;
}
.product-card__visual img { max-height: 118px; object-fit: contain; }
.site-page .catalog-panel .product-card {
    min-height: 204px;
}
.site-page .catalog-panel .product-card__visual {
    height: 100px;
}
.site-page .catalog-panel .product-card__visual img {
    width: auto;
    max-width: 82%;
    max-height: 90px;
}
.home-catalog-featured { padding-top: 42px; padding-bottom: 62px; }
.home-catalog-featured__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}
.home-catalog-featured__heading h2 {
    margin: 4px 0 0;
    color: var(--navy-2);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
}
.home-catalog-featured .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.home-catalog-featured .product-card {
    min-height: 350px;
    padding: 18px;
    border-color: rgba(32,88,115,.13);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(23,63,85,.09);
}
.home-catalog-featured .product-card__visual {
    height: 245px;
    border-radius: 14px;
    background: linear-gradient(145deg, #fff, #f1f7f6);
}
.home-catalog-featured .product-card__visual img {
    width: auto;
    max-width: 100%;
    max-height: 230px;
    object-fit: contain;
}
.home-catalog-featured .product-card h3 {
    min-height: 0;
    margin-top: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    text-transform: none;
}
.product-card__initials {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    font-size: 1.5rem;
    font-weight: 900;
}
.product-card__tag-row {
    display: none;
}
.product-card h3 {
    min-height: 36px;
    margin: 8px 0 5px;
    color: var(--navy);
    font-size: .78rem;
    line-height: 1.25;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}
.product-card__meta {
    margin: 0 0 8px;
    color: #526174;
    font-size: .68rem;
    text-align: center;
}
.product-card__action {
    min-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0 auto;
    padding: 0 12px;
    border-radius: 3px;
    color: var(--white);
    background: var(--navy);
    font-size: .6rem;
    font-weight: 900;
    text-transform: uppercase;
}
.catalog-empty {
    padding: 50px;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-reference {
    display: grid;
    grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
    min-height: 510px;
    background: linear-gradient(135deg, #f7faf9, #edf5f5);
}
.contact-reference__panel {
    padding: clamp(32px, 4vw, 58px);
    color: var(--white);
    background: linear-gradient(180deg, #08213d, #031326);
}
.contact-reference__panel h1 { color: var(--white); text-align: left; }
.contact-reference__panel p {
    max-width: 390px;
    margin: 18px 0 32px;
    color: rgba(255,255,255,.88);
    font-size: 1.02rem;
    line-height: 1.72;
}
.contact-info-list { display: grid; gap: 18px; }
.contact-info-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    align-items: center;
    color: rgba(255,255,255,.92);
    font-size: .94rem;
    line-height: 1.55;
}
.contact-info-list strong {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold-2);
}
.contact-reference__form {
    padding: clamp(34px, 5vw, 68px);
    display: grid;
    align-items: center;
}
.contact-form {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid rgba(185,147,85,.2);
    border-radius: 26px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 24px 70px rgba(23,63,85,.12);
}
.contact-form__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #9a7539;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.contact-form h2 {
    margin: 0;
    color: var(--navy-2);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.05;
}
.contact-form__intro {
    max-width: 620px;
    margin: 9px 0 26px;
    color: #687b84;
    font-size: .98rem;
    line-height: 1.65;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
}
.form-field {
    display: grid;
    gap: 8px;
    color: #365469;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .015em;
}
.form-field > span { padding-left: 2px; }
.form-field > span b { color: #b1843c; font-weight: 800; }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(32,88,115,.18);
    border-radius: 12px;
    padding: 12px 15px;
    color: #173f55;
    font-size: .94rem;
    background-color: #fbfdfc;
    box-shadow: inset 0 1px 2px rgba(23,63,85,.025);
    outline: 0;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #9aabb2; opacity: 1; }
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: rgba(32,88,115,.34); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #b99355;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(185,147,85,.12), 0 8px 24px rgba(23,63,85,.07);
}
.form-field select {
    padding-right: 48px;
    appearance: none;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, #527486 50%),
        linear-gradient(135deg, #527486 50%, transparent 50%),
        linear-gradient(to right, rgba(32,88,115,.12), rgba(32,88,115,.12));
    background-position:
        calc(100% - 21px) 22px,
        calc(100% - 16px) 22px,
        calc(100% - 42px) 12px;
    background-size: 5px 5px, 5px 5px, 1px 26px;
    background-repeat: no-repeat;
}
.form-field textarea { min-height: 132px; resize: vertical; }
.form-field--wide { grid-column: 1 / -1; }
.form-submit {
    width: 100%;
    min-height: 52px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(110deg, #b58a45, #d4b474 52%, #ae7e34);
    box-shadow: 0 14px 30px rgba(145,103,41,.2);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.form-submit:hover { transform: translateY(-2px); filter: saturate(1.08); box-shadow: 0 18px 36px rgba(145,103,41,.26); }
.form-submit:focus-visible { outline: 3px solid rgba(185,147,85,.3); outline-offset: 3px; }
.form-submit b { font-size: 1.15rem; font-weight: 500; transition: transform .18s ease; }
.form-submit:hover b { transform: translateX(4px); }
.form-notice { margin-bottom: 16px; padding: 13px 14px; border-radius: 8px; }
.form-notice--success { color: #14532d; background: #dcfce7; }
.form-notice--error { color: #7f1d1d; background: #fee2e2; }

.jobs-page { background: #f6f8fb; }
.jobs-title {
    padding: 34px 24px 22px;
    text-align: center;
    background: #fff;
}
.jobs-grid {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.jobs-grid article {
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(7,29,54,.08);
}
.jobs-grid img { width: 100%; height: 128px; object-fit: cover; }
.jobs-grid div { padding: 18px 20px 22px; }
.jobs-grid h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: .92rem;
    font-weight: 900;
    text-transform: uppercase;
}
.jobs-grid p {
    min-height: 54px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.55;
}
.jobs-grid a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 3px;
    color: var(--white);
    background: var(--navy);
    font-size: .64rem;
    font-weight: 900;
    text-transform: uppercase;
}
.jobs-cta {
    padding: 18px clamp(32px, 5vw, 76px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--white);
    background: var(--navy);
}
.jobs-cta h2 {
    margin: 0;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 900;
}
.jobs-cta p {
    margin: 3px 0 0;
    color: rgba(255,255,255,.82);
    font-size: .78rem;
}
.jobs-cta .button-primary { min-width: 220px; background: linear-gradient(180deg, var(--gold-2), #b98729); }

.product-detail-page {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 62px 0;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.product-stage {
    min-height: 420px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #e8f6ff);
    box-shadow: var(--shadow);
}
.product-stage img { max-height: 360px; object-fit: contain; }
.product-stage__fallback {
    min-width: 180px;
    min-height: 280px;
    display: grid;
    place-items: center;
    border-radius: 80px 80px 28px 28px;
    color: var(--white);
    background: var(--blue);
    text-align: center;
    font-weight: 900;
    padding: 18px;
}
.product-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.product-specs article {
    padding: 18px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(7,29,54,.08);
}
.product-specs span {
    display: block;
    color: var(--blue);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.product-specs strong { display: block; margin-top: 4px; color: var(--navy); }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.not-found-page {
    width: min(760px, calc(100% - 48px));
    margin: 0 auto;
    padding: 90px 0;
    text-align: center;
}

.product-line-page {
    background:
        radial-gradient(circle at 0 0, rgba(20, 119, 188, .14), transparent 32rem),
        linear-gradient(180deg, #f5fbff, #ffffff 42%, #eef7ff);
}
.product-line-hero {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(44px, 7vw, 92px) 0 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .82fr);
    gap: clamp(28px, 5vw, 74px);
    align-items: center;
}
.product-line-hero__copy h1 {
    max-width: 720px;
    margin: 10px 0 16px;
    color: var(--navy-2);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6.6rem);
    line-height: .88;
    letter-spacing: -.04em;
}
.product-line-hero__copy p {
    max-width: 650px;
    margin: 0;
    color: #34526f;
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    line-height: 1.65;
}
.product-line-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.product-line-hero__visual {
    min-height: 420px;
    display: grid;
    place-items: center;
    position: relative;
    border: 1px solid rgba(18, 60, 102, .08);
    border-radius: 32px;
    background:
        radial-gradient(circle at 50% 30%, rgba(255,255,255,.98), rgba(255,255,255,.54) 42%, rgba(20,119,188,.14)),
        linear-gradient(145deg, #ffffff, #e5f5ff);
    box-shadow: 0 24px 68px rgba(18, 60, 102, .14);
}
.product-line-hero__visual::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(202, 161, 90, .34);
    border-radius: 24px;
}
.product-line-hero__visual img {
    position: relative;
    z-index: 1;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 22px 18px rgba(7,29,54,.16));
}
.product-line-highlights {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.product-line-highlights article {
    min-height: 94px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(18, 60, 102, .09);
    border-radius: 22px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 14px 34px rgba(18, 60, 102, .08);
}
.product-line-highlights span {
    width: 13px;
    height: 42px;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--gold-2), var(--blue));
}
.product-line-highlights strong {
    color: var(--navy);
    font-size: .92rem;
}
.product-line-list {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    padding: 20px 0 54px;
}
.product-line-list__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}
.product-line-list__header h2 {
    margin: 4px 0 0;
    color: var(--navy);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
}
.product-line-list__header p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}
.product-line-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.product-line-card {
    min-height: 190px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(18, 60, 102, .10);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(18, 60, 102, .08);
}
.product-line-card::after {
    content: "";
    position: absolute;
    right: -24px;
    bottom: -28px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(20, 119, 188, .08);
}
.product-line-card__number {
    color: var(--gold);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .18em;
}
.product-line-card h3 {
    margin: 18px 0 10px;
    color: var(--navy);
    font-size: 1.18rem;
    font-weight: 900;
}
.product-line-card p {
    margin: 0;
    color: #5f7286;
    font-size: .84rem;
    line-height: 1.55;
}
.product-line-card--catalog {
    min-height: 325px;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}
.product-line-card__visual {
    height: 142px;
    margin: -6px -6px 14px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 10px 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #edf8ff);
}
.product-line-card--catalog .product-line-card__visual img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 122px;
    object-fit: contain;
    padding: 0;
}
.product-line-card__visual span { color: var(--blue); font-size: 2rem; font-weight: 900; }
.product-line-card__meta { color: var(--blue); font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.product-line-card--catalog h3 { margin-top: 8px; }
.product-line-card__action { margin-top: auto; padding-top: 16px; color: var(--navy); font-size: .76rem; text-transform: uppercase; }
.product-line-cta {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto 58px;
    padding: clamp(24px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 0, rgba(227, 191, 118, .28), transparent 18rem),
        linear-gradient(135deg, #082846, #123c66);
    box-shadow: 0 24px 70px rgba(8, 40, 70, .18);
}
.product-line-cta .page-kicker,
.product-line-cta h2,
.product-line-cta p { color: #fff; }
.product-line-cta h2 {
    margin: 4px 0 6px;
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    font-family: 'Cormorant Garamond', serif;
}
.product-line-cta p {
    max-width: 620px;
    margin: 0;
    color: rgba(255,255,255,.82);
}
.product-line-page--drinks .product-line-hero__visual {
    background:
        radial-gradient(circle at 50% 30%, rgba(255,255,255,.94), rgba(255,255,255,.35) 42%, rgba(17,24,39,.18)),
        linear-gradient(145deg, #f8fafc, #dbe4ef);
}
.product-line-page--private .product-line-highlights span {
    background: linear-gradient(180deg, #caa15a, #082846);
}

/* Refinamento visual: tons mais leves, cantos suaves e tipografia menos rigida. */
.contact-reference__panel {
    background:
        radial-gradient(circle at 14% 0%, rgba(94,181,202,.24), transparent 38%),
        linear-gradient(155deg, #28677a, #194b60 62%, #123c50);
}
.jobs-cta {
    background:
        radial-gradient(circle at 14% 0%, rgba(39, 127, 188, .18), transparent 34%),
        linear-gradient(180deg, #123c66, #082846);
}

.btn-primary,
.btn-secondary,
.button-primary,
.button-secondary,
.header-catalog,
.header-access,
.line-box a,
.product-card__action,
.jobs-grid a,
.form-submit {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .02em;
}

.line-box,
.feature-card,
.home-split-cards a,
.product-card,
.catalog-empty,
.jobs-grid article,
.product-stage,
.product-specs article {
    border-radius: 18px;
}

.line-box,
.product-card,
.jobs-grid article {
    box-shadow: 0 12px 30px rgba(18, 60, 102, .08);
}

.line-box h3,
.product-card h3,
.jobs-grid h2 {
    font-weight: 800;
    letter-spacing: -.018em;
    text-transform: none;
}

.line-box h3 {
    color: #176faa;
}

.line-box--drinks h3 {
    color: #273447;
}

.page-hero h1,
.contact-reference__panel h1,
.jobs-title h1,
.product-detail h1,
.not-found-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: -.018em;
    text-transform: none;
}

.catalog-filter {
    border-radius: 999px;
    color: #42546c;
    font-weight: 800;
    background: #f8fbff;
}

.catalog-filter.is-active,
.catalog-filter:hover {
    background: linear-gradient(180deg, #123c66, #0d3155);
}

.catalog-search,
.form-field input,
.form-field select,
.form-field textarea {
    border-radius: 12px;
}

.home-page,
.line-grid,
.feature-row {
    background: linear-gradient(180deg, #f4fbff, #edf7ff);
}

.privacy-page {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
    padding: 70px 0;
}

.privacy-page__header {
    margin-bottom: 26px;
    padding: 34px;
    border: 1px solid rgba(12, 52, 91, .12);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(227, 191, 118, .24), transparent 24rem),
        linear-gradient(135deg, #f8fcff, #edf7ff);
    box-shadow: 0 18px 60px rgba(12, 52, 91, .10);
}

.privacy-page__header h1 {
    max-width: 760px;
    margin: 10px 0;
    color: #0d3155;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 6vw, 4.4rem);
    line-height: .98;
}

.privacy-page__header p,
.privacy-page__header small {
    color: #58738d;
}

.privacy-card {
    margin-bottom: 16px;
    padding: 26px;
    border: 1px solid rgba(12, 52, 91, .12);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(12, 52, 91, .07);
}

.privacy-card h2 {
    margin: 0 0 12px;
    color: #123c66;
    font-size: 1.25rem;
    font-weight: 800;
}

.privacy-card p,
.privacy-card li {
    color: #465f77;
    line-height: 1.72;
}

.privacy-card ul {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding-left: 20px;
}

.privacy-card a {
    color: #0d6efd;
    font-weight: 800;
}

.privacy-card--contact {
    border-color: rgba(227, 191, 118, .42);
    background: linear-gradient(135deg, #fff, #fff8e8);
}

.site-footer__social a,
.contact-info-list strong {
    border-color: rgba(227, 191, 118, .78);
}

.home-representative-locator {
    width: calc(100% - 48px);
    max-width: 1480px;
    margin: 62px auto;
    padding: 48px;
    border: 1px solid rgba(32,88,115,.13);
    border-radius: 30px;
    background:
        radial-gradient(circle at 96% 0%, rgba(199,155,66,.16), transparent 28%),
        linear-gradient(145deg, #f9fbfb, #eef5f4);
    box-shadow: 0 24px 64px rgba(20,57,78,.1);
    scroll-margin-top: 104px;
}
.home-representative-locator__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 30px;
}
.home-representative-locator__heading h2 {
    max-width: 780px;
    margin: 5px 0 8px;
    color: var(--navy-2);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 4vw, 3.65rem);
    font-weight: 700;
    line-height: .98;
}
.home-representative-locator__heading p {
    max-width: 720px;
    margin: 0;
    color: #526878;
    font-size: .96rem;
}
.home-representative-locator__summary {
    min-width: 190px;
    display: grid;
    padding: 17px 20px;
    border: 1px solid rgba(199,155,66,.3);
    border-radius: 16px;
    background: rgba(255,255,255,.82);
    text-align: right;
}
.home-representative-locator__summary strong {
    color: var(--navy-2);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    line-height: .9;
}
.home-representative-locator__summary span { margin-top: 6px; color: #6d7883; font-size: .69rem; font-weight: 800; text-transform: uppercase; }
.home-representative-locator__grid { display: grid; grid-template-columns: minmax(0,1.7fr) minmax(320px,.8fr); gap: 24px; }
.representative-map-card,
.representative-locator-panel { border: 1px solid rgba(32,88,115,.14); border-radius: 22px; background: #fff; box-shadow: 0 16px 36px rgba(20,57,78,.08); }
.representative-map-card { min-width: 0; overflow: hidden; }
.representative-map-card__toolbar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid #e1e9ec;
}
.representative-map-card__toolbar div { display: grid; }
.representative-map-card__toolbar span { color: #7b8b96; font-size: .66rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.representative-map-card__toolbar strong { color: var(--navy-2); font-size: 1rem; }
.representative-map-card__toolbar button {
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid #cddce1;
    border-radius: 999px;
    color: #24586d;
    background: #fff;
    font-size: .72rem;
    font-weight: 800;
}
.representative-map-card__toolbar button:hover { border-color: #247c88; color: #fff; background: #247c88; }
#home-representatives-map { position: relative; z-index: 1; width: 100%; height: 570px; background: #dce8ea; }
#home-representatives-map .leaflet-control-zoom a { color: #24586d; }
#home-representatives-map .leaflet-control-attribution { font-size: 9px; }
.representative-map-loading {
    position: absolute;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 12px;
    color: #315d6c;
    background: rgba(239,246,246,.9);
    transition: opacity .2s ease;
}
.representative-map-loading.is-hidden { opacity: 0; pointer-events: none; }
.representative-map-loading span,
.representative-locator-spinner { width: 30px; height: 30px; border: 3px solid #c6dadd; border-top-color: #247c88; border-radius: 50%; animation: representative-locator-spin .8s linear infinite; }
@keyframes representative-locator-spin { to { transform: rotate(360deg); } }
.representative-map-error {
    position: absolute;
    z-index: 950;
    inset: 50% auto auto 50%;
    width: min(360px, calc(100% - 32px));
    display: grid;
    gap: 5px;
    padding: 20px;
    border-radius: 16px;
    color: #6d2530;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 40px rgba(20,57,78,.2);
    text-align: center;
    transform: translate(-50%,-50%);
}
.representative-count-pin-wrapper { border: 0!important; background: transparent!important; }
.representative-count-pin {
    position: relative;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 8px;
    color: #fff;
    background: #173f55;
    box-shadow: 0 8px 18px rgba(5,31,45,.32);
    transform: rotate(-45deg);
}
.representative-count-pin span { font-size: .76rem; font-weight: 900; transform: rotate(45deg); }
.representative-count-pin.is-city { width: 32px; height: 32px; border-width: 2px; background: #c08e35; }
.representative-count-pin.is-city span { font-size: .66rem; }
.representative-count-pin.is-zero { opacity: .58; background: #8798a4; }
.representative-locator-panel { display: flex; flex-direction: column; padding: 24px; }
.representative-locator-panel__intro { margin-bottom: 20px; }
.representative-locator-panel__intro > span { color: #b18130; font-size: .67rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.representative-locator-panel__intro h3 { margin: 4px 0 5px; color: var(--navy-2); font-family: 'Cormorant Garamond', serif; font-size: 1.85rem; font-weight: 700; }
.representative-locator-panel__intro p { margin: 0; color: #6c7b86; font-size: .78rem; }
.representative-locator-field { display: grid; gap: 7px; margin-bottom: 14px; }
.representative-locator-field label { color: #2c5262; font-size: .7rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.representative-locator-field select {
    width: 100%;
    min-height: 48px;
    padding: 0 42px 0 14px;
    border: 1px solid #cfdbdf;
    border-radius: 12px;
    color: #173f55;
    background-color: #f9fbfb;
    font-size: .82rem;
    font-weight: 700;
}
.representative-locator-field select:focus { border-color: #247c88; outline: 3px solid rgba(36,124,136,.12); }
.representative-locator-field select:disabled { color: #89959d; background-color: #f0f3f4; }
.representative-locator-results {
    min-height: 176px;
    max-height: 330px;
    display: grid;
    align-content: start;
    gap: 10px;
    margin-top: 4px;
    padding-right: 3px;
    overflow-y: auto;
}
.representative-locator-empty { min-height: 176px; display: grid; place-content: center; justify-items: center; gap: 7px; padding: 24px 14px; border: 1px dashed #ccdadd; border-radius: 15px; color: #70818b; text-align: center; }
.representative-locator-empty > i { color: #b78b3e; font-size: 1.6rem; }
.representative-locator-empty strong { color: #315d6c; font-size: .82rem; }
.representative-locator-empty span:not(.representative-locator-spinner) { max-width: 260px; font-size: .71rem; line-height: 1.5; }
.representative-locator-empty.is-error > i { color: #a83845; }
.representative-contact-card { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 11px; padding: 13px; border: 1px solid #dce6e8; border-radius: 15px; background: linear-gradient(145deg,#fff,#f7faf9); }
.representative-contact-card__avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg,#173f55,#318995); }
.representative-contact-card__body { min-width: 0; }
.representative-contact-card__body > span { display: block; color: #a8782d; font-size: .58rem; font-weight: 900; text-transform: uppercase; }
.representative-contact-card h4 { margin: 2px 0; color: #173f55; font-size: .88rem; font-weight: 900; }
.representative-contact-card p { margin: 0 0 4px; color: #526d79; font-size: .69rem; }
.representative-contact-card small { display: block; margin-top: 3px; color: #788890; font-size: .62rem; line-height: 1.35; }
.representative-contact-card__actions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.representative-contact-card__actions a { min-height: 30px; display: inline-flex; align-items: center; gap: 5px; padding: 0 10px; border: 1px solid #c9d8dc; border-radius: 999px; color: #24586d; background: #fff; font-size: .62rem; font-weight: 900; }
.representative-contact-card__actions a:hover { color: #fff; background: #24586d; }
.representative-contact-card__actions .is-whatsapp { border-color: #1e9b5a; color: #147b45; }
.representative-contact-card__actions .is-whatsapp:hover { color: #fff; background: #1e9b5a; }
.representative-locator-help { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: auto; padding-top: 16px; color: #9b7029; font-size: .68rem; font-weight: 900; text-align: center; }

@media (max-width: 1199.98px) {
    .home-representative-locator { padding: 34px; }
    .home-representative-locator__grid { grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); }
    #home-representatives-map { height: 520px; }
    .site-utility-bar { padding-right: 22px; padding-left: 22px; }
    .site-header { padding: 10px 22px; }
    .site-header__inner { min-height: auto; }
    .site-header__collapse { padding-top: 14px; }
    .site-nav { width: 100%; flex-direction: column; align-items: stretch; gap: 0; }
    .site-nav a { padding: 11px 0; }
    .site-nav a::after { bottom: 3px; width: 42px; right: auto; }
    .site-nav__dropdown { width: 100%; }
    .site-nav .site-nav__menu { position: static!important; min-width: 0; margin: 0 0 8px; transform: none!important; box-shadow: inset 3px 0 0 var(--gold), 0 8px 20px rgba(3,19,38,.12); }
    .site-header__tools {
        width: 100%;
        justify-content: space-between;
        padding-top: 14px;
        border-top: 1px solid rgba(255,255,255,.14);
    }
    .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .home-catalog-featured .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .site-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .home-representative-locator { width: calc(100% - 32px); margin: 42px auto; padding: 22px 16px; border-radius: 22px; }
    .home-representative-locator__heading { align-items: flex-start; flex-direction: column; gap: 18px; margin-bottom: 22px; }
    .home-representative-locator__heading h2 { font-size: 2.35rem; }
    .home-representative-locator__summary { min-width: 0; width: 100%; text-align: left; }
    .home-representative-locator__grid { grid-template-columns: 1fr; }
    .representative-locator-panel { order: -1; padding: 20px; }
    .representative-locator-results { max-height: 390px; }
    #home-representatives-map { height: 390px; }
    .representative-map-card__toolbar { align-items: flex-start; flex-direction: column; }
    .representative-map-card__toolbar button { width: 100%; }
    .site-utility-bar { justify-content: center; text-align: center; }
    .site-utility-bar nav { display: none; }
    .brand img { width: 104px; height: 42px; }
    .site-header__tools { flex-direction: column; align-items: stretch; }
    .site-language-nav { display: flex; justify-content: center; }
    .header-actions { width: 100%; }
    .header-catalog,
    .header-access { flex: 1; }
    .home-banner { min-height: 420px; }
    .home-banner__overlay {
        width: auto;
        min-height: 420px;
        margin: 0;
        padding: 32px 20px 120px;
        justify-content: flex-end;
    }
    .home-banner__overlay::before {
        inset: auto 0 0;
        height: 70%;
        background: linear-gradient(0deg, rgba(242,248,255,.95), transparent);
    }
    .home-banner__overlay h1 { font-size: 2.75rem; }
    .home-banner__actions { flex-direction: column; align-items: stretch; }
    .line-grid,
    .feature-row { padding-right: 16px; padding-left: 16px; }
    .line-box { grid-template-columns: 1fr .84fr; min-height: 208px; padding: 18px; }
    .line-box h3 { font-size: 1.35rem; }
    .home-split-cards { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: repeat(2, minmax(0,1fr)); padding: 32px 22px 18px; gap: 28px 20px; }
    .site-footer__brand,.site-footer__bottom { grid-column: 1 / -1; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; }
    .catalog-toolbar,
    .contact-reference,
    .product-detail-page,
    .product-specs,
    .form-grid,
    .jobs-grid { grid-template-columns: 1fr; }
    .product-line-hero,
    .product-line-highlights,
    .product-line-grid,
    .product-line-list__header,
    .product-line-cta { grid-template-columns: 1fr; }
    .product-line-hero {
        width: calc(100% - 32px);
        padding-top: 34px;
    }
    .product-line-hero__visual {
        min-height: 280px;
        border-radius: 22px;
    }
    .product-line-hero__visual img { max-height: 230px; }
    .product-line-highlights,
    .product-line-list,
    .product-line-cta { width: calc(100% - 32px); }
    .product-line-list__header {
        display: grid;
        align-items: start;
    }
    .product-line-grid { gap: 12px; }
    .product-line-cta {
        display: grid;
        border-radius: 22px;
    }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-catalog-featured__heading { align-items: flex-start; flex-direction: column; }
    .home-catalog-featured .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .home-catalog-featured .product-card { min-height: 280px; padding: 12px; }
    .home-catalog-featured .product-card__visual { height: 180px; }
    .home-catalog-featured .product-card__visual img { max-height: 170px; }
    .catalog-panel,
    .jobs-grid,
    .product-detail-page { width: calc(100% - 32px); }
    .contact-reference__form { padding: 28px 18px 36px; }
    .contact-form { padding: 26px 20px; border-radius: 20px; }
    .contact-form__intro { margin-bottom: 22px; }
    .jobs-cta { display: grid; padding: 22px; }
    .jobs-cta .button-primary { min-width: 0; }
    .privacy-page { padding: 36px 0; }
    .privacy-page__header,
    .privacy-card { padding: 22px; border-radius: 18px; }
}

@media (max-width: 480px) {
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__brand,.site-footer__bottom { grid-column: auto; }
}
