:root {
  --bg: #0f1115;
  --bg-soft: #151922;
  --surface: #1d232f;
  --white: #f5f7fa;
  --muted: #b6bfcc;
  --red: #ea1f2c;
  --red-dark: #b0131d;
  --line: #2b3342;
  --radius: 16px;
  --shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #2a2d37 0%, var(--bg) 38%);
  color: var(--white);
  line-height: 1.55;
}

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

.section {
  padding: 90px 0;
}

.section-dark {
  background: linear-gradient(180deg, #12161e 0%, #0d1016 100%);
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  margin: 14px 0;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}

p {
  color: var(--muted);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

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

.brand img {
  width: 170px;
  display: block;
  object-fit: contain;
}

.menu {
  display: flex;
  gap: 22px;
}

.menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}

.menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

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

.subtitle {
  font-size: 1.1rem;
  max-width: 65ch;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
}

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

.btn-primary,
.btn-whats {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(234, 31, 44, 0.33);
}

.btn-secondary {
  border-color: #4a5261;
  color: var(--white);
  background: transparent;
}

.hero-points {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 7px;
  color: #dce2ec;
}

.hero-points li::before {
  content: '✓';
  color: #ff6c75;
  margin-right: 8px;
}

.hero-card {
  background: linear-gradient(160deg, #1a1f29, #141822);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-wrap {
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(234, 31, 44, 0.08), transparent 40%),
    linear-gradient(180deg, #1a1f29 0%, #11141c 100%);
  padding: 24px 16px 0;
}

.photo-wrap img {
  width: auto;
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

.identity-card {
  padding: 22px;
}

.identity-card p {
  color: #f0f3f9;
  margin-top: 5px;
}

.identity-card span {
  color: #9ba6b8;
  font-size: 0.95rem;
}

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

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}

.card h3 {
  margin-bottom: 9px;
}

.icon-card {
  text-align: center;
}

.icon-card span {
  font-size: 1.7rem;
  display: inline-block;
  margin-bottom: 9px;
}

.segment-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  list-style: none;
}

.segment-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.stat h3 {
  font-size: 1.45rem;
  color: #ff6c75;
}

.section-cta {
  background: linear-gradient(145deg, #191f2b, #11141c);
}

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

.lead-form {
  background: #111722;
  border: 1px solid #2e3847;
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 8px;
}

.lead-form input,
.lead-form textarea {
  background: #0b1119;
  border: 1px solid #2d394a;
  border-radius: 10px;
  color: var(--white);
  padding: 11px 12px;
  margin-bottom: 8px;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 44px;
  background: #090b0f;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .cta-layout,
  .cards-4,
  .cards-3,
  .segment-list {
    grid-template-columns: 1fr 1fr;
  }

  .menu {
    display: none;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 72px 0;
  }

  .hero-grid,
  .cta-layout,
  .cards-4,
  .cards-3,
  .segment-list {
    grid-template-columns: 1fr;
  }

  .topbar-content {
    min-height: 72px;
  }

  .brand img {
    width: 138px;
  }

  .btn-whats {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .photo-wrap {
    min-height: 360px;
  }

  .photo-wrap img {
    max-height: 360px;
  }
}


.brand img {
  width: 300px;
  max-width: 100%;
  object-fit: contain;
}

.photo-wrap {
  display: none;
}

.topbar-content {
  min-height: 90px;
}
