﻿:root {
  --bg: #121416;
  --bg-soft: #1b1f22;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-light: #f5f5f5;
  --muted: #9ea4ab;
  --accent: #c58a42;
  --accent-strong: #a86f2f;
  --border: #2a3035;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: linear-gradient(180deg, #f8f8f8, #f2f2f2);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: linear-gradient(90deg, #12161a, #0f1418);
  color: #e8edf2;
  font-size: 0.9rem;
  border-bottom: 1px solid #26313a;
}

.top-bar-inner {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0;
  flex-wrap: wrap;
}

.top-bar a,
.top-bar span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f0f4f8;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
}

.top-bar a {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.top-bar a:hover {
  background: rgba(197, 138, 66, 0.18);
  border-color: rgba(197, 138, 66, 0.5);
  color: #f6d8b0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 20, 22, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.logo {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

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

.nav a {
  color: #ffffff;
  font-weight: 600;
  opacity: 0.88;
  position: relative;
}

.nav a:hover,
.nav a.active {
  opacity: 1;
  color: #f2c181;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid #4a5158;
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  font-size: 1.1rem;
  cursor: pointer;
}

.hero,
.page-hero {
  background: radial-gradient(circle at 80% 15%, rgba(197, 138, 66, 0.2), transparent 42%),
    linear-gradient(130deg, #121416, #181d21);
  color: var(--text-light);
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: #eabf86;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.76rem 1.3rem;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

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

.btn-primary,
.btn-small {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-small:hover {
  background: var(--accent-strong);
}

.btn-outline {
  border: 1px solid #8e949b;
  color: #ffffff;
}

.btn-outline:hover {
  border-color: #d2a56a;
  color: #f5cb94;
}

.btn-small {
  width: 100%;
  margin-top: 0.5rem;
  border-radius: 10px;
}

.section {
  padding: 4.5rem 0;
}

.section-dark {
  background: linear-gradient(145deg, #1a1f23, #121518);
  color: #f2f2f2;
}

.section-head {
  margin-bottom: 1.4rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.section-dark .card {
  background: #1f252a;
  color: #eef0f2;
}

.feature-card {
  border-top: 3px solid var(--accent);
}

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

.stat-card {
  background: #ffffff;
  border-radius: var(--radius);
  text-align: center;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.stat-card h3 {
  color: #1c2126;
  margin-bottom: 0.2rem;
}

.stat-card p {
  color: #5a6168;
  margin: 0;
  font-weight: 600;
}

.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.2);
}

.product-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 0.9rem;
}

.cta-box {
  background: linear-gradient(135deg, #191d20, #13161a);
  color: #f5f5f5;
  border: 1px solid #30363d;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.site-footer {
  background: #0f1113;
  color: #d2d6da;
  padding-top: 3.3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.4rem;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
}

.site-footer a {
  display: block;
  margin-bottom: 0.55rem;
}

.footer-bottom {
  border-top: 1px solid #2b3136;
  margin-top: 1rem;
  padding: 1rem 0;
  text-align: center;
  color: #9aa1a8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.contact-card h3 {
  color: #27303a;
}

.contact-card {
  border: 1px solid #e0e5ea;
  background: linear-gradient(160deg, #ffffff, #f8fafb);
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.45rem;
}

.contact-label {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #7b8794;
}

.contact-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card h3 a {
  color: #1e2730;
}

.contact-card h3 a:hover {
  color: var(--accent-strong);
}

.contact-note {
  margin: 0;
  color: #5f6974;
  font-size: 0.94rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 0.95rem;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d5d9dd;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(197, 138, 66, 0.35);
  border-color: #c58a42;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  margin-top: 0.75rem;
  font-weight: 600;
}

.map-placeholder {
  background: #e7eaee;
  border: 2px dashed #c7ccd1;
  border-radius: var(--radius);
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-weight: 800;
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.24);
}

.page-hero {
  padding: 3.8rem 0;
}

.timeline-step {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .top-bar-inner {
    justify-content: flex-start;
  }

  .top-bar a,
  .top-bar span {
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: #111416;
    border-top: 1px solid #2a3035;
    padding: 0.8rem 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .nav.open {
    display: flex;
  }

  .grid-3,
  .grid-4,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .section,
  .page-hero {
    padding: 3.2rem 0;
  }
}
