:root {
  --bg: #050505;
  --panel: #171717;
  --panel-2: #202020;
  --text: #f7f3ee;
  --muted: #c7beb7;
  --soft: #8f8781;
  --line: rgba(255, 255, 255, 0.1);
  --wine: #8d1f2e;
  --wine-2: #b93445;
  --gold: #c8a15a;
  --green: #18b56c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.brand-text {
  max-width: 170px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--text);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: clamp(32px, 6vw, 92px);
  min-height: auto;
  padding: clamp(42px, 7vw, 78px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  align-items: center;
  background:
    radial-gradient(circle at 84% 18%, rgba(141, 31, 46, 0.26), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%);
}

.hero-content,
.section-heading,
.split-copy,
.about-copy,
.faq-intro,
.final-cta {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5.6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-copy,
.section-heading p,
.split-copy p,
.about-copy p,
.faq-intro p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0 14px;
}

.primary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 22px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(24, 181, 108, 0.18);
}

.primary-button:hover {
  background: #12a460;
}

.secondary-link {
  color: var(--text);
  font-weight: 700;
  border-bottom: 1px solid var(--wine-2);
}

.compliance-note {
  max-width: 580px;
  color: var(--soft);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  min-height: 410px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(141, 31, 46, 0.9), rgba(141, 31, 46, 0) 46%),
    linear-gradient(160deg, #303030, #111);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.conversion-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(32, 32, 32, 0.96), rgba(12, 12, 12, 0.98)),
    radial-gradient(circle at 12% 0%, rgba(200, 161, 90, 0.16), transparent 30%);
}

.conversion-panel::after {
  display: none;
}

.conversion-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(8, 8, 8, 0.72);
}

.conversion-card h2 {
  margin-bottom: 20px;
  font-size: clamp(1.42rem, 2.4vw, 2.2rem);
}

.conversion-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.conversion-card li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  font-weight: 600;
}

.conversion-card li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(141, 31, 46, 0.24);
  color: var(--gold);
  content: "✓";
  font-size: 0.78rem;
}

.panel-button {
  width: 100%;
}

.panel-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.panel-note strong,
.panel-note span {
  display: block;
}

.panel-note strong {
  font-size: 1rem;
}

.panel-note span {
  color: var(--muted);
  text-align: right;
}

.section {
  padding: clamp(36px, 5vw, 64px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.strip-item {
  padding: 22px clamp(18px, 3vw, 34px);
  background: var(--bg);
}

.strip-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.strip-item span {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 26px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
}

.large-card {
  min-height: 360px;
  padding: clamp(22px, 3vw, 32px);
}

.card-number,
.service-card span {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--wine);
  color: white;
  font-weight: 800;
}

.feature-card p,
.feature-card li,
.service-card p {
  color: var(--muted);
}

.feature-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.feature-card li,
.check-list span {
  position: relative;
  padding-left: 28px;
}

.feature-card li::before,
.check-list span::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(185, 52, 69, 0.7);
  border-radius: 50%;
  color: var(--wine-2);
  content: "✓";
  font-size: 0.75rem;
  line-height: 16px;
  text-align: center;
}

.feature-card a {
  display: inline-block;
  margin-top: 8px;
  border-bottom: 1px solid var(--wine-2);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.split-section.reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.split-section.reverse .split-copy {
  order: 2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 170px;
  padding: 22px;
}

.service-card h3 {
  margin-bottom: 14px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) 1fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
}

.authority-grid {
  display: grid;
  gap: 12px;
}

.authority-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--panel);
}

.authority-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--wine);
  color: var(--text);
  font-weight: 800;
}

.authority-grid h3 {
  margin-bottom: 10px;
}

.authority-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.team-section .section-heading {
  max-width: 860px;
}

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

.team-card {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
}

.team-card.lead {
  grid-row: span 2;
  min-height: 560px;
}

.team-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(1.06) brightness(0.96);
  transform: scale(1.01);
}

.team-card.jose img {
  object-position: center top;
}

.team-card.bruno img {
  object-position: center 34%;
}

.team-card.larissa img {
  object-position: center top;
}

.team-card.carol img {
  object-position: center 20%;
}

.team-card.ana img {
  object-position: center 24%;
}

.team-card.rian img {
  object-position: center 18%;
}

.team-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
  content: "";
}

.team-card div {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  border-left: 4px solid var(--wine-2);
  padding-left: 14px;
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-card p {
  margin: 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1.22fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  float: right;
  color: var(--wine-2);
  content: "+";
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  margin: 0 auto;
  padding: clamp(38px, 6vw, 62px) 20px;
  text-align: center;
}

.final-cta .primary-button {
  margin-top: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: white;
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #101010;
    overflow: hidden;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .area-grid,
  .split-section,
  .split-section.reverse,
  .about-section,
  .faq-section,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    padding-top: 34px;
  }

  .hero-media {
    min-height: auto;
  }

  .conversion-panel {
    padding: 16px;
  }

  .split-section.reverse .split-copy {
    order: initial;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .team-card,
  .team-card.lead {
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-text {
    display: block;
    max-width: 120px;
    font-size: 0.86rem;
  }

  .hero,
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  h1 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.42rem;
    line-height: 1.16;
  }

  h3 {
    font-size: 1.05rem;
  }

  .hero-copy,
  .section-heading p,
  .split-copy p,
  .about-copy p,
  .faq-intro p,
  .final-cta p,
  .feature-card p,
  .feature-card li,
  .service-card p,
  .authority-grid p,
  details p {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button {
    width: 100%;
    text-align: center;
  }

  .hero-media {
    min-height: auto;
  }

  .conversion-card {
    padding: 18px;
  }

  .conversion-card li {
    padding-left: 28px;
  }

  .panel-note {
    display: block;
  }

  .panel-note span {
    margin-top: 4px;
    text-align: left;
  }

  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .strip-item {
    padding: 18px 16px;
  }

  .large-card,
  .service-card,
  .authority-grid article {
    padding: 18px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .team-card,
  .team-card.lead {
    min-height: 250px;
  }

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

  .team-card div {
    right: 10px;
    bottom: 10px;
    left: 10px;
    border-left-width: 3px;
    padding-left: 9px;
  }

  .team-card h3 {
    font-size: 0.98rem;
  }

  .team-card p {
    font-size: 0.62rem;
  }

  summary {
    padding: 16px;
    font-size: 0.96rem;
  }

  details p {
    padding: 0 16px 16px;
  }

  .large-card,
  .service-card {
    min-height: auto;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
