/* =====================================================
   RESET + BASE
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f7f9fc;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 80px 0;
  scroll-margin-top: 100px;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 14px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  color: #6b7280;
}

/* =====================================================
   HEADER
===================================================== */

header {
  background: #071a2d;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
}

.menu {
  display: flex;
  gap: 24px;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.hamburger {
  width: 35px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 4px;
  display: block;
  background: #fff;
  border-radius: 4px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.menu.active {
  display: flex;
}

/* =====================================================
   HERO
===================================================== */

.hero {
  padding: 80px 0;
  background: linear-gradient(to bottom, #071a2d, #0b2d4a);
  color: #fff;
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 24px;
  opacity: 0.95;
}

.benefits {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.benefits span {
  font-weight: 500;
}

.hero-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  
  border-radius: 10%;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
  padding: 10px;
}

.btn-primary {
  background: #22c55e;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
 

}
.btn-tertiary {
  background: transparent;

  border: 2px solid #fff;
  color: #fff;
}

/* =====================================================
   TRUST SECTION
===================================================== */

.trust-section {
  background: #fff;
}

.trust-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.trust-card {
  padding: 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  transition: 0.3s;
}

.trust-card:hover {
  border-color: #2563eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.trust-card h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: #0f172a;
}

.trust-card p {
  color: #475569;
  line-height: 1.7;
}

/* ===================================================== */
/* QUEM SOU EU */
/* ===================================================== */

.about-section {
  padding: 90px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #0ea5e9;
  text-transform: uppercase;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 0;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
}

.about-highlights {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.highlight-item {
  font-size: 0.98rem;
  font-weight: 500;
  color: #1e293b;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

/* ===================================================== */
/* RESPONSIVO */
/* ===================================================== */


/* =====================================================
   SERVICES + STEPS
===================================================== */

.cards,
.steps {
  display: grid;
  gap: 20px;
}

.card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card h3 {
  margin-bottom: 12px;
  color: #0b2d4a;
}

.step {
  background: #fff;
  padding: 20px;
  border-left: 5px solid #0b2d4a;
  border-radius: 12px;
}

/* =====================================================
   AVALIAÇÕES / CARROSSEL
===================================================== */

.carousel-container {
  width: 100%;
  max-width: 550px;
  margin: auto;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
}

.stars {
  font-size: 22px;
  margin-bottom: 10px;
  color: #FF9800;
}

.arrow {
  position: absolute;
  top: 93%;
  transform: translateY(-50%);
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

.left-arrow { left: 10px; }
.right-arrow { right: 10px; }

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bbb;
}

.dot.active {
  background: #333;
}

section#avaliacoes {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    gap: 40px;
}
.ver_avaliacoes {
    display: flex;
    justify-content: center;
    width: 50%;
    margin: 0 auto;
}
.btn-avaliacoes {
    background: #1f2937;
    border: 2px solid #1f2937;
    color: white;
    display: flex;
    justify-content: center;
}
.avaliacao_link{
  width: 100%;
}
/* =====================================================
   FAQ
===================================================== */

.faq-section {
  background: #f8fafc;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  position: relative;
  font-weight: 600;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 24px;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 24px 24px;
}

/* =====================================================
   CONTATO + FOOTER
===================================================== */

.contato {
  background: #01192f;
  color: #fff;
}
.highlight {
      background: #071a2d;
      color: white;
      border-radius: 24px;
      padding: 40px;
      text-align: center;
    }
.links-contato,
.links_contato {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  height: auto;
    gap: 5px;
}

img.mapa {
    width: 30px;
}

img.instagram {
    width: 50px;
}

footer {
  background: #071a2d;
  color: #fff;
  text-align: center;
  padding: 40px 0;
}

/* =====================================================
   BOTÃO FLUTUANTE
===================================================== */

.botao_flutuante {
  position: fixed;
  right: 9px;
  bottom: 10px;
  z-index: 10;
}

.link_flutuante {
  width: 50px;
}

/* =====================================================
   MEDIA QUERIES
===================================================== */

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-group {
    flex-direction: row;
  }

  .hero h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .faq-question,
  .trust-card {
    padding: 20px;
  }
}

@media (max-width: 630px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    gap: 10px;
  }

  .menu a {
    color: #000;
  }

  .arrow {
    display: none;
  }
 
}

@media (min-width: 630px) {
  .hamburger {
    display: none;
  }
   .ver_avaliacoes {
    
    width: 250px;
    
}
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
  }

  .about-image img {
    max-height: 650px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 70px 0;
  }

  .about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .highlight-item {
    font-size: 0.95rem;
    padding: 12px 14px;
  }
}