/* GERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
  background: var(--gray-100);
  color: var(--blue);
}

:root {
  --blue: #040fd9;
  --orange: #f28322;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --black: #000000;
  --green: #22c55e;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LETRAS */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}

/* HEADER */

header {
  background: var(--white);
  padding: 0.5rem 0;
  position: fixed;
  width: 100%;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  top: 0;
  left: 0;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo img {
  height: 80px;
  width: auto;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 5rem;
  margin-left: -8rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  text-shadow: #000000;
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle i {
  color: var(--blue);
}

/* HERO CONTATO */
.hero-contato {
  background: linear-gradient(135deg, #3e5cc0 0%, #1657e4 50%, #1e3a8a 100%);
  padding: 8rem 0 4rem;
  color: var(--white);
  text-align: center;
  height: 45vh;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.efeito-luz {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  transition: background 0.1s ease;
}

.hero-contato .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}

.hero-contato-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero-contato-content p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* INFORMAÇÕES DE CONTATO */
.info-contato {
  padding: 5rem 0;
  background: var(--white);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contato-detalhes {
  margin-top: 2rem;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.contato-item:hover {
  background: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contato-icone {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--orange), #e07420);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.secao-cabecalho h2 {
  margin-top: 2rem;
}

.secao-cabecalho p {
  margin-top: 0.5rem;
  color: var(--gray-600);
}

.contato-icone i {
  font-size: 1.25rem;
  color: var(--white);
}

.contato-texto h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--gray-800);
}

.contato-texto p {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--gray-700);
}

.contato-texto span {
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* FORMULÁRIO DE CONTATO */
.formulario-contato {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--blue);
}

.form-header p {
  color: var(--gray-600);
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.botao-enviar {
  background: linear-gradient(135deg, var(--orange), #e07420);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.botao-enviar:hover {
  background: linear-gradient(135deg, #e07420, var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* MAPA */
.mapa-secao {
  padding: 5rem 0;
  background: var(--gray-100);
}

.mapa-secao .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

.mapa-container {
  margin-top: 3rem;
  width: 100%;
}

.mapa-placeholder {
  background: var(--white);
  border-radius: 1rem;
  padding: 5rem 10rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mapa-placeholder i {
  font-size: 4rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.mapa-placeholder h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--blue);
}

.mapa-placeholder p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.areas-atendimento {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.area-tag {
  background: var(--blue);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* FAQ */
.faq-secao {
  padding: 5rem 0;
  background: var(--white);
}

.faq-secao .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

.faq-lista {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.faq-item {
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.ativo {
  border-color: var(--blue);
}

.faq-pergunta {
  padding: 1.5rem;
  background: var(--gray-100);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-pergunta:hover {
  background: var(--gray-200);
}

.faq-item.ativo .faq-pergunta {
  background: var(--blue);
  color: var(--white);
}

.faq-pergunta h4 {
  font-size: 1.125rem;
  margin: 0;
}

.faq-pergunta i {
  transition: transform 0.3s ease;
}

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-resposta p {
  padding: 1.5rem;
  margin: 0;
  color: var(--gray-600);
  line-height: 1.6;
}

/* FOOTER */

.footer {
  background: #111827;
  color: white;
  padding: 3rem 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 150px;
  height: auto;
  border-radius: 50%;
}

.footer-brand-text h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: white;
}

.footer-brand-text p {
  font-size: 0.875rem;
  color: white;
}

.footer-description {
  color: #9ca3af;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* RESPONSIVIDADE - Adicionados breakpoints para mobile -->

/* Tablet (1024px) */
@media (max-width: 1024px) {
  nav ul {
    gap: 3rem;
    margin-left: -3rem;
  }

  .hero-contato-content h1 {
    font-size: 2.5rem;
  }

  .contato-grid {
    gap: 2rem;
  }

  .mapa-placeholder {
    padding: 3rem 5rem;
  }
}

/* Mobile Landscape (768px) */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  header .container {
    justify-content: space-between;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    max-height: 400px;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    width: 100%;
  }

  nav ul li {
    border-bottom: 1px solid var(--gray-100);
  }

  nav ul li a {
    display: block;
    padding: 1rem;
    font-size: 16px;
  }

  .hero-contato {
    height: 35vh;
    padding: 6rem 0 2rem;
  }

  .hero-contato .container {
    margin-top: 2rem;
  }

  .hero-contato-content h1 {
    font-size: 2rem;
  }

  .hero-contato-content p {
    font-size: 1rem;
  }

  .contato-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contato-item {
    gap: 0.75rem;
    padding: 1rem;
  }

  .contato-icone {
    width: 2.5rem;
    height: 2.5rem;
  }

  .formulario-contato {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .mapa-placeholder {
    padding: 2rem 1rem;
  }

  .mapa-placeholder i {
    font-size: 2.5rem;
  }

  .mapa-placeholder h4 {
    font-size: 1.25rem;
  }

  .info-contato,
  .mapa-secao,
  .faq-secao {
    padding: 3rem 0;
  }

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

/* Mobile Small (480px) */
@media (max-width: 480px) {
  .logo img {
    height: 60px;
  }

  .hero-contato {
    height: 30vh;
    padding: 5rem 0 1rem;
  }

  .hero-contato .container {
    margin-top: 1rem;
  }

  .hero-contato-content h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .hero-contato-content p {
    font-size: 0.875rem;
  }

  .secao-cabecalho h2 {
    font-size: 1.5rem;
  }

  .contato-detalhes {
    margin-top: 1rem;
  }

  .contato-item {
    margin-bottom: 1rem;
    padding: 0.75rem;
  }

  .contato-texto h4 {
    font-size: 1rem;
  }

  .contato-texto p,
  .contato-texto span {
    font-size: 0.875rem;
  }

  .form-header h3 {
    font-size: 1.25rem;
  }

  .form-header p {
    font-size: 0.875rem;
  }

  .botao-enviar {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .faq-pergunta {
    padding: 1rem;
  }

  .faq-pergunta h4 {
    font-size: 0.95rem;
  }

  .faq-resposta p {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .mapa-placeholder {
    padding: 1.5rem 1rem;
  }

  .mapa-placeholder i {
    font-size: 2rem;
  }

  .areas-atendimento {
    gap: 0.25rem;
  }

  .area-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }

  .info-contato,
  .mapa-secao,
  .faq-secao {
    padding: 2rem 0;
  }

  .footer {
    padding: 2rem 0;
  }

  .footer-logo {
    width: 100px;
  }
}
