* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #1f2a33;
  background: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HEADER */
header {
  width: 100%;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6e6e6;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  height: 32px;
  gap: 10px;
  border: none;
  font-weight: bold;
  font-size: 18px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #1f2a33;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #3B82F6;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #3B82F6;
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: #3B82F6;
}

nav a.active::after {
  width: 100%;
}

/* HERO CONTATO */
.hero-contact {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #2c3e50 0%, #3B82F6 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-contact::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 15px;
  animation: fadeInDown 0.8s ease;
}

.hero-content p {
  font-size: 22px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SEÇÃO DE CONTATO */
.contact-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.subtitle {
  color: #6b6b6b;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* INFORMAÇÕES DE CONTATO */
.contact-info-box h2 {
  font-size: 36px;
  color: #1f2a33;
  margin-bottom: 15px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #f7f7f7;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.info-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 8px;
}

.info-content p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.6;
}

.info-content a {
  color: #3B82F6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #2c3e50;
}

/* REDES SOCIAIS */
.social-section h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-icon {
  font-size: 24px;
}

.social-btn.whatsapp {
  background: #25D366;
}

.social-btn.whatsapp:hover {
  background: #1ea952;
  transform: translateX(5px);
}

.social-btn.facebook {
  background: #1877F2;
}

.social-btn.facebook:hover {
  background: #0d5dbf;
  transform: translateX(5px);
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.instagram:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(188, 24, 136, 0.4);
}

/* FORMULÁRIO */
.contact-form-box h2 {
  font-size: 36px;
  color: #1f2a33;
  margin-bottom: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e6e6e6;
  border-radius: 8px;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: normal;
  margin: 0;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-label span {
  font-size: 14px;
  color: #4a4a4a;
}

.btn-submit {
  padding: 16px 32px;
  background: #3B82F6;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #2c3e50;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.form-message {
  padding: 15px;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
  display: none;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* MAPA */
.map-section {
  padding: 80px 0;
  background: #f7f7f7;
}

.map-section h2 {
  font-size: 36px;
  text-align: center;
  color: #1f2a33;
  margin-bottom: 15px;
}

.map-section .subtitle {
  text-align: center;
  margin-bottom: 40px;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #e6e6e6 0%, #f7f7f7 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d1d5db;
}

.map-text {
  text-align: center;
}

.map-text p {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.map-note {
  font-size: 14px;
  color: #6b6b6b;
  font-style: italic;
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.faq-section h2 {
  font-size: 36px;
  text-align: center;
  color: #1f2a33;
  margin-bottom: 15px;
}

.faq-section .subtitle {
  text-align: center;
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.faq-item {
  background: #f7f7f7;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  background: #f7f7f7;
  transition: background 0.3s ease;
}

.faq-item:hover .faq-question {
  background: #ffffff;
}

.faq-question h3 {
  font-size: 18px;
  color: #2c3e50;
  margin: 0;
  flex: 1;
}

.faq-icon {
  font-size: 28px;
  color: #3B82F6;
  font-weight: bold;
  transition: transform 0.3s ease;
  margin-left: 15px;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 25px 25px 25px;
}

.faq-answer p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0;
}

/* FOOTER */
footer {
  background: #1f2a33;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 15px;
}

.footer-logo {
  margin-top: 15px;
}

.footer-logo img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3B82F6;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 12px;
}

.contact-info a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #3B82F6;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn-footer {
  display: inline-block;
  padding: 10px 20px;
  background: #2c3e50;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
  transition: background 0.3s ease;
}

.social-btn-footer:hover {
  background: #3B82F6;
}

.social-btn-footer.whatsapp {
  background: #25D366;
}

.social-btn-footer.whatsapp:hover {
  background: #1ea952;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #3a4a5a;
}

.footer-bottom p {
  font-size: 14px;
  color: #cccccc;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 20px 30px;
  }

  .logo img {
    width: 200px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 80px;
    right: 0;
    background: #ffffff;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #e6e6e6;
    z-index: 1000;
  }

  nav a {
    margin: 15px 0;
    display: block;
  }

  nav.active {
    display: flex;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .container {
    padding: 0 30px;
  }

  .contact-section,
  .map-section,
  .faq-section {
    padding: 50px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 30px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .contact-info-box h2,
  .contact-form-box h2,
  .map-section h2,
  .faq-section h2 {
    font-size: 28px;
  }
}
/* ============================================
   MENU MOBILE DINÂMICO - ADICIONE AO CSS
   ============================================ */

/* MENU TOGGLE BUTTON - Hamburguer animado */
.menu-toggle {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #1f2a33;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
}

.menu-toggle span:nth-child(3) {
  top: 20px;
}

/* Animação do hamburguer quando ativo (vira X) */
.menu-toggle.active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-toggle.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* MENU MOBILE - Slide from right */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 100px 30px 30px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav a {
    margin: 0 0 25px 0;
    padding: 15px 20px;
    font-size: 18px;
    color: #1f2a33;
    text-align: left;
    border-radius: 8px;
    transition: all 0.3s ease;
    transform: translateX(50px);
    opacity: 0;
    background: #f7f7f7;
  }

  /* Animação cascata dos links */
  nav.active a {
    transform: translateX(0);
    opacity: 1;
  }

  nav.active a:nth-child(1) {
    transition-delay: 0.1s;
  }

  nav.active a:nth-child(2) {
    transition-delay: 0.2s;
  }

  nav.active a:nth-child(3) {
    transition-delay: 0.3s;
  }

  nav.active a:nth-child(4) {
    transition-delay: 0.4s;
  }

  nav a:hover,
  nav a.active {
    background: #3B82F6;
    color: #ffffff;
    transform: translateX(5px);
  }

  nav a::after {
    display: none;
  }

  /* Overlay escuro quando menu aberto */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  body.menu-open::before {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Animação adicional no header */
  header {
    position: sticky;
    top: 0;
    z-index: 1001;
  }
}

