* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #e30613;
  --orange: #ff9d00;
  --green: #2e7d32;
  --black: #050505;
  --text: #1d2430;
  --muted: #4b5563;
  --line: #d9dde3;
  --white: #ffffff;
  --dark-footer: #121820;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

a {
  text-decoration: none;
}

/* HEADER */

.site-header {
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 54px;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* LOGO */

.logo img {
  height: clamp(80px, 6vw, 120px);
  width: auto;
}

.logo-text {
  font-weight: 900;
  font-size: 37px;
  line-height: 0.82;
  letter-spacing: -2.4px;
  color: var(--black);
  display: flex;
  flex-direction: column;
}

.brand-divider {
  width: 2px;
  height: 60px;
  background: #333;
}

.brand-subtitle {
  font-size: 23px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 52px;
  font-size: 24px;
  font-weight: 800;
}

/* COLORS */

.red {
  color: var(--red);
}

.orange {
  color: var(--orange);
}

.green {
  color: var(--green);
}

.red-bg {
  background: var(--red);
}

.orange-bg {
  background: var(--orange);
}

.green-bg {
  background: var(--green);
}

/* HERO */

.hero {
  min-height: 820px;
  display: grid;
  grid-template-columns: 52% 48%;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Curva inferior */

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -28px;
  height: 86px;
  background: var(--dark-footer);
  border-top-left-radius: 55% 80px;
  border-top-right-radius: 55% 80px;
  z-index: 4;
}

.hero-left {
  padding: 42px 44px 72px 65px;
  position: relative;
  z-index: 2;
  background: var(--white);
}

.hero-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -72px;
  width: 145px;
  height: 100%;
  background: var(--white);
  transform: skewX(-11deg);
  transform-origin: top left;
  z-index: -1;
}

.hero-left h1 {
  max-width: 690px;
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.04;
  letter-spacing: -2.8px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 22px;
}

.hero-left h1 span {
  color: var(--green);
}

.hero-description {
  max-width: 660px;
  font-size: clamp(17px, 1.22vw, 21px);
  line-height: 1.27;
  margin-bottom: 16px;
}

.hero-description strong {
  font-weight: 900;
}

.hero-proof {
  margin: 18px 0 18px;
}

.proof-line {
  width: 8px;
  height: 72px;
  background: var(--green);
}

.hero-proof p {
  font-size: clamp(17px, 1.2vw, 22px);
}

.hero-proof strong {
  color: var(--green);
  font-weight: 900;
}

.selector-title {
  font-size: clamp(22px, 1.7vw, 31px);
  line-height: 1.15;
  color: var(--black);
  font-weight: 900;
  margin-bottom: 16px;
}

/* PROFILE CARDS */

.profile-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 730px;
}

.profile-card {
  min-height: 200px;
  padding: 14px 14px 38px;
}

.red-card {
  border: 1.8px solid rgba(227, 6, 19, 0.55);
}

.orange-card {
  border: 1.8px solid rgba(255, 157, 0, 0.55);
}

.green-card {
  border: 1.8px solid rgba(46, 125, 50, 0.55);
}

.icon-circle {
  width: 50px;
  height: 50px;
  font-size: 22px;
}

.profile-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.red-card h3 {
  color: var(--red);
}

.orange-card h3 {
  color: var(--orange);
}

.green-card h3 {
  color: var(--green);
}

.profile-card p {
  font-size: 13px;
  line-height: 1.25;
}

.profile-card button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  color: var(--white);
  font-size: 38px;
  line-height: 28px;
  font-weight: 600;
  position: absolute;
  right: 15px;
  bottom: 15px;
  cursor: pointer;
}

.red-card button {
  background: var(--red);
}

.orange-card button {
  background: var(--orange);
}

.green-card button {
  background: var(--green);
}

.pilot-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  font-size: 18px;
}

.shield {
  width: 38px;
  height: 42px;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 25px;
  font-weight: 900;
  clip-path: polygon(50% 0%, 92% 16%, 86% 70%, 50% 100%, 14% 70%, 8% 16%);
}

.pilot-note strong {
  color: var(--green);
  font-weight: 900;
}

/* RIGHT SIDE */

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  display: block;
}

.feature-bar {
  position: absolute;
  left: 70px;
  right: 70px;
  bottom: 68px;
  height: 70px;
  background: #f3f4f6;
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.feature-bar div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* antes 14 */

  font-size: 14px;
  font-weight: 700;

  border-right: 1.5px solid #e5e7eb;
}

.feature-bar div:last-child {
  border-right: none;
}

.feature-icon {
  width: 34px; /* antes 46 */
  height: 34px;

  padding: 6px; /* antes 8 */
  border-radius: 8px;

  background: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);

  stroke-width: 2.2;
}

.feature-bar strong {
  font-size: 15px;
  letter-spacing: -0.2px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .site-header {
    padding: 0 28px;
  }

  .main-nav {
    gap: 28px;
    font-size: 20px;
  }

  .hero-left {
    padding: 36px 44px 42px 55px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    font-size: 18px;
  }

  .hero {
    height: calc(100vh - 100px);
    min-height: 640px;
    max-height: 720px;
    display: grid;
    grid-template-columns: 52% 48%;
    position: relative;
    overflow: hidden;
    background: var(--white);
  }

  .hero-left::after {
    right: -64px;
    width: 128px;
    transform: skewX(-10deg);
  }

  .hero-right {
    position: relative;
    overflow: hidden;
    min-height: 100%;
  }

  .feature-bar {
    left: 24px;
    right: 24px;
    bottom: 44px;
  }
}

@media (max-width: 720px) {
  .brand {
    gap: 18px;
  }

  .logo-text {
    font-size: 30px;
  }

  .brand-subtitle {
    font-size: 18px;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-left h1 {
    max-width: 660px;
    font-size: clamp(32px, 2.8vw, 48px);
    line-height: 1.04;
    letter-spacing: -2.6px;
    margin-bottom: 18px;
  }

  .profile-cards {
    grid-template-columns: 1fr;
  }

  .profile-card {
    min-height: 175px;
    padding: 13px 14px 34px;
  }

  .feature-bar {
    height: auto;
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .feature-bar div {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 14px;
  }

  .feature-bar div:last-child {
    border-bottom: none;
  }
}

.feature-icon.red {
  color: var(--red);
}

.feature-icon.orange {
  color: var(--orange);
}

.feature-icon.green {
  color: var(--green);
}
