@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 100px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 90px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  font-weight: 500;
  color: #003366;
  position: relative;
  padding: 5px 0;
  font-size: 0.95rem;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e67e22;
  transition: width 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.btn-header {
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 20px;
  display: inline-block;
}

.btn-header:hover {
  background: #128c7e;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #003366;
}

/* HERO / CARROSSEL */
.hero {
  position: relative;
  height: 490px;
  overflow: hidden;
}

.carousel {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, #003366);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  color: #fff;
  text-align: center;
  width: 100%;
}

.slide-content h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 10px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.slide-content p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-green {
  background: #25d366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

.btn-green:hover {
  background: #128c7e;
}

.slide-content .btn-green {
  margin: 0 auto;
  display: inline-block;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-prev {
  left: 15px;
}

.carousel-next {
  right: 15px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #003366;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #e67e22;
  width: 24px;
  border-radius: 6px;
}

/* HISTÓRIA */
.historia {
  padding: 60px 0;
}

.historia-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.historia-img img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.historia-text h2 {
  color: #003366;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.historia-text p {
  color: #666;
  margin-bottom: 12px;
  line-height: 1.7;
}

.link {
  color: #003366;
  font-weight: 600;
  text-decoration: none;
}

.link:hover {
  color: #e67e22;
}

/* SEGUROS */
.seguros {
  padding: 60px 0;
  background: #f4f7f9;
}

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

.section-header h2 {
  color: #003366;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.section-header p {
  color: #666;
  font-size: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

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

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

.card-body {
  padding: 18px;
}

.card-body h3 {
  color: #003366;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.card-body p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.card-body .link {
  color: #003366;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.card-body .link:hover {
  color: #e67e22;
}

.card-body .btn-green {
  font-size: 0.85rem;
  padding: 8px 16px;
}

/* DIFERENCIAIS */
.diferenciais {
  padding: 60px 0;
}

.cards-icon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card-icon {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.card-icon .icon {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 12px;
  display: block;
}

.card-icon h3 {
  color: #003366;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.card-icon p {
  color: #666;
  font-size: 0.9rem;
}

/* DEPOIMENTOS */
.depoimentos {
  padding: 60px 0;
  background: #f4f7f9;
}

.cards-depoimentos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.depoimento {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.depoimento p {
  font-style: italic;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.6;
}

.depoimento footer {
  font-weight: 600;
  color: #003366;
}

/* FAQ */
.faq {
  padding: 60px 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-list details {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #eee;
  overflow: hidden;
}

.faq-list summary {
  padding: 16px 20px;
  font-weight: 600;
  color: #003366;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  font-size: 1.3rem;
  color: #e67e22;
}

.faq-list details[open] summary::after {
  content: '-';
}

.faq-list p {
  padding: 0 20px 16px;
  color: #666;
}

/* CTA FINAL */
.cta-final {
  background: #003366;
  padding: 60px 0;
  text-align: center;
}

.cta-final h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-size: 1rem;
}

/* FOOTER */
.footer {
  background: #003366;
  color: rgba(255, 255, 255, 0.85);
  padding: 50px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 35px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer ul {
  list-style: none;
}

.footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer a:hover {
  color: #e67e22;
}

.footer-endereco {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contato p {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .nav {
    position: fixed;
    left: -100%;
    width: 100%;
    top: 100px;
    height: calc(100vh - 90px);
    flex-direction: column;
    padding: 40px 20px;
    transition: left 0.3s;
    background: #fff;
  }

  .nav.ativo {
    left: 0;
  }

  .menu {
    flex-direction: column;
  }

  .btn-header {
    margin-left: 0;
    margin-top: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .historia-container {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 350px;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }

  .carousel-prev,
  .carousel-next {
    display: none;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .cta-final h2 {
    font-size: 1.4rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
/* Ajuste WordPress/Elementor - remover caixa estreita da Home */
body.home .elementor,
body.home .elementor-section,
body.home .elementor-container,
body.home .elementor-widget-wrap,
body.home .elementor-element,
body.home .page-content,
body.home .site-main,
body.home main {
  max-width: none !important;
}

body.home {
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
}

body.home .header,
body.home .hero,
body.home footer,
body.home .footer {
  width: 100% !important;
  max-width: none !important;
}
/* Forçar Home em largura total no WordPress */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

body.home,
body.home #page,
body.home .site,
body.home .site-content,
body.home .content-area,
body.home .site-main,
body.home main,
body.home article,
body.home .entry-content,
body.home .page-content,
body.home .elementor,
body.home .elementor-location-single,
body.home .elementor-widget-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.home .entry-content > * {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}