:root {
  --bg: #ffffff;
  --text: #171717;
  --muted-text: #666a70;
  --soft: #f5f6f8;
  --dark: #0f1013;
  --dark-2: #17191e;
  --red: #e30613;
  --red-dark: #a90710;
  --line: rgba(20, 20, 20, 0.1);
  --white-line: rgba(255, 255, 255, 0.13);
  --radius: 26px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  background: var(--red);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
}
.skip-link:focus { left: 12px; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(15, 16, 19, 0.86);
  border-bottom: 1px solid var(--white-line);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand img { width: 164px; height: auto; filter: brightness(0) invert(1); }
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.main-nav a { opacity: 0.78; transition: 0.2s ease; }
.main-nav a:hover { opacity: 1; color: #fff; }
.lang-switch {
  display: flex;
  align-items: center;
  padding: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--white-line);
  border-radius: 999px;
}
.lang-btn {
  border: 0;
  background: transparent;
  color: #fff;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.78rem;
  transition: 0.2s ease;
}
.lang-btn.active { background: var(--red); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--white-line);
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}

.section { padding: 104px 0; }
.section-dark { background: var(--dark); color: #fff; }
.muted { background: var(--soft); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.05; margin: 0; }
h1 { font-size: clamp(2.8rem, 7vw, 6.2rem); letter-spacing: -0.075em; }
h2 { font-size: clamp(2.15rem, 4vw, 4.1rem); letter-spacing: -0.055em; }
h3 { font-size: 1.35rem; letter-spacing: -0.025em; }
p { margin: 0; }

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,10,0.96) 0%, rgba(8,8,10,0.8) 43%, rgba(8,8,10,0.38) 100%),
    url('https://static.wixstatic.com/media/82648c_fd517bb95a5049cfa491ad585688579c~mv2.jpg/v1/fill/w_380%2Ch_178%2Cq_90%2Cenc_avif%2Cquality_auto/82648c_fd517bb95a5049cfa491ad585688579c~mv2.jpg') center/cover no-repeat;
  transform: scale(1.08);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -36% -15%;
  height: 44%;
  background: radial-gradient(circle, rgba(227,6,19,0.35), transparent 62%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero-copy { max-width: 820px; }
.hero-text {
  margin-top: 24px;
  max-width: 680px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 2vw, 1.22rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.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: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 18px 42px rgba(227, 6, 19, 0.34);
}
.btn-ghost { border-color: rgba(255,255,255,0.2); color: #fff; background: rgba(255,255,255,0.07); }
.hero-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-card img { width: 100%; aspect-ratio: 1.48; max-height: 250px; object-fit: cover; }
.quality-badge {
  display: flex;
  gap: 8px;
  padding: 18px 18px 0;
}
.quality-badge span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.22);
  border: 1px solid rgba(227, 6, 19, 0.34);
  color: #fff;
  font-weight: 900;
  font-size: 0.76rem;
}
.hero-card-body { padding: 22px; }
.hero-card-body strong { font-size: 1.2rem; }
.hero-card-body p { margin-top: 8px; color: rgba(255,255,255,0.72); }

.stats-strip { background: #fff; border-bottom: 1px solid var(--line); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.stat {
  background: #fff;
  padding: 30px;
}
.stat span {
  display: block;
  color: var(--red);
  font-weight: 950;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}
.stat p { margin-top: 8px; color: var(--muted-text); font-weight: 700; }

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(300px, 0.88fr);
  gap: 72px;
  align-items: center;
}
.section-copy p:not(.eyebrow) { margin-top: 18px; color: var(--muted-text); font-size: 1.05rem; }
.image-stack { position: relative; min-height: 430px; }
.image-main, .image-small {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.image-main { width: 82%; aspect-ratio: 1 / .8; }
.image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1.12;
  border: 8px solid #fff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}
.section-heading p:not(.eyebrow) { margin-top: 16px; color: var(--muted-text); font-size: 1.05rem; }
.section-dark .section-heading p:not(.eyebrow) { color: rgba(255,255,255,0.68); }
.feature-grid, .values-grid, .product-grid, .detail-grid {
  display: grid;
  gap: 22px;
}
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.feature-card, .value-card, .detail-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
  min-height: 250px;
}
.feature-icon, .detail-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #111;
  color: #fff;
  font-weight: 950;
  margin-bottom: 24px;
}
.feature-card p, .value-card p, .detail-card p, .detail-card li { color: var(--muted-text); }
.feature-card p, .value-card p { margin-top: 14px; }
.values-grid { grid-template-columns: repeat(3, 1fr); }
.value-card {
  min-height: 270px;
  background: radial-gradient(circle at top left, rgba(227,6,19,0.08), transparent 40%), #fff;
}
.featured-value {
  background: var(--dark);
  color: #fff;
  transform: translateY(-14px);
}
.featured-value p { color: rgba(255,255,255,0.72); }

.products-section { position: relative; overflow: hidden; }
.products-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -12%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(227,6,19,0.24), transparent 68%);
}
.product-grid { grid-template-columns: repeat(3, 1fr); position: relative; }
.product-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--white-line);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}
.product-card img { width: 100%; aspect-ratio: 1.68; max-height: 220px; object-fit: cover; }
.product-card div { padding: 26px; }
.product-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-weight: 950;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.product-card p { margin-top: 14px; color: rgba(255,255,255,0.7); }
.product-card a {
  display: inline-flex;
  margin-top: 22px;
  color: #fff;
  font-weight: 900;
  border-bottom: 2px solid var(--red);
}

.detail-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.detail-card { scroll-margin-top: 110px; }
.detail-card p { margin-top: 14px; }
.detail-card ul { margin: 22px 0 0; padding-left: 20px; }
.detail-card li + li { margin-top: 8px; }
.detail-number { background: var(--red); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 850;
  transition: 0.2s ease;
}
.filter-btn.active, .filter-btn:hover { background: var(--dark); color: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: 18px;
  background: #ddd;
  cursor: pointer;
  min-height: 138px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: contrast(1.04); }
.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.68);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
}

.instagram-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(227,6,19,0.08), transparent 32%),
    #fff;
}
.instagram-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.insta-highlight {
  position: sticky;
  top: 108px;
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #111217, #191b21);
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.insta-highlight::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(227,6,19,0.42), transparent 68%);
}
.insta-highlight h3 { margin-top: 18px; font-size: clamp(1.7rem, 2.5vw, 2.4rem); }
.insta-highlight p { margin: 16px 0 26px; color: rgba(255,255,255,0.74); }
.social-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.18);
  border: 1px solid rgba(227, 6, 19, 0.36);
  color: #fff;
  font-weight: 900;
  font-size: .84rem;
}
.instagram-embeds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.instagram-embeds iframe {
  width: 100%;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,0.08);
}
.map-card {
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px;
}
.map-card-header h3 { font-size: clamp(1.45rem, 2.4vw, 2.2rem); }
.btn-map {
  color: var(--red);
  background: rgba(227,6,19,0.08);
  border-color: rgba(227,6,19,0.2);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.cta-section { padding-top: 0; }
.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  border-radius: calc(var(--radius) + 10px);
  padding: 48px;
  background:
    radial-gradient(circle at 85% 0%, rgba(227,6,19,0.38), transparent 32%),
    linear-gradient(135deg, #15171c, #07080a);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-box p:not(.eyebrow) { color: rgba(255,255,255,0.74); margin-top: 14px; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: 48px;
  align-items: start;
}
.contact-copy > p:not(.eyebrow) { color: var(--muted-text); margin-top: 18px; }
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.contact-list a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.contact-list strong { color: var(--red); }
.contact-list span { color: var(--muted-text); }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 8px; font-weight: 850; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 14px;
  padding: 14px 15px;
  outline: 0;
  transition: 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(227,6,19,0.09); }
.form-note { color: var(--muted-text); font-size: 0.88rem; }


.original-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.original-info-card {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.original-info-card p {
  margin-top: 14px;
  color: var(--muted-text);
}

.site-footer {
  background: #08090b;
  color: #fff;
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.34fr 0.34fr;
  gap: 40px;
  padding-bottom: 34px;
}
.footer-grid img { width: 154px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,0.68); }
.footer-grid strong { display: block; margin-bottom: 12px; }
.footer-grid a { display: block; margin: 8px 0; transition: 0.2s ease; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--white-line);
  color: rgba(255,255,255,0.52);
  font-size: 0.9rem;
}
.footer-legal {
  margin-top: 18px;
  color: rgba(255,255,255,0.56);
  font-size: 0.9rem;
}
.footer-legal p + p { margin-top: 8px; }
.floating-whatsapp {
  position: fixed;
  z-index: 99;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #063916;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(0,0,0,0.2);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,0.86);
}
.lightbox.open { display: grid; }
.lightbox img {
  width: min(960px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
}
.lightbox p { color: #fff; margin-top: 14px; font-weight: 800; text-align: center; }
.lightbox-close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    inset: 82px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 20px;
    background: rgba(15,16,19,0.97);
    border: 1px solid var(--white-line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px; }
  .nav-wrap { gap: 12px; }
  .lang-switch { margin-left: 0; }
  .hero-grid, .split-grid, .contact-grid, .instagram-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding: 80px 0 64px; }
  .hero-card { max-width: 520px; }
  .stats-grid, .feature-grid, .values-grid, .product-grid, .detail-grid, .gallery-grid, .instagram-embeds, .original-info-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-highlight { position: relative; top: auto; }
  .featured-value { transform: none; }
  .cta-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .brand img { width: 130px; }
  .nav-wrap { min-height: 76px; }
  .main-nav { inset-top: 76px; }
  .lang-btn { padding: 7px 8px; }
  h1 { font-size: clamp(2.55rem, 16vw, 4rem); }
  .hero-actions, .btn { width: 100%; }
  .stats-grid, .feature-grid, .values-grid, .product-grid, .detail-grid, .gallery-grid, .instagram-embeds, .footer-grid, .original-info-grid { grid-template-columns: 1fr; }
  .instagram-embeds iframe { min-height: 500px; }
  .map-card-header { align-items: stretch; flex-direction: column; }
  .stat { padding: 24px; }
  .image-stack { min-height: auto; }
  .image-main, .image-small { position: static; width: 100%; border: 0; margin-top: 14px; }
  .contact-list a { grid-template-columns: 1fr; }
  .cta-box { padding: 30px; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}
