:root {
  --bg-dark: #050505;
  --bg-dark-2: #0f0f10;
  --bg-light: #f2f2f2;
  --white: #ffffff;
  --text: #d8d8d8;
  --text-dark: #1f1f1f;
  --red: #ff3131;
  --red-dark: #d92020;
  --green: #49b84f;
  --green-dark: #37933d;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  --radius: 18px;
  --transition: 0.35s ease;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), #801515);
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: var(--shadow);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1rem;
}

.logo-text span {
  font-size: 0.78rem;
  color: #bbbbbb;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu-link {
  color: #f0f0f0;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}

.menu-link:hover,
.menu-link.active {
  color: var(--white);
}

.menu-link:hover::after,
.menu-link.active::after {
  width: 100%;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: var(--transition);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.92) 44%, rgba(0, 0, 0, 0.3) 100%),
    var(--bg-dark);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(255, 49, 49, 0.08), transparent 35%);
  pointer-events: none;
}

.hero-grid {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 40px;
  padding: 48px 0;
}

.hero-content {
  max-width: 620px;
}

.hero-logo {
  margin-bottom: 20px;
}

.hero-logo-box {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, #101010, #1a1a1a);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--red);
  box-shadow: var(--shadow);
}

.hero-tag,
.section-tag {
  display: inline-block;
  color: #ff8a8a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero h1 span {
  color: var(--white);
}

.hero p {
  color: var(--text);
  font-size: 1.08rem;
  max-width: 590px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-infos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.info-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 155px;
}

.info-box strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
}

.info-box span {
  font-size: 0.92rem;
  color: #bbbbbb;
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 640px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  border-radius: 28px 0 0 28px;
  box-shadow: var(--shadow);
}

/* SECTIONS */
.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-light .section-tag {
  color: var(--red);
}

.section-light h2,
.section-light h3 {
  color: #111;
}

.section-light p {
  color: #555;
}

.services,
.about,
.contact,
.cta {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  line-height: 1.1;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.section-divider span {
  width: 94px;
  height: 3px;
  border-radius: 99px;
  background: var(--red);
}

.section-divider i {
  color: #555;
  font-size: 1.2rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 49, 49, 0.12);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 22px;
}

.service-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* ABOUT */
.about {
  background: linear-gradient(180deg, #0b0b0c, #151517);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  min-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
  line-height: 1.1;
}

.about-content p {
  color: var(--text);
  margin-bottom: 24px;
}

.about-list {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d8d8d8;
}

.about-list i {
  color: var(--red);
  margin-top: 4px;
}

/* CTA */
.cta {
  background: var(--bg-dark);
}

.cta-box {
  background: linear-gradient(135deg, #121212, #1b1b1c);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 10px;
}

.cta-box p {
  color: var(--text);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
}

.contact-card i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 14px;
}

.contact-card h3 {
  margin-bottom: 8px;
}

/* FOOTER */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-content p {
  color: #b8b8b8;
  font-size: 0.94rem;
}

.footer-content a {
  color: var(--white);
  font-weight: 600;
}

/* ANIMAÇÕES */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

/* RESPONSIVO */
@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-image img {
    min-height: 500px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .menu {
    position: absolute;
    top: 84px;
    right: 16px;
    width: min(280px, calc(100% - 32px));
    background: #111;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-actions .btn-red {
    display: none;
  }

  .hero-grid,
  .services-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-grid {
    min-height: auto;
    padding: 32px 0 70px;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
    min-height: 360px;
  }

  .hero-image img {
    border-radius: 22px;
    min-height: 360px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .services,
  .about,
  .contact,
  .cta {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .footer-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 18px 0;
  }
}

@media (max-width: 560px) {
  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .info-box {
    width: 100%;
  }

  .cta-box {
    padding: 28px 22px;
  }

  .section-divider span {
    width: 56px;
  }
}