:root {
  --bg: #0b1110;
  --bg-soft: #101816;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --card-border: rgba(255, 255, 255, 0.09);
  --text: #edf2ef;
  --muted: #b4c0ba;
  --muted-2: #8a9891;
  --jade: #0f6a5b;
  --jade-2: #1b8a76;
  --white: #ffffff;
  --shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --max: 1200px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(31, 138, 112, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(56, 179, 146, 0.08), transparent 28%),
    linear-gradient(180deg, #07100e 0%, #0b1110 40%, #0d1413 100%);
  color: var(--text);
  line-height: 1.55;
}

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

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

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(9, 14, 13, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(31, 138, 112, 0.24), rgba(56, 179, 146, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-logo img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.brand-copy strong {
  display: block;
  line-height: 1;
  letter-spacing: 0.16em;
  font-size: 0.96rem;
}

.brand-copy span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 5px;
}

.header-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--jade) 0%, var(--jade-2) 100%);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(31, 138, 112, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--jade-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--jade), transparent);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 0;
}

.lead {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: var(--muted);
  max-width: 60ch;
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted-2);
  margin-top: 22px;
  font-size: 0.92rem;
}

.hero-points span:not(:last-child)::after {
  content: "•";
  color: var(--jade-2);
  margin-left: 12px;
}

.hero-image {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(5, 10, 9, 0.1), rgba(5, 10, 9, 0.55));
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(6, 10, 9, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.hero-badge strong {
  display: block;
  color: var(--jade-2);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-badge p {
  margin: 0;
  color: var(--muted);
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 760;
  margin: 0;
  max-width: 14ch;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.highlight,
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.028));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight {
  padding: 18px 20px;
  font-weight: 620;
}

.about-image {
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 9, 0.12), rgba(6, 10, 9, 0.58));
}

.about-overlay {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  z-index: 2;
}

.about-overlay strong {
  display: block;
  color: var(--jade-2);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-overlay p {
  margin: 0;
  color: var(--white);
}

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

.card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--jade), transparent);
}

.card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(56, 179, 146, 0.13);
  color: var(--jade-2);
  font-weight: 700;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.25;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta-panel {
  border-radius: 30px;
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(56, 179, 146, 0.17), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  color: var(--muted);
}

.footer {
  padding: 34px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 11, 10, 0.38);
}

.footer p {
  margin: 14px 0 0;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1aa36f, #26d07c);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

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

  .highlights {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 400px;
  }
}

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

  .section {
    padding: 64px 0;
  }

  .header-inner {
    min-height: 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 0;
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    padding: 70px 0 54px;
  }

  .hero-image {
    min-height: 340px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.social-links a:hover {
  background: rgba(15, 106, 91, 0.16);
  border-color: rgba(27, 138, 118, 0.35);
  color: var(--white);
  transform: translateY(-1px);
}