@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: #123c66;
    --navy-2: #082846;
    --blue: #1477bc;
    --gold: #caa15a;
    --gold-2: #e3bf76;
    --paper: #f5fbff;
    --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; }
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: hidden;
    border: 0;
    border-radius: 0;
    background: var(--paper);
    box-shadow: none;
}

.site-header {
    min-height: 64px;
    padding: 0 clamp(28px, 5vw, 78px);
    background:
        radial-gradient(circle at 12% 0%, rgba(39, 127, 188, .24), transparent 34%),
        linear-gradient(180deg, #123c66, #082846);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.site-header__inner { min-height: 64px; padding: 0; gap: 22px; }
.site-header__collapse { align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; margin: 0; padding: 0; }
.brand img { width: 118px; height: 46px; object-fit: contain; }
.site-menu-toggle { border: 1px solid rgba(255,255,255,.35); border-radius: 9px; }
.site-menu-toggle:focus { box-shadow: 0 0 0 .2rem rgba(201,155,63,.25); }
.navbar-toggler-icon { filter: invert(1); }
.site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(18px, 2.1vw, 38px);
    color: var(--white);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .01em;
}
.site-nav a {
    position: relative;
    padding: 24px 0 22px;
    color: rgba(255,255,255,.96);
}
.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: var(--white); }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }
.site-header__tools { display: flex; align-items: center; gap: 14px; }
.site-country-nav { display: flex; align-items: center; gap: 6px; }
.site-country-nav a {
    width: 24px;
    height: 24px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255,255,255,.28);
}
.site-country-nav__flag,
.site-country-nav__flag img { width: 100%; height: 100%; object-fit: cover; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-catalog,
.header-access {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 999px;
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .025em;
    text-transform: uppercase;
}
.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(--white);
    border: 1px solid var(--gold);
    background: transparent;
}

.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: linear-gradient(180deg, #08213d, #031326);
}
.site-footer__grid {
    padding: 28px clamp(44px, 6vw, 108px) 18px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr .9fr;
    gap: 34px;
}
.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: .82rem;
}
.site-footer h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}
.site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 18px;
    color: rgba(255,255,255,.88);
    font-size: .78rem;
}
.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 small {
    grid-column: 1 / -1;
    margin-top: 8px;
    color: rgba(255,255,255,.72);
    font-size: .72rem;
}

.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; }
.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(90deg, transparent 0 80%, rgba(255,255,255,.86)),
        url('../img/sections/attiva-catalog-water-header.png') right top / 42% 100% no-repeat,
        #fff;
}
.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: 300px;
    margin: 14px 0 26px;
    color: rgba(255,255,255,.88);
    font-size: .88rem;
    line-height: 1.6;
}
.contact-info-list { display: grid; gap: 14px; }
.contact-info-list article {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: center;
    color: rgba(255,255,255,.92);
    font-size: .82rem;
}
.contact-info-list strong {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold-2);
}
.contact-reference__form {
    padding: clamp(34px, 5vw, 64px);
}
.contact-form {
    width: min(760px, 100%);
    margin: 0 auto;
}
.contact-form h2 { display: none; }
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.form-field {
    display: grid;
    gap: 6px;
    color: #526174;
    font-size: .72rem;
    font-weight: 800;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 38px;
    border: 1px solid #d9e1eb;
    border-radius: 3px;
    padding: 9px 12px;
    background: #fff;
}
.form-field textarea { min-height: 112px; resize: vertical; }
.form-field--wide { grid-column: 1 / -1; }
.form-submit {
    width: 100%;
    min-height: 42px;
    margin-top: 16px;
    border: 0;
    border-radius: 3px;
    color: var(--white);
    background: linear-gradient(180deg, var(--gold-2), #b98729);
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
}
.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;
}

/* Refinamento visual: tons mais leves, cantos suaves e tipografia menos rigida. */
.site-header,
.site-footer,
.contact-reference__panel,
.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);
}

@media (max-width: 1199.98px) {
    .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-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)); }
    .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .brand img { width: 104px; height: 42px; }
    .site-header__tools { flex-direction: column; align-items: stretch; }
    .site-country-nav { 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: 1fr; padding: 28px 22px 18px; }
    .catalog-toolbar,
    .contact-reference,
    .product-detail-page,
    .product-specs,
    .form-grid,
    .jobs-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .catalog-panel,
    .jobs-grid,
    .product-detail-page { width: calc(100% - 32px); }
    .contact-reference__form { padding: 28px 18px 36px; }
    .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; }
}
