:root {
    --green-950: #173129;
    --green-900: #214238;
    --green-800: #2d5649;
    --green-700: #3f6b5d;
    --green-500: #6f9a8a;
    --green-100: #e8f1ec;
    --green-50: #f5f8f6;
    --sand-200: #ece1d2;
    --sand-100: #f5efe7;
    --cream: #fbf9f5;
    --white: #ffffff;
    --text: #27322e;
    --text-soft: #5d6b65;
    --border: rgba(33, 66, 56, 0.12);
    --gold: #b99362;
    --shadow-sm: 0 10px 28px rgba(23, 49, 41, 0.07);
    --shadow-md: 0 18px 48px rgba(23, 49, 41, 0.1);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(111, 154, 138, 0.08), transparent 34%),
        linear-gradient(180deg, #fcfbf8 0%, var(--cream) 100%);
}

body,
button,
input,
select,
textarea {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

main {
    overflow: clip;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.7rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--green-950);
}

p {
    margin: 0 0 0.95rem;
}

ul {
    margin: 0;
    padding: 0;
}

:focus-visible {
    outline: 3px solid rgba(63, 107, 93, 0.18);
    outline-offset: 3px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(33, 66, 56, 0.08);
    background: rgba(251, 249, 245, 0.92);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 74px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(33, 66, 56, 0.16);
}

.brand-lockup {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.brand-mark {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.55rem;
    line-height: 0.95;
    letter-spacing: 0.16em;
    color: var(--green-900);
}

.brand-sub {
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.main-nav a {
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-soft);
    transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green-900);
    background: rgba(63, 107, 93, 0.09);
}

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

.icon-link {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--green-800);
    background: rgba(63, 107, 93, 0.07);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.icon-link:hover {
    transform: translateY(-1px);
    background: rgba(63, 107, 93, 0.14);
    color: var(--green-950);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: var(--green-900);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.78rem 1.18rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    box-shadow: 0 14px 28px rgba(33, 66, 56, 0.18);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-900), var(--green-800));
}

.btn-outline {
    color: var(--green-900);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(33, 66, 56, 0.16);
}

.btn-outline:hover {
    border-color: rgba(33, 66, 56, 0.3);
    background: rgba(255, 255, 255, 1);
}

.btn-whatsapp {
    color: var(--white);
    background: linear-gradient(135deg, #1ba951, #25d366);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.25);
}

.btn-sm {
    min-height: 38px;
    padding: 0.62rem 0.92rem;
    font-size: 0.86rem;
}

.btn-lg {
    min-height: 50px;
    padding: 0.95rem 1.4rem;
}

.hero {
    padding: 3.75rem 0 3rem;
    background:
        radial-gradient(circle at right top, rgba(185, 147, 98, 0.2), transparent 28%),
        linear-gradient(180deg, #f7f2ea 0%, rgba(245, 248, 246, 0.8) 42%, rgba(251, 249, 245, 0.85) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: 2.5rem;
    align-items: center;
}

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

.eyebrow {
    margin-bottom: 0.6rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-copy h1 {
    margin-bottom: 0.9rem;
    font-size: clamp(2.75rem, 5vw, 4.35rem);
}

.lead {
    max-width: 41rem;
    font-size: 1.02rem;
    line-height: 1.72;
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.hero-visual {
    min-height: 420px;
}

.hero-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    min-height: 420px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    color: var(--white);
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(145deg, rgba(33, 66, 56, 0.98), rgba(63, 107, 93, 0.92) 58%, rgba(111, 154, 138, 0.88));
    box-shadow: var(--shadow-md);
}

.hero-panel::before,
.hero-panel::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-panel::before {
    width: 220px;
    height: 220px;
    top: -72px;
    right: -54px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.hero-panel::after {
    width: 180px;
    height: 180px;
    bottom: -72px;
    left: -48px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 72%);
}

.hero-panel-card {
    position: relative;
    z-index: 1;
    max-width: none;
    padding: 1.45rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-panel-label {
    display: inline-flex;
    margin-bottom: 0.75rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-panel-card h2 {
    margin-bottom: 0.55rem;
    font-size: 2.1rem;
    color: var(--white);
}

.hero-panel-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
}

.hero-pills {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.15rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.56rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-metrics {
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: auto;
}

.hero-metric {
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-metric strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.98rem;
}

.hero-metric span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
    line-height: 1.5;
}

.section {
    padding: 3.45rem 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(232, 241, 236, 0.62), rgba(245, 248, 246, 0.3));
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 246, 0.78));
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-head.center {
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.section-head h2,
.page-hero h1 {
    font-size: clamp(2rem, 3vw, 2.75rem);
}

.section-text {
    max-width: 40rem;
    color: var(--text-soft);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--green-800);
}

.text-link::after {
    content: "\2192";
    transition: transform 0.2s ease;
}

.text-link:hover::after {
    transform: translateX(2px);
}

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.feature-card,
.about-card,
.contact-card,
.testimonial-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(33, 66, 56, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.35rem;
}

.feature-card {
    display: grid;
    gap: 0.75rem;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(185, 147, 98, 0.14);
    color: var(--gold);
    font-size: 1rem;
}

.feature-card h3 {
    margin-bottom: 0;
    font-size: 1.4rem;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.feature-list li {
    position: relative;
    padding-left: 1rem;
    color: var(--text-soft);
}

.feature-list li::before {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-700);
}

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

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

.catalog-card {
    height: 100%;
    border: 1px solid rgba(33, 66, 56, 0.08);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.catalog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(33, 66, 56, 0.15);
    box-shadow: var(--shadow-md);
}

.catalog-card-link {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.catalog-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    padding: 1.05rem;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 32%),
        linear-gradient(160deg, #eef4f0, #f5ede4);
}

.catalog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.catalog-card-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: linear-gradient(135deg, #dce8e2, #f3ebe1);
}

.catalog-card-badge {
    position: absolute;
    top: 1.05rem;
    left: 1.05rem;
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.82rem;
    border: 1px solid rgba(33, 66, 56, 0.06);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(10px);
    color: var(--green-900);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.catalog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.15rem 1.15rem 1rem;
}

.catalog-card-category {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.catalog-card-body h3 {
    margin-bottom: 0.1rem;
    font-size: 1.45rem;
}

.catalog-card-body p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.catalog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-top: auto;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(33, 66, 56, 0.08);
}

.price {
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--green-800);
}

.link-arrow {
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--green-700);
}

.integral-banner {
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 24%),
        linear-gradient(135deg, rgba(33, 66, 56, 0.98), rgba(63, 107, 93, 0.92));
}

.integral-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 1.5rem;
    align-items: start;
}

.integral-banner .eyebrow,
.integral-banner .section-text {
    color: rgba(255, 255, 255, 0.8);
}

.integral-banner h2 {
    color: var(--white);
}

.about-founder {
    align-items: stretch;
}

.about-founder-visual {
    min-height: 330px;
    border: 1px solid rgba(33, 66, 56, 0.08);
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.68), transparent 35%),
        linear-gradient(160deg, #dae7e0, #f2e6d8);
    box-shadow: var(--shadow-sm);
}

.about-founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    max-width: 18rem;
    margin: 1.4rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(33, 66, 56, 0.08);
}

.about-founder-badge img {
    width: 48px;
    height: 48px;
}

.about-founder-badge strong {
    display: block;
    margin-bottom: 0.12rem;
    font-size: 0.98rem;
    color: var(--green-900);
}

.about-founder-badge span {
    display: block;
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--text-soft);
}

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

.about-card h2 {
    font-size: 1.55rem;
}

.about-card p {
    margin-bottom: 0;
    color: var(--text-soft);
}

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

.testimonial-card p {
    margin-bottom: 0;
    font-size: 0.96rem;
    font-style: italic;
    color: var(--text-soft);
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-top: 1rem;
}

.testimonial-card footer strong {
    color: var(--green-900);
}

.testimonial-card footer span {
    font-size: 0.86rem;
    color: var(--text-soft);
}

.cta-section {
    padding-top: 2.4rem;
    padding-bottom: 4rem;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(33, 66, 56, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.contact-strip {
    padding-top: 0;
}

.contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.65rem;
    border: 1px solid rgba(33, 66, 56, 0.08);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(232, 241, 236, 0.8), rgba(245, 239, 231, 0.78));
}

.contact-strip-inner h3 {
    margin-bottom: 0.35rem;
    font-size: 1.55rem;
}

.contact-strip-inner p {
    margin-bottom: 0;
    color: var(--text-soft);
}

.contact-strip-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.page-hero {
    padding: 3rem 0 1.35rem;
}

.page-hero .lead {
    max-width: 36rem;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.4rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(33, 66, 56, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-chip.active,
.filter-chip:hover {
    background: var(--green-800);
    color: var(--white);
    border-color: var(--green-800);
}

.detail-page {
    position: relative;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.detail-gallery,
.detail-content {
    min-width: 0;
}

.detail-main-image-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    padding: 1rem;
    border: 1px solid rgba(33, 66, 56, 0.08);
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.84), transparent 34%),
        linear-gradient(160deg, #eef4f0, #f5ede4);
    box-shadow: var(--shadow-sm);
}

.detail-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.detail-main-image--placeholder {
    border-radius: 18px;
    background: linear-gradient(135deg, #dce8e2, #f3ebe1);
}

.detail-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.9rem;
}

.detail-thumbs img {
    width: 92px;
    height: 92px;
    padding: 0.45rem;
    object-fit: contain;
    border: 1px solid rgba(33, 66, 56, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.detail-labels {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem 0.9rem;
    margin-bottom: 0.8rem;
}

.detail-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.8rem;
    border-radius: 999px;
    background: rgba(63, 107, 93, 0.1);
    color: var(--green-800);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-category {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.detail-content h1 {
    margin-bottom: 0.7rem;
    font-size: clamp(2.3rem, 4vw, 3.25rem);
}

.detail-price {
    margin: 1rem 0 1.25rem;
    font-size: 1.42rem;
    font-weight: 800;
    color: var(--green-800);
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.35rem 0;
}

.detail-meta,
.detail-description,
.detail-variants {
    margin-top: 1.4rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(33, 66, 56, 0.08);
}

.detail-description p,
.detail-variants li {
    color: var(--text-soft);
}

.detail-variants ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

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

.detail-meta div {
    min-width: 0;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(33, 66, 56, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
}

.detail-meta strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-800);
}

.detail-meta p {
    margin-bottom: 0;
    color: var(--text-soft);
    overflow-wrap: anywhere;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    background: rgba(63, 107, 93, 0.09);
    color: var(--green-800);
    font-size: 0.82rem;
    font-weight: 700;
}

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

.contact-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.contact-card-soft {
    background: linear-gradient(135deg, rgba(232, 241, 236, 0.6), rgba(245, 248, 246, 0.3));
    box-shadow: none;
}

.contact-list {
    list-style: none;
    margin: 0 0 1.2rem;
}

.contact-list li {
    margin-bottom: 0.55rem;
    color: var(--text-soft);
}

.contact-list strong {
    color: var(--green-900);
}

.site-footer {
    position: relative;
    z-index: 2;
    margin-top: 1.6rem;
    padding: 2.6rem 0 1.3rem;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 26%),
        linear-gradient(180deg, var(--green-950) 0%, #12271f 100%);
}

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

.footer-brand {
    margin-bottom: 1rem;
}

.footer-text,
.footer-links {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.42rem;
}

.footer-links a,
.footer-social a {
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.95rem;
}

.floating-whatsapp {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 60;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, #1ba951, #25d366);
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.3);
}

.empty-state {
    padding: 2.2rem 1.25rem;
    border: 1px solid rgba(33, 66, 56, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
    color: var(--text-soft);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 1080px) {
    .hero-grid,
    .split,
    .integral-inner,
    .detail-grid,
    .about-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-metrics {
        grid-template-columns: 1fr;
        margin-top: 0.9rem;
    }
}

@media (max-width: 960px) {
    .header-inner {
        flex-wrap: wrap;
        min-height: 70px;
        padding: 0.65rem 0;
    }

    .nav-toggle {
        display: block;
        order: 3;
        margin-left: auto;
    }

    .header-actions {
        order: 2;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        order: 4;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.9rem 1rem 1rem;
        border-bottom: 1px solid rgba(33, 66, 56, 0.08);
        background: rgba(251, 249, 245, 0.98);
        box-shadow: 0 22px 38px rgba(23, 49, 41, 0.08);
    }

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

    .main-nav a {
        width: 100%;
        border-radius: 16px;
    }

    .hero {
        padding-top: 3rem;
    }

    .cta-box,
    .contact-strip-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-grid,
    .catalog-grid-compact,
    .detail-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .brand-mark {
        font-size: 1.35rem;
    }

    .brand-sub {
        font-size: 0.62rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 10vw, 3.1rem);
    }

    .section {
        padding: 2.8rem 0;
    }

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

    .hero-panel {
        min-height: auto;
    }

    .page-hero {
        padding-top: 2.4rem;
    }
}

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

    .brand-icon {
        width: 44px;
        height: 44px;
    }

    .header-actions .btn-sm {
        display: none;
    }

    .hero-actions,
    .detail-actions,
    .contact-strip-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .btn-sm,
    .btn-lg {
        width: 100%;
    }

    .detail-thumbs img {
        width: calc(33.333% - 0.45rem);
        height: 84px;
    }

    .floating-whatsapp {
        right: 0.85rem;
        bottom: 0.85rem;
        width: 52px;
        height: 52px;
    }
}
