* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #444;
  background-color: #f7f8fc;
  line-height: 1.8;
  padding-top: 0;
}
header {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #007BFF, #0056b3);
  color: #fff;
}
.btn-whatsapp {
  margin-top: 30px;
  display: inline-block;
  padding: 15px 40px;
  background-color: #25D366;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
section h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #007BFF;
  display: block;
  margin: 10px auto;
}
.faq {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  margin-bottom: 20px;
  cursor: pointer;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.faq-item:hover {
  transform: scale(1.02);
}
.faq-answer {
  display: none;
  padding: 10px;
  margin-top: 5px;
  color: #333;
}
.chat-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  width: 300px;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
.chat-header {
  background-color: #007BFF;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  max-height: 300px;
  transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
}
.chat-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-height: 300px;
  transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
}
.chat-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 0.9rem;
}
.chat-input {
  display: flex;
  border-top: 1px solid #ccc;
}
.chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}
.chat-input button {
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.05);
}
/* --- Botão minimizado com ícone separado --- */
.chat-icon {
  display: none;
  font-size: 24px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
}

.chat-container.minimized {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #007BFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.chat-container.minimized .chat-header,
.chat-container.minimized .chat-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.chat-container.minimized .chat-icon {
  display: block;
  opacity: 1;
  visibility: visible;
}

.logo {
  width: 160px;
  margin-bottom: 8px;
}

.page-obrigado {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 100vh;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  header {
    padding: 60px 10px;
  }
  .btn-whatsapp {
    padding: 12px 25px;
  }
  .chat-container {
    width: 90%;
    right: 5%;
  }
}
/* --- Serviços em mosaico --- */
#servicos {
  background-color: #fff;
  padding: 80px 20px;
}

#servicos h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* --- Serviços em mosaico --- */
#servicos {
  background-color: #fff;
  padding: 80px 20px;
}

#servicos h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0 10px;
}

.service-item {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: center;
}

/* --- Serviço Item: aprimorado para listas, destaques e hierarquia visual --- */
.service-item {
  background-color: #f0f4ff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

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

.service-item h3 {
  color: #0056b3;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.service-item p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}


/* --- Destaque de entregas com tags visuais --- */
.service-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 10px 0 15px;
  max-width: 100%;
}

 .feature-tag {
  background-color: #f1f3f5;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: background 0.3s;
  white-space: normal;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  display: inline-block;
}

.feature-tag:hover {
  background-color: #d0e6fb;
}

html {
  scroll-behavior: smooth;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  z-index: 1000;
  text-align: center;
}

.main-nav ul#mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.main-nav li {
  display: inline;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 8px 12px;
  transition: background 0.3s;
}

.main-nav a:hover {
  background-color: #f0f0f0;
  border-radius: 6px;
}
/* --- Seção Porque (Motivos) --- */
.section-motivo-site {
  background-color: #f9fbff;
  padding: 80px 20px;
}

.section-motivo-site h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #2b2d42;
}

.motivo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.motivo-item {
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.motivo-item:hover {
  transform: translateY(-6px);
}

.motivo-item h3 {
  color: #2b2d42;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.motivo-item p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* --- Estilos para seções de informações (Quem Somos, Missão, O que Entregamos, Essência) --- */

.info-mosaic {
  background-color: #ffffff;
  width: 100%;
  padding: 60px 20px;
  text-align: center;
}

.info-mosaic .info-item {
  max-width: 1000px;
  margin: 0 auto;
}

.info-mosaic h2 {
  font-size: 1.8rem;
  color: #2b2d42;
  margin-bottom: 1rem;
}

.info-mosaic h3 {
  font-size: 1.2rem;
  color: #007BFF;
  margin-bottom: 1rem;
}

.info-mosaic p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.info-mosaic ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.info-mosaic li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #444;
  position: relative;
  padding-left: 1.2em;
}

.info-mosaic li::before {
  content: '🔹';
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .info-mosaic {
    padding: 40px 15px;
  }

  .info-mosaic h2 {
    font-size: 1.5rem;
  }

  .info-mosaic h3 {
    font-size: 1.1rem;
  }
}
/* --- Layout vertical para seções informativas em mosaico --- */
.section-mosaic-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #f7f8fc;
  padding: 10px 0 40px;
}

.section-mosaic-wrapper .info-mosaic {
  background-color: #ffffff;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.section-mosaic-wrapper .info-mosaic .info-item {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 30px;
}
.service-item {
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
  align-items: center;
}

.service-features {
  max-width: 100%;
}

.service-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  justify-content: center;
}

.service-item h3::before {
  content: '✨';
  font-size: 1.5rem;
}

.service-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.feature-tag {
  font-size: 0.9rem;
  font-weight: 500;
}

.service-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  justify-content: center;
}

.service-item h3 i {
  font-size: 1.5rem;
  color: #1a237e;
}
.service-item h3 {
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.service-item h3 .pacote-nome {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #007BFF;
  text-align: center;
}
.collapsible {
  cursor: pointer;
  transition: transform 0.3s;
}

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

.service-description {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  text-align: center;
}

.service-item.active .service-description {
  display: block;
  max-height: 1000px;
  opacity: 1;
}
.menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  color: #007BFF;
  display: none;
  cursor: pointer;
  padding: 10px;
}


.menu-toggle i {
  display: inline-block;
  font-size: 24px;
  color: #007BFF;
}


@media (max-width: 768px) {
  .main-nav {
    position: relative;
    border-bottom: none;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 2000;
  }

  .main-nav ul#mobile-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    z-index: 1000;
    border-top: 1px solid #ddd;
    transition: max-height 0.3s ease-out;
  }

  .main-nav ul#mobile-menu:not(.hidden) {
    /* allow retractable expansion */
    display: flex;
    max-height: 1000px; /* enough to show all items and push content */
  }

  .main-nav li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .main-nav a {
    padding: 12px 20px;
    text-align: center;
  }
}

@media (min-width: 769px) {
  #mobile-menu {
    display: flex !important;
    justify-content: center;
    gap: 30px;
  }

  .menu-toggle {
    display: none;
  }
}

/* Desktop: keep nav fixed and push content */
@media (min-width: 769px) {
  body {
    padding-top: 60px;
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}

/* Mobile: reset padding-top and keep nav fixed */
@media (max-width: 768px) {
  body {
    padding-top: 0;
  }
  .main-nav {
    position: relative;
  }
}
/* Ensure mobile toggle is visible and contained */
@media (max-width: 768px) {
  .main-nav {
    position: relative !important;
    min-height: 50px !important;         /* ensure space for toggle */
    background-color: #ffffff !important;   /* background behind toggle */
    padding: 10px 20px !important;
  }
  .menu-toggle {
    display: block !important;
    position: absolute !important;
    right: 20px !important;
    top: 15px !important;
    transform: none !important;
    z-index: 2000 !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
}