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

body {
  font-family: 'Montserrat', sans-serif;
}

/* Container padrão */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cabeçalho */
.cabecalho {
  background-color: #024826;
  padding: 50px 50px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-img {
  height: 300px;
}

.menu-mobile {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Navegação */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-list li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: .3s;
  font-size: 20px;
}

.nav-list li a:hover {
  color: #a2e3b3;
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav.active {
    display: flex;
  }

  .menu-mobile {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding: 10px 0;
  }

  .nav-list li {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
  }
}

/* BOTÃO ORÇAMENTO 
.menu-orcamento {
  margin-left: 20px;
}

.btn-orcamento {
  background-color: #a2e3b3;
  color: #024826;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-orcamento:hover {
  background-color: #81d29b;
}
*/
/* Hero */
.hero {
  background: linear-gradient(to right, #2e7d32, #66bb6a);
  color: white;
  text-align: center;
  padding: 6rem 1rem 4rem;
}

/* Rodapé */
.footer {
  background-color: #222;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

/* Títulos e parágrafos */
main h1,
main h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #004d26;
}

main p {
  text-align: justify;
  margin-bottom: 15px;
}

/* Quem somos */
.quem-somos {
  margin-bottom: 50px;
}

/* Valores */
.valores {
  background-color: #71af90;
  color: #fff;
  padding: 40px 20px;
  margin-bottom: 50px;
}

.valores-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.valor-item {
  background: #fff;
  color: #004d26;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  width: 180px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.valor-item img {
  width: 40px;
  margin-bottom: 10px;
}

/* Diferenciais */
.diferenciais {
  margin-bottom: 100px;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.diferencial-item {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.diferencial-item img {
  width: 110px;
  margin-bottom: 10px;
}

.diferencial-item h3 {
  color: #004d26;
  margin-bottom: 10px;
}

/* Seção História */
.historia {
  background-color: #ffffff;
  padding: 40px 20px;
  margin-bottom: 50px;
}

.historia h2 {
  color: #004d26;
  text-align: center;
  margin-bottom: 30px;
}

.historia-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap; /* Para que funcione bem em telas menores */
}

.historia-container img {
  width: 100%;
  max-width: 500px; /* Limita a largura da imagem */
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

.historia-texto {
  flex: 1;
  min-width: 300px;
}


/* Seção Política de Qualidade */
.politica-qualidade {
  background-color: #f2f2f2;
  padding: 50px 20px;
  border-top: 5px solid #004d26;
  margin-bottom: 50px;
}

.politica-container {
 display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.politica-logo img {
  max-width: 100%;
  width: 100px;
}

.politica-texto {
  max-width: 600px;
}

.politica-texto h2 {
  color: #004d26;
  margin-bottom: 15px;
}


/* Esconde o botão dentro do menu em desktop 
.menu-orcamento {
  display: none;
}
*/


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

  .header-cta {
    display: none;
  }

  .valores-grid,
  .diferenciais-grid {
    flex-direction: column;
    align-items: center;
  }

  .historia-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .historia-texto,
  .politica-texto {
    padding: 0 10px;
  }

/* Logo no cabeçalho */
.logo-img {
  height: 65px;
  width: auto;
}

/* Ajustes no header */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-icon {
  font-size: 0.9rem;
}

/* Hero section */
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.hero p {
  color: #fff;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

/* Política de Qualidade */
.politica-qualidade {
  padding: 50px 0;
}

.politica-logo img {
  width: 120px;
}

.politica-texto {
  flex: 1;
  min-width: 300px;
}

.politica-texto h2 {
  text-align: left;
  margin-bottom: 15px;
}

/* Footer */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  height: 40px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

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

.footer-contacts li {
  margin-bottom: 10px;
}

.footer-contacts a {
  color: #aaa;
  text-decoration: none;
}

.footer-contacts i {
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
  .header-cta {
    display: none;
  }
  
  .politica-texto h2 {
    text-align: center;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
}
.footer-map {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}
/* Estilos para as redes sociais */
.footer-social {
  margin-top: 50px;
}

.social-icons {
  display: flex;
  gap: 55px;
  margin-top: 30px;
}

.social-icons a {
  color: #fff;
  background: #3a3a3a;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  background: #555;
}

/* Estilos para horário de funcionamento */
.business-hours {
  margin-top: 20px;
}

.business-hours p {
  margin: 5px 0;
}

/* Estilos para links do rodapé */
.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 10px;
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.dev-credits {
  font-size: 0.8em;
  margin-top: 10px;
  color: #aaa;
}

.dev-credits a {
  color: #aaa;
  text-decoration: none;
}

.dev-credits a:hover {
  text-decoration: underline;
}

.dev-credits .fa-heart {
  color: #ff5252;
}
/* Página de Contato */
.contato-page {
  padding: 60px 0;
}

.page-title {
  color: #004d26;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contato-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contato-form h2 {
  color: #004d26;
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

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

.btn-primary {
  background: #004d26;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #003618;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-box h3 {
  color: #004d26;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.info-box p, .info-box address {
  margin-bottom: 10px;
  color: #555;
}

.info-box a {
  color: #004d26;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.info-box a:hover {
  color: #003618;
}

.info-box i {
  width: 20px;
  text-align: center;
}

.politica-box {
  background: #f5f5f5;
  border-left: 4px solid #004d26;
}

/* Responsivo */
@media (max-width: 768px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
/* Estilos do Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fechar-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
}

.fechar-modal:hover {
    color: #333;
}

.modal-body {
    margin: 1.5rem 0;
    line-height: 1.6;
}

.btn-orcamento-modal {
    background: #0b3002;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn-orcamento-modal:hover {
    background: #024b15;
}
.trabalhe-conosco {
  padding: 40px 0;
  background-color: #f4f4f4;
}

.trabalhe-conosco .container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

form fieldset {
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 20px;
}

form label {
  display: block;
  margin: 10px 0 5px;
}

form input[type="text"],
form input[type="email"],
form input[type="date"],
form input[type="file"],
form textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}
/* Botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .tooltip{
  background-color: #128C7E;
  transform: scale(1.1);
  animation: pulse 2s infinite;
  opacity: 1;
}

.whatsapp-icon {
  margin-top: 4px;
}
.tooltip {
  position: absolute;
  bottom: 100%;
  left: -200%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
    .idioma-selector {
    gap: 5px;
  }
  
  .idioma-selector span {
    display: none;
  }
  
  .idioma-selector a {
    padding: 3px 5px;
  }
}

.idioma-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.idioma-selector img {
  width: 24px;
  height: 16px;
  border: 1px solid #ddd;
  border-radius: 2px;
  transition: transform 0.2s;
}

.idioma-selector img:hover {
  transform: scale(1.1);
}

.current-language {
  padding: 5px;
  background: #f5f5f5;
  border-radius: 3px;
}

.other-languages {
  display: flex;
  gap: 5px;
}
