* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  background: #0a1628;
  overflow-x: hidden;
}

section {
  padding: 8rem 4rem;
}

h1, h2, h3 {
  line-height: 1.2;
}

p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #a0aec0;
}

a {
  text-decoration: none;
  color: inherit;
}

.highlight {
  color: #e41e26;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 2.8rem;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: #e41e26;
  color: #fff;
}

.btn-primary:hover {
  background: #c4181f;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px #e41e2666;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #0a1628;
  transform: translateY(-2px);
}

/* ===================== SECTION HEADER ===================== */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-tag {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #e41e26;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.7rem;
  max-width: 60rem;
  margin: 0 auto;
}

/* ===================== NAVBAR ===================== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  background: #011F4BF2;
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #FFFFFF0F;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo-img {
  height: 5rem;
  width: auto;
}

.nav-brand {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-slogan {
  font-size: 1.4rem;
  font-style: italic;
  color: #a0aec0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFFFFFCC;
  transition: color 0.2s;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e41e26;
  transition: width 0.3s;
}

.nav-links:hover {
  color: #fff;
}

.nav-links:hover::after {
  width: 100%;
}

.nav-btn {
  background: #e41e26;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  color: #fff !important;
  font-weight: 600;
}

.nav-btn::after {
  display: none;
}

.nav-btn:hover {
  background: #c4181f;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 7rem;
  left: 0;
  right: 0;
  background: #0a1628;
  padding: 2rem;
  z-index: 999;
  border-bottom: 2px solid #e41e26;
}

.mobile-link {
  display: block;
  padding: 1.2rem 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #FFFFFF0D;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1f3c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60rem;
  height: 60rem;
  background: radial-gradient(circle, #e41e2626 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50rem;
  height: 50rem;
  background: radial-gradient(circle, #E41E2614 0%, transparent 70%);
  border-radius: 50%;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 90rem;
  padding: 0 4rem;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #e41e26;
  margin-bottom: 2rem;
}

.hero-subtitle i {
  margin-right: 0.5rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 5.5rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.hero-description {
  font-size: 1.9rem;
  color: #a0aec0;
  max-width: 65rem;
  margin-bottom: 4rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ===================== STATS ===================== */
.stats {
  background: #e41e26;
  padding: 5rem 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 110rem;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 2rem;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #FFFFFF33;
}

.stat-number {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-detail {
  display: block;
  font-size: 1.6rem;
  color: #FFFFFFB3;
  font-weight: 600;
}

.stat-label {
  font-size: 1.4rem;
  color: #FFFFFFE6;
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
}

/* ===================== PRODUCTS ===================== */
.produtos {
  background: #0a1628;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 110rem;
  margin: 0 auto 5rem;
}

.produto-card {
  background: #111827;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  transition: all 0.3s ease;
}

.produto-card:hover {
  transform: translateY(-8px);
  border-color: #e41e26;
  box-shadow: 0 12px 40px #e41e2626;
}

.card-icon {
  font-size: 3.5rem;
  color: #e41e26;
  margin-bottom: 2rem;
}

.produto-card h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.produto-card p {
  font-size: 1.5rem;
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ===================== VANTAGENS ===================== */
.vantagens {
  background: #0d1f3c;
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 110rem;
  margin: 0 auto;
}

.vantagem-item {
  text-align: center;
  padding: 2rem;
}

.vantagem-icon {
  font-size: 4rem;
  color: #e41e26;
  margin-bottom: 2rem;
  display: block;
}

.vantagem-item h3 {
  font-size: 1.9rem;
  color: #fff;
  margin-bottom: 1rem;
}

.vantagem-item p {
  font-size: 1.5rem;
}

/* ===================== SOBRE ===================== */
.sobre {
  background: #0a1628;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 115rem;
  margin: 0 auto;
  align-items: center;
}

.sobre-image-placeholder {
  width: 100%;
  height: 45rem;
  background: linear-gradient(135deg, #111827, #1e293b);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1e293b;
}

.sobre-image-placeholder i {
  font-size: 8rem;
  color: #e41e26;
  opacity: 0.3;
}

.sobre-content .section-tag {
  text-align: left;
  margin-bottom: 1rem;
}

.sobre-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 2rem;
}

.sobre-content p {
  margin-bottom: 1.5rem;
}

.sobre-highlights {
  margin: 2.5rem 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  color: #fff;
}

.highlight-item i {
  color: #25d366;
  font-size: 1.8rem;
}

/* ===================== DEPOIMENTOS ===================== */
.depoimentos {
  background: #0d1f3c;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 110rem;
  margin: 0 auto;
}

.depoimento-card {
  background: #111827;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 3rem;
  transition: transform 0.3s;
}

.depoimento-card:hover {
  transform: translateY(-5px);
}

.stars {
  margin-bottom: 1.5rem;
  color: #f6c343;
  font-size: 1.4rem;
}

.stars i + i {
  margin-left: 0.2rem;
}

.depoimento-card > p {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: #FFFFFFCC;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.author-avatar {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: #e41e26;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.depoimento-author strong {
  display: block;
  font-size: 1.5rem;
  color: #fff;
}

.depoimento-author span {
  font-size: 1.3rem;
  color: #a0aec0;
}

/* ===================== FAQ ===================== */
.faq {
  background: #0a1628;
}

.faq-container {
  max-width: 75rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #1e293b;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 2rem 0;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #e41e26;
}

.faq-question i {
  transition: transform 0.3s;
  font-size: 1.3rem;
  color: #a0aec0;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #e41e26;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 20rem;
  padding-bottom: 2rem;
}

.faq-answer p {
  font-size: 1.5rem;
  line-height: 1.7;
}

/* ===================== CONTATO ===================== */
.contato {
  background: #0d1f3c;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 110rem;
  margin: 0 auto;
}

.contato-card {
  background: #111827;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 3.5rem 3rem;
  text-align: center;
  transition: border-color 0.3s;
}

.contato-card:hover {
  border-color: #e41e26;
}

.contato-icon {
  font-size: 3.5rem;
  color: #e41e26;
  margin-bottom: 2rem;
}

.contato-card h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.contato-card p {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contato-info {
  display: block;
  font-size: 1.5rem;
  color: #a0aec0;
  border: 1px dashed #1e293b;
  padding: 1rem;
  border-radius: 8px;
}

.horario-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.horario-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #1e293b;
  font-size: 1.5rem;
  color: #a0aec0;
}

.horario-item:last-child {
  border-bottom: none;
}

.horario-item strong {
  color: #fff;
}

/* ===================== CTA FINAL ===================== */
.cta-final {
  background: linear-gradient(135deg, #e41e26, #c4181f);
  padding: 8rem 4rem;
  text-align: center;
}

.cta-final-content {
  max-width: 70rem;
  margin: 0 auto;
}

.cta-final h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-final p {
  font-size: 1.7rem;
  color: #FFFFFFD9;
  margin-bottom: 3rem;
}

.cta-btn-large {
  font-size: 1.7rem;
  padding: 1.6rem 3.5rem;
  background: #fff;
  color: #e41e26;
  font-weight: 700;
  border-radius: 8px;
  border: none;
}

.cta-btn-large:hover {
  background: #0a1628;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px #0000004D;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #070f1d;
  padding: 6rem 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 110rem;
  margin: 0 auto 4rem;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}

.footer-col p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.footer-col p i {
  margin-right: 0.5rem;
  color: #e41e26;
  width: 1.6rem;
  text-align: center;
}

.footer-col a {
  display: block;
  font-size: 1.4rem;
  color: #a0aec0;
  margin-bottom: 0.8rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #e41e26;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #FFFFFF0D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #a0aec0;
  margin-bottom: 0;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: #e41e26;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #FFFFFF0D;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 1.3rem;
  color: #FFFFFF4D;
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 6rem;
  height: 6rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  z-index: 999;
  box-shadow: 0 4px 20px #25D36666;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px #25D36699;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  section {
    padding: 6rem 3rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vantagens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contato-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 2rem;
  }

  .nav-slogan {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: block;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-description {
    font-size: 1.6rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item::after {
    display: none !important;
  }

  .stat-number {
    font-size: 3rem;
  }

  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .vantagens-grid {
    grid-template-columns: 1fr;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sobre-image-placeholder {
    height: 25rem;
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-final {
    padding: 5rem 2rem;
  }

  .cta-final h2 {
    font-size: 2.4rem;
  }
}
