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

:root {
    --bg: #f3efe8;
    --surface: #ffffff;
    --surface-2: #efe8de;
    --surface-dark: #0f1f19;
    --surface-dark-2: #162c22;
    --text: #13231b;
    --text-soft: #52615b;
    --text-light: #e9f2ed;
    --border: rgba(19, 35, 27, 0.1);
    --border-strong: rgba(19, 35, 27, 0.18);
    --accent: #d12123;
    --accent-dark: #a3191b;
    --green: #25d366;
    --green-dark: #128c7e;
    --shadow: 0 22px 45px rgba(9, 19, 14, 0.12);
    --shadow-soft: 0 12px 25px rgba(9, 19, 14, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: min(1180px, calc(100vw - 32px));
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

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

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

button {
    cursor: pointer;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-main {
    min-height: 60vh;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    z-index: 30;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header-home {
    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-header-page {
    background: rgba(15, 31, 25, 0.56);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
    background: rgba(245, 240, 233, 0.68);
    border-bottom: 1px solid rgba(19, 35, 27, 0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 24px rgba(10, 20, 15, 0.08);
}

.site-header-detail {
    background: rgba(245, 240, 233, 0.68);
    border-bottom: 1px solid rgba(19, 35, 27, 0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 24px rgba(10, 20, 15, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 20px;
    transition: min-height 0.25s ease;
}

.header-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 180px;
    transition: min-width 0.25s ease;
}

.brand-logo {
    height: auto;
    width: 190px;
    transition: opacity 0.25s ease, width 0.25s ease;
}

.site-header.is-scrolled .header-inner {
    min-height: 68px;
}

.site-header.is-scrolled .header-brand {
    min-width: 133px;
}

.site-header.is-scrolled .brand-logo {
    width: 133px;
}

.brand-logo-dark,
.site-header-home.is-scrolled .brand-logo-light,
.site-header.is-scrolled .brand-logo-light,
.site-header-detail .brand-logo-light,
.site-header-page .brand-logo-light {
    opacity: 0;
    position: absolute;
    inset: 0 auto auto 0;
}

.site-header-home .brand-logo-light {
    opacity: 1;
    position: relative;
}

.site-header-page .brand-logo-dark {
    opacity: 1;
    position: relative;
}

.site-header-detail .brand-logo-dark {
    opacity: 1;
    position: relative;
}

.site-header.is-scrolled .brand-logo-dark {
    opacity: 1;
    position: relative;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-nav a {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-header-detail .header-nav a {
    color: rgba(19, 35, 27, 0.82);
}

.site-header.is-scrolled .header-nav a {
    color: rgba(19, 35, 27, 0.82);
}

.header-nav a:hover,
.header-nav a.active {
    background: rgba(209, 33, 35, 0.12);
    color: var(--accent);
    transform: translateY(-1px);
}

.site-header.is-scrolled .header-nav a:hover,
.site-header.is-scrolled .header-nav a.active {
    color: var(--accent);
}

.header-whatsapp {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff !important;
    font-size: 1.15rem;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.28);
}

.header-whatsapp:hover {
    background: var(--green-dark) !important;
    color: #fff !important;
}

.mobile-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.site-header-detail .mobile-nav-toggle {
    background: rgba(19, 35, 27, 0.06);
    color: var(--text);
}

.site-header.is-scrolled .mobile-nav-toggle {
    background: rgba(19, 35, 27, 0.06);
    color: var(--text);
}

.hero-video-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #08110d;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) brightness(0.65);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(6, 10, 8, 0.86) 0%, rgba(10, 24, 18, 0.7) 45%, rgba(209, 33, 35, 0.18) 100%),
        radial-gradient(circle at top right, rgba(209, 33, 35, 0.22), transparent 40%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 42px;
    padding: 160px 0 110px;
}

.hero-copy,
.hero-panel {
    position: relative;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #ff8d8e;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.split-copy h2,
.about-band-copy h2 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-copy h1 {
    max-width: 12ch;
    color: #fff;
    font-size: clamp(3.7rem, 4vw, 4.5rem);
}

.hero-copy p,
.page-hero p,
.section-heading p,
.split-copy p,
.about-band-copy p,
.surface-card p,
.product-body p,
.service-card p,
.info-card p,
.contact-form label span,
.contact-form textarea,
.contact-form input {
    color: rgba(233, 242, 237, 0.84);
}

.hero-copy > p {
    max-width: 650px;
    margin: 22px 0 0;
    font-size: 1.1rem;
}

.hero-actions,
.detail-actions,
.about-band-actions,
.section-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions {
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 18px 34px rgba(209, 33, 35, 0.22);
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(209, 33, 35, 0.05);
}

.page-hero.compact-hero .btn-secondary,
.section-services .btn-secondary,
.section-catalog .btn-secondary,
.section-location .btn-secondary,
.section-product-detail .btn-secondary {
    border-color: rgba(19, 35, 27, 0.18);
    background: transparent;
    color: var(--text);
}

.page-hero.compact-hero .btn-secondary:hover,
.section-services .btn-secondary:hover,
.section-catalog .btn-secondary:hover,
.section-location .btn-secondary:hover,
.section-product-detail .btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(209, 33, 35, 0.05);
}

.hero-checks {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 12px;
}

.hero-checks li,
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hero-checks i,
.feature-list i {
    margin-top: 4px;
    color: #97e7c1;
}

.hero-checks span {
    color: rgba(233, 242, 237, 0.9);
}

.hero-panel {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.hero-panel-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-panel-top img {
    width: 100%;
    object-fit: contain;
}

.hero-badge,
.detail-badge,
.stock-pill,
.product-condition {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-badge.is-highlight,
.product-condition.is-highlight {
    background: rgba(209, 33, 35, 0.14);
    color: var(--accent);
}

.detail-badge.is-promo,
.product-condition.is-promo {
    background: rgba(255, 138, 0, 0.16);
    color: #c76b00;
}

.detail-badge.is-hot,
.product-condition.is-hot {
    background: rgba(209, 33, 35, 0.18);
    color: #a3191b;
}

.detail-badge.is-stock,
.product-condition.is-stock {
    background: rgba(23, 122, 62, 0.16);
    color: #177a3e;
}

.detail-badge.is-neutral,
.product-condition.is-neutral {
    background: rgba(21, 36, 29, 0.08);
    color: #42514a;
}

.detail-badge.is-fresh,
.product-condition.is-fresh {
    background: rgba(19, 135, 117, 0.14);
    color: #0f7464;
}

.hero-badge {
    align-self: flex-start;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: -70px;
}

.stat-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(9, 17, 13, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-family: 'Sora', sans-serif;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: rgba(233, 242, 237, 0.82);
    font-size: 0.92rem;
}

.section {
    padding: 88px 0;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 34px;
}

.section-heading.centered,
.page-hero-content.centered {
    align-items: center;
    text-align: center;
}

.section-heading h2,
.split-copy h2,
.about-band-copy h2 {
    color: var(--text);
    font-size: clamp(2rem, 3vw, 3.35rem);
}

.section-heading p,
.split-copy p,
.about-band-copy p,
.surface-card p,
.service-card p,
.product-body p,
.page-hero p,
.contact-form label,
.contact-form input,
.contact-form textarea,
.catalog-meta span,
.empty-state p,
.value-item p,
.info-card p {
    color: var(--text-soft);
}

.card-grid {
    display: grid;
    gap: 22px;
}

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

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

.surface-card,
.service-card,
.info-card,
.contact-form,
.value-item,
.filter-panel,
.product-card,
.admin-table,
.detail-accordion details,
.gallery-stage,
.thumb-button,
.about-mark-card {
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.surface-card {
    padding: 26px;
    border-radius: 24px;
}

.surface-card h3,
.service-card h3,
.product-body h3,
.info-card h2,
.admin-panel h2,
.product-detail-copy h1 {
    margin: 0 0 10px;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.02em;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-weight: 800;
    color: var(--accent);
}

.icon-token,
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(209, 33, 35, 0.14), rgba(209, 33, 35, 0.08));
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.section-products-preview {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(239, 232, 222, 0.5));
}

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

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

.product-card {
    overflow: hidden;
    border-radius: 26px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.product-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(160deg, #f5f1e9, #e8e0d3);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-condition {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    background: rgba(15, 31, 25, 0.82);
    color: #fff;
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.product-meta,
.product-footer,
.catalog-meta,
.product-breadcrumb,
.product-quick-data,
.footer-bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.product-meta {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: var(--text-soft);
}

.product-body h3 {
    font-size: 1.18rem;
    color: var(--text);
}

.product-body p {
    margin: 0 0 18px;
}

.product-footer {
    margin-top: auto;
    justify-content: space-between;
}

.product-footer strong,
.product-price {
    font-size: 1.15rem;
    color: var(--accent);
    font-family: 'Sora', sans-serif;
}

.stock-pill {
    padding: 6px 12px;
    background: rgba(20, 71, 48, 0.08);
    color: #114730;
}

.product-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: var(--accent);
    font-weight: 800;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.service-stack,
.accordion-stack {
    display: grid;
    gap: 18px;
}

.service-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 24px;
}

.service-icon {
    margin: 0;
    flex-shrink: 0;
}

.section-about-band {
    background: linear-gradient(130deg, var(--surface-dark), #173326);
}

.about-band-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
}

.about-band-actions {
    align-self: center;
    justify-content: center;
}

.about-band-copy .eyebrow,
.about-band-copy h2,
.about-band-copy p {
    color: #fff;
}

.page-hero {
    position: relative;
    padding: 160px 0 56px;
}

.compact-hero {
    background: linear-gradient(180deg, rgba(209, 33, 35, 0.08), transparent);
}

.dark-hero {
    background: linear-gradient(140deg, var(--surface-dark), #173427);
}

.page-hero-content {
    max-width: 760px;
}

.page-hero-content h1 {
    color: var(--text);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.dark-hero .eyebrow,
.dark-hero h1,
.dark-hero p {
    color: #fff;
}
.dark-hero .eyebrow{
    color: #ff8d8e;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 28px;
    align-items: center;
}

.about-mark-card {
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.filter-panel,
.contact-form {
    padding: 24px;
    border-radius: 24px;
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr) auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 22px;
}

.field-group,
.contact-form .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-group.actions {
    flex-direction: row;
    align-items: flex-end;
    gap: 10px;
}

.filter-action-button {
    width: 54px;
    min-width: 54px;
    height: 54px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.filter-action-button i {
    font-size: 1rem;
}

.field-group label,
.contact-form label span {
    font-size: 0.92rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border-strong);
    background: #fff;
    color: var(--text);
    border-radius: 16px;
    padding: 14px 16px;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(209, 33, 35, 0.55);
    box-shadow: 0 0 0 3px rgba(209, 33, 35, 0.12);
}

.catalog-meta {
    margin-bottom: 18px;
    color: var(--text-soft);
}

.catalog-meta strong {
    color: var(--accent);
    font-size: 1.6rem;
    font-family: 'Sora', sans-serif;
}

.empty-state {
    padding: 48px 24px;
    text-align: center;
    border-radius: 28px;
    background: #fff;
    border: 1px dashed rgba(19, 35, 27, 0.16);
}

.empty-state i {
    font-size: 2rem;
    color: var(--accent);
}

.product-breadcrumb {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.product-breadcrumb strong {
    color: var(--text);
}

.section-product-detail {
    padding-top: 174px;
}

.product-detail-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
    gap: 34px;
    align-items: start;
}

.gallery-stage {
    overflow: hidden;
    border-radius: 28px;
    padding: 16px;
}

.gallery-stage img {
    width: 100%;
    max-height: 480px;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    margin: 0 auto;
}

.product-detail-back {
    width: fit-content;
    margin: 0 0 18px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.thumb-button {
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
}

.thumb-button img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.thumb-button.is-active {
    outline: 2px solid rgba(209, 33, 35, 0.45);
}

.product-detail-copy h1 {
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    color: var(--text);
}

.product-badges {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.detail-badge {
    padding: 7px 12px;
    background: rgba(209, 33, 35, 0.12);
    color: var(--accent);
}

.detail-badge.is-highlight,
.product-condition.is-highlight {
    background: rgba(209, 33, 35, 0.14);
    color: var(--accent);
}

.detail-badge.is-promo,
.product-condition.is-promo {
    background: rgba(255, 138, 0, 0.16);
    color: #c76b00;
}

.detail-badge.is-hot,
.product-condition.is-hot {
    background: rgba(209, 33, 35, 0.18);
    color: #a3191b;
}

.detail-badge.is-stock,
.product-condition.is-stock {
    background: rgba(23, 122, 62, 0.16);
    color: #177a3e;
}

.detail-badge.is-neutral,
.product-condition.is-neutral {
    background: rgba(21, 36, 29, 0.08);
    color: #42514a;
}

.detail-badge.is-fresh,
.product-condition.is-fresh {
    background: rgba(19, 135, 117, 0.14);
    color: #0f7464;
}

.detail-meta,
.product-sku {
    color: var(--text-soft);
}

.product-summary {
    margin: 18px 0;
    color: var(--text-soft);
    font-size: 1.02rem;
}

.product-quick-data {
    margin: 24px 0;
}

.product-quick-data div {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(19, 35, 27, 0.04);
}

.product-quick-data span {
    display: block;
    font-size: 0.82rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.product-quick-data strong {
    display: block;
    margin-top: 6px;
    color: var(--text);
}

.detail-accordion {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.detail-accordion details {
    border-radius: 22px;
    overflow: hidden;
}

.detail-accordion summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    cursor: pointer;
}

.detail-accordion summary::-webkit-details-marker {
    display: none;
}

.detail-accordion summary i {
    color: var(--accent);
}

.details-panel {
    padding: 0 20px 18px;
    color: var(--text-soft);
}

.details-panel p {
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.spec-table {
    display: grid;
    gap: 10px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(19, 35, 27, 0.04);
}

.spec-row span {
    color: var(--text-soft);
}

.related-products {
    padding-top: 0;
}

.related-products-title {
    font-size: clamp(1.7rem, 2.3vw, 2.45rem);
}

.value-item {
    border-radius: 22px;
    overflow: hidden;
}

.value-item summary {
    padding: 18px 20px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.value-item summary::-webkit-details-marker {
    display: none;
}

.value-item div {
    padding: 0 20px 18px;
}

.contact-grid {
    grid-template-columns: 0.84fr 1.16fr;
}

.contact-info {
    display: grid;
    gap: 16px;
}

.info-card {
    padding: 22px;
    border-radius: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-card i {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(209, 33, 35, 0.12);
    color: var(--accent);
}

.info-card h2 {
    font-size: 1.1rem;
}

.section-location {
    padding-top: 0;
}

.route-home .section-location {
    padding-bottom: 0;
}

.section-location-map-only {
    padding-top: 24px;
}

.route-contact .section-location-map-only {
    padding-bottom: 0;
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 34px;
    align-items: stretch;
}

.location-grid.is-map-only {
    grid-template-columns: 1fr;
}

.route-contact .section-location-map-only .container.location-grid.is-map-only {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.location-copy h2 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.location-copy > p {
    margin: 18px 0 0;
    color: var(--text-soft);
}

.location-cards {
    display: grid;
    gap: 16px;
    margin: 24px 0 26px;
}

.location-card {
    border-radius: 28px;
    overflow: hidden;
}

.location-card {
    display: flex;
    gap: 16px;
    padding: 22px;
}

.location-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(209, 33, 35, 0.12);
    color: var(--accent);
}

.location-card h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
}

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

.location-card p + p {
    margin-top: 6px;
}

.location-card a {
    color: inherit;
}

.location-map {
    position: relative;
    min-height: 100%;
    border: 1px solid rgba(19, 35, 27, 0.08);
    box-shadow: var(--shadow-soft);
    background: #dfe8e2;
    overflow: hidden;
}

.location-map.is-map-only {
    min-height: 520px;
}

.route-contact .section-location-map-only .location-map,
.route-contact .section-location-map-only .location-map-frame,
.route-contact .section-location-map-only .location-map .maplibregl-map,
.route-contact .section-location-map-only .location-map .maplibregl-canvas,
.route-contact .section-location-map-only .location-map .maplibregl-canvas-container {
    width: 100vw;
    max-width: none;
}

.location-map-frame {
    width: 100%;
    min-height: 540px;
}

.location-map.is-map-only .location-map-frame {
    min-height: 520px;
}

.location-map .maplibregl-map,
.location-map .maplibregl-canvas,
.location-map .maplibregl-canvas-container {
    width: 100%;
    height: 100%;
}

.location-map .maplibregl-canvas {
    outline: 0;
}

.location-map .maplibregl-ctrl-bottom-left,
.location-map .maplibregl-ctrl-bottom-right {
    font-size: 0.72rem;
}

.location-map-link {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(10, 22, 17, 0.8);
    color: #fff;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

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

.error-text {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
}

.site-footer {
    background: #0a1611;
    color: rgba(233, 242, 237, 0.8);
    padding: 72px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
    gap: 24px;
}

.footer-brand-block img {
    width: auto;
    max-width: 190px;
    height: auto;
}

.footer-brand-block p,
.site-footer p,
.site-footer a,
.footer-list li {
    color: rgba(233, 242, 237, 0.74);
}

.site-footer h3 {
    color: #fff;
    font-family: 'Sora', sans-serif;
    margin: 0 0 14px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-bottom {
    justify-content: space-between;
    padding-top: 28px;
    margin-top: 32px;
    border-top: 1px solid rgba(233, 242, 237, 0.09);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a,
.floating-whatsapp {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.footer-socials a {
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.footer-socials a i {
    transition: transform 0.22s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    background: rgba(209, 33, 35, 0.24);
    color: #fff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 24px rgba(209, 33, 35, 0.24);
}

.footer-socials a:hover i,
.footer-socials a:focus-visible i {
    transform: scale(1.08);
}

.footer-socials a:active {
    transform: translateY(0) scale(0.96);
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    background: var(--green);
    color: #fff;
    box-shadow: 0 20px 34px rgba(37, 211, 102, 0.28);
    font-size: 1.7rem;
}

.flash-stack {
    position: fixed;
    top: 94px;
    right: 16px;
    z-index: 60;
    display: grid;
    gap: 12px;
}

.flash {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    padding: 14px 16px;
    border-radius: 16px;
    color: #fff;
    box-shadow: var(--shadow);
}

.flash-success {
    background: #1c7d4e;
}

.flash-error {
    background: var(--accent);
}

.reveal {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
    transform: translateX(-48px);
}

.reveal-right {
    transform: translateX(48px);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1120px) {
    .hero-grid,
    .product-grid.catalog-grid,
    .footer-grid,
    .three-columns,
    .four-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .field-group.actions {
        grid-column: span 2;
    }

    .contact-grid,
    .product-detail-grid,
    .split-layout,
    .about-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-map {
        width: 100vw;
        max-width: none;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .location-map-frame,
    .location-map .maplibregl-map,
    .location-map .maplibregl-canvas,
    .location-map .maplibregl-canvas-container {
        width: 100vw;
        max-width: none;
    }

    .section-location-map-only .container.location-grid.is-map-only {
        width: 100%;
        max-width: none;
    }

    .section-location-map-only .location-map {
        min-height: 540px;
    }

    .section-location-map-only .location-map-frame {
        min-height: 540px;
    }
}

@media (max-width: 860px) {
    .header-nav {
        position: fixed;
        inset: 86px 16px auto 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 24px;
        background: rgba(11, 21, 16, 0.96);
        box-shadow: var(--shadow);
    }

    .site-header.is-scrolled .header-nav {
        background: rgba(243, 239, 232, 0.98);
    }

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

    .header-nav a {
        color: #fff;
        justify-content: center;
    }

    .site-header.is-scrolled .header-nav a {
        color: var(--text);
    }

    .mobile-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-grid,
    .hero-stats,
    .product-grid,
    .footer-grid,
    .form-grid,
    .about-band-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding-top: 132px;
    }

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

    .location-map-frame {
        min-height: 420px;
    }

    .product-detail-back {
        width: 100%;
    }

    .btn-full-mobile,
    .hero-actions .btn,
    .about-band-actions .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100vw - 24px, 1180px);
    }

    .header-inner {
        min-height: 76px;
    }

    .brand-logo {
        width: 160px;
    }

    .site-header.is-scrolled .header-inner {
        min-height: 62px;
    }

    .site-header.is-scrolled .brand-logo {
        width: 112px;
    }

    .site-header.is-scrolled .header-brand {
        min-width: 112px;
    }

    .hero-copy h1,
    .page-hero-content h1,
    .product-detail-copy h1 {
        font-size: clamp(2.3rem, 11vw, 3.2rem);
    }

    .location-copy h2 {
        font-size: clamp(1.9rem, 9vw, 2.7rem);
    }

    .section,
    .page-hero {
        padding-top: 74px;
        padding-bottom: 74px;
    }

    .compact-hero {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .section-product-detail {
        padding-top: 112px;
        padding-bottom: 74px;
    }

    .catalog-grid,
    .three-columns,
    .four-columns {
        grid-template-columns: 1fr;
    }

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

    .field-group.actions {
        grid-column: auto;
        justify-content: flex-start;
    }

    .product-footer,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .flash-stack {
        left: 12px;
        right: 12px;
        top: 82px;
    }

    .flash {
        min-width: 0;
    }

    .location-map-frame {
        min-height: 340px;
    }

    .gallery-stage img {
        max-height: 360px;
    }
}

@media (max-width: 640px) and (orientation: portrait) {
    .site-footer {
        text-align: center;
    }

    .footer-grid,
    .footer-bottom {
        justify-items: center;
    }

    .footer-brand-block,
    .footer-grid > div {
        display: grid;
        justify-items: center;
    }

    .footer-list {
        justify-items: center;
    }

    .footer-bottom,
    .footer-socials {
        align-items: center;
        justify-content: center;
    }
}
