:root {
  --bg: #111111;
  --bg-soft: #1a1a1a;
  --text: #f3f3f3;
  --muted: #cfcfcf;
  --yellow: #f4b400;
  --yellow-dark: #d89d00;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0d0d0d;
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  color: var(--white);
  font-weight: 700;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--yellow);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 0;
  font-size: 30px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  background-image: url("../assets/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-text {
  max-width: 700px;
}

.badge {
  display: inline-block;
  background: var(--yellow);
  color: #111;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
}

.hero p {
  margin: 0 0 28px;
  font-size: 1.15rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow);
  color: #111;
}

.btn-primary:hover {
  background: var(--yellow-dark);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.features {
  background: #121212;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px 0;
}

.feature-item {
  background: #181818;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  font-weight: 700;
  text-align: center;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--bg-soft);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 1.3rem;
}

.card ul {
  padding-left: 18px;
  margin: 0;
}

.card li {
  margin-bottom: 8px;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-text h2 {
  margin-top: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.about-text p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card {
  background: #171717;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-top: 0;
  color: var(--yellow);
}

.contact-card a {
  color: white;
  font-weight: 700;
}

.contact-card a:hover {
  color: var(--yellow);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: #25d366;
  color: white;
  font-weight: 800;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
  color: #bfbfbf;
}

@media (max-width: 980px) {
  .cards,
  .contact-grid,
  .features-grid,
  .about {
    grid-template-columns: 1fr 1fr;
  }

  .about {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 16px;
    background: #111;
    border-bottom: 1px solid var(--border);
  }

  nav.open {
    display: flex;
  }

  .cards,
  .contact-grid,
  .features-grid,
  .about {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 74vh;
    background-position: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}