* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #0c4cae;
  color: white;
  padding: 10px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  position: relative;
}

.logo {
  max-width: 170px;
}

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

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #061a3a, #0c4cae);
  color: white;
  padding: 95px 0;
}

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

/* VIDEO */
.video-box {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}

.video-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 13px;
}

.sound-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: white;
  cursor: pointer;
}

/* TEXT */
.hero-text h1 {
  font-size: 48px;
}

.hero-text h2 {
  font-size: 28px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 30px;
  background: #0c4cae;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

/* NUMBERS */
.numbers {
  background: #111;
  color: white;
  padding: 40px 0;
}

.numbers-grid {
  display: flex;
  justify-content: space-around;
}

/* SECTION */
.section {
  padding: 75px 0;
}

/* CARDS */
.cards {
  display: flex;
  gap: 24px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  flex: 1;
}

/* CONTACT */
.contact {
  background: #0c4cae;
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}

/* ABOUT + FORM */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-video {
  width: 100%;
}

.about-video .video-box {
  max-width: 100%;
  height: 300px;
}

.lead-form-box {
  background: #f4f6f8;
  padding: 32px;
  border-radius: 18px;
}

/* FORM */
#leadForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#leadForm input {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#leadForm button {
  padding: 14px;
  background: #0c4cae;
  color: white;
  border: none;
  border-radius: 8px;
}

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

  .video-box {
    height: 300px;
  }
}

/* RESPONSIVO CELULAR */
@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .header {
    padding: 8px 0;
  }

  .header-content {
    height: auto;
    min-height: 74px;
  }

  .logo {
    max-width: 135px;
  }

  .mobile-menu-btn {
    display: block;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 8px;
    background: transparent;
    color: white;
    font-weight: 700;
    cursor: pointer;
  }

  .menu {
    display: none;
    position: absolute;
    top: 66px;
    right: 0;
    width: 220px;
    background: #08387f;
    border-radius: 10px;
    overflow: hidden;
    z-index: 999;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  }

  .menu.menu-open {
    display: block;
  }

  .menu a {
    display: block;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .menu a:last-child {
    border-bottom: none;
  }

  .hero {
    padding: 55px 0;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  .hero-text h2 {
    font-size: 21px;
    line-height: 1.3;
  }

  .video-box {
    height: 230px;
    border-radius: 18px;
  }

  .numbers-grid {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .section {
    padding: 55px 0;
  }

  .cards {
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-grid > *:first-child {
    order: 1;
  }

  .contact-grid > *:last-child {
    order: 2;
  }

  .contact iframe,
  .contact map,
  .contact .map,
  .contact .mapa {
    width: 100%;
    max-width: 100%;
  }

  .about-grid {
    gap: 32px;
  }

  .lead-form-box {
    padding: 24px;
  }
}

/* CELULAR PEQUENO */
@media (max-width: 480px) {
  .logo {
    max-width: 120px;
  }

  .menu {
    width: 190px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text h2 {
    font-size: 19px;
  }

  .video-box {
    height: 205px;
  }

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