/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #aaa;
  background-color: white;
  padding-top: 80px;
  /* Ajuste esse valor se o header for maior ou menor */
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* 1 alteração - ok */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  font-size: 1rem;
  font-weight: bold;
  color: #f0c040;
}

.logo a {
  font-size: 1.2rem;
  font-family: sans-serif;
  font-weight: bold;
  color: #f0c040;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: #f0c040;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #f0c040;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background-color: white;
  color: blue;
}

.heroslide {
  text-align: center;
  padding: 4rem 2rem;
  background-color: white;
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  background-color: #e03e00;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #f0c040;
}

.highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  flex-wrap: wrap;
}

.highlight {
  flex: 1 1 300px;
  text-align: center;
}

.highlight img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.highlight h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #000000;
}

footer {
  background-color: #000000;
  color: #f0c040;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.site-footer {
  background-color: #000000;
  color: #f0c040;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f0c040;
}

.footer-section p,
.footer-section ul {
  margin: 0;
  font-size: 14px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #f0c040;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  display: inline-block;
}


.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 13px;
  color: #aaa;
}

/* Botão do menu (hambúrguer) */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

/* Responsividade do menu */
@media (max-width: 768px) {

  nav ul {
    flex-direction: column;
    background-color: #002d72;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    padding: 1rem 0;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    text-align: center;
    padding: 0.5rem 0;
  }

  .menu-toggle {
    display: block;

  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .btn-primary {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 1rem auto;
  }

  .galeria img {
    width: 80px;
  }

}

/* submenu */
.submenu,
.submenu2 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  list-style: none;
  padding: 20px;
  margin: 0;
  border: 0px solid white;
  z-index: 1000;
}

.has-submenu,
.has-submenu2 {
  position: relative;
}

.submenu li,
.submenu2 li {
  width: 300px;
  height: 30px;
}

.submenu.show,
.submenu2.show {
  display: block;
}


/* FLEX CONTENT WRAPPERS - Conteudo misto Texto/Imagem */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.text-content {
  flex: 1 1 500px;
}

.image-content {
  flex: 1 1 400px;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Slides  */
.swiper-container {
  width: 100%;
  max-width: 900px;
  height: 100%;
  max-height: 272px;
  margin: 0% auto;
  background-color: white;
  overflow: hidden;
}

.swiper-slide,
img {
  width: auto;
  height: auto;
  object-fit: cover;
  background-color: white;
}

.swiper-button-next,
.swiper-button-prev {
  color: #f3f3f7;
}

.swiper-pagination-bullet {
  background: #fff;
}

/* CARD GRID */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.benefit-card {
  background-color: #f4f6fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 2.5rem;
  color: #f57c00;
  margin-bottom: 1rem;
}

.benefit-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* FORM STYLES */
.quote-form {
  max-height: 80vh;
  overflow-y: auto;
  max-width: 600px;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-group.checkbox label {
  display: flex;
  align-items: flex-start;
  font-weight: normal;
}

.form-group.checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}

.quote-form .btn-primary {
  width: 100%;
  padding: 0.75rem;
  font-size: 1.1rem;
  background-color: #e03e00;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.quote-form .btn-primary:hover {
  background-color: #f44c00;
}

.share-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background-color: #222;
  padding: 10px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  border-top: 1px solid #ccc;
  margin-top: 10px;
  flex-wrap: wrap;
}

.share-bar span {
  font-weight: bold;
  color: #e06c00;
}

.share-bar .icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-size: cover;
  transition: transform 0.2s ease;
}

.share-bar .icon:hover {
  transform: scale(1.1);
}

.share-bar .fb {
  background-image: url('images/facebook.jpg');
}

.share-bar .wa {
  background-image: url('images/whatsapp.png');
}

.share-bar .ln {
  background-image: url('images/instagram.jpg');
}