@import url("fonts.css");

:root {
  --primary-color: #600a0b;
  --secondary-color: #eeb063;
  --secondary-color2: #f1c68d;
  --dark-color: #000000;
  --light-color: #efefef;
  --white-color: #fff;
  --main-font: Ubuntu, sans-serif;
  /* Typography */
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Ubuntu", sans-serif;
  --font-tertiary: "Verdana", sans-serif;
  --font-icons: "icons-social-media-8";
}

/* Reset e Estilos Gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

* a {
  text-decoration: none;
  color: #333;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header e Navegação */
.navbar {
  background-color: var(--primary-color);
  /* padding: 0.8rem; */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  margin: 0.8rem;
  color: #fff;
  font-family: var(--main-font);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo > div:last-child {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.logo a {
  font-family: var(--font-tertiary);
  color: var(--secondary-color2);
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-left: 0.5rem;
  border-left: var(--secondary-color2) 1px solid;
}

.logo a h2 {
  font-weight: lighter;
  font-size: 1.8rem;
  line-height: 0.8;
  margin-bottom: 0;
}

.logo a span {
  font-size: 0.8rem;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  gap: 0.05rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active,
.footer-links a.active {
  color: var(--secondary-color2);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

/* Animação do hamburger */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Sections */
.hero,
.quem-somos-hero,
.contato-hero {
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  margin-top: 4rem;
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/hero-bg.png");
}

.quem-somos-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/quem-somos-bg.png");
}

.quem-somos-hero .hero-content p {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-align: left;
}

.contato-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/contato-bg.png");
}

.hero-content {
  padding: 2rem;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: var(--main-font);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Botões */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #1ebe5d;
}

/* Seções de Conteúdo */
section {
  padding: 0;
}

section h2,
h1 {
  text-align: center;
  font-family: var(--main-font);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.diferencial {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}

/* Grid Layouts */
.areas-grid,
.diferencial-grid,
.equipe-grid,
.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

/* Cards */
.area-card,
.diferencial-item,
.valor-card,
.membro-card {
  text-align: center;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 5px;
  transition: transform 0.3s;
}

.membro-card h2,
.area-card h2 {
  font-size: 1.5rem;
  margin: 0;
}
.membro-card h3 {
  font-size: 1rem;
  margin: 0;
}

.membro-card p {
  font-size: 0.9rem;
  color: #666;
  text-align: left;
}

.area-card:hover,
.diferencial-item:hover,
.valor-card:hover {
  transform: translateY(-5px);
}

/* Equipe */
.membro-foto {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-color: #ddd;
  background-size: cover;
}

.foto-cristiane {
  background-image: url("../images/Cristiane_Amorim.jpeg");
}

.foto-airton {
  background-image: url("../images/Airton_Rodrigues.jpeg");
}

.foto-elise {
  background-image: url("../images/Elise_Rodrigues.jpeg");
}

/* Formulário de Contato */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--main-font);
}

.submit-button {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: var(--secondary-color);
}

/* Informações de Contato */
.info-section {
  background-color: #f9f9f9;
  padding: 0 2rem 2rem;
  border-radius: 5px;
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 3rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-info a {
  text-decoration: none;
  color: #fff;
}

.footer-info .phone-icon::before {
  color: #fff;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 122.88 118.72'%3E%3Cpath fill='%23fff' d='M29.22 56.54c3.57 6.43 7.67 12.6 13.02 18.24C47.58 80.45 54.24 85.6 62.86 90c.64.31 1.25.31 1.78.1c.82-.31 1.66-.99 2.48-1.81c.64-.64 1.43-1.66 2.26-2.77c3.31-4.36 7.42-9.77 13.21-7.07c.13.06.23.13.35.19l19.33 11.11c.06.03.13.1.19.13c2.55 1.75 3.6 4.46 3.63 7.52c0 3.12-1.15 6.63-2.83 9.58c-2.22 3.91-5.51 6.5-9.29 8.21c-3.6 1.66-7.61 2.55-11.46 3.12c-6.05.89-11.71.32-17.5-1.46c-5.67-1.75-11.37-4.65-17.6-8.5l-.46-.29c-2.86-1.78-5.95-3.7-8.98-5.95c-11.1-8.38-22.4-20.47-29.76-33.78C2.03 57.15-1.34 45.09.5 33.59c1.02-6.3 3.72-12.03 8.44-15.82c4.11-3.31 9.64-5.13 16.81-4.49c.82.06 1.56.54 1.94 1.24l12.39 20.94c1.81 2.35 2.04 4.68 1.05 7.01c-.82 1.91-2.48 3.67-4.74 5.31c-.67.57-1.46 1.15-2.29 1.75c-2.77 2.01-5.92 4.33-4.84 7.07L29.22 56.54zM73.35 7.55c-.51-.04-.99-.18-1.42-.4c-.45-.23-.84-.54-1.16-.91c-.32-.38-.57-.81-.73-1.29C69.9 4.49 69.84 4 69.88 3.49l.01-.07c.04-.49.18-.95.39-1.36l.04-.07c.22-.42.52-.79.87-1.08c.37-.32.81-.57 1.29-.73c.45-.15.93-.21 1.42-.18l.1.01c3.43.27 6.74.79 9.92 1.55c3.21.77 6.27 1.8 9.16 3.05c2.91 1.27 5.65 2.78 8.2 4.52c2.54 1.74 4.91 3.71 7.06 5.9c2.13 2.17 4.06 4.56 5.77 7.15c1.69 2.57 3.16 5.34 4.4 8.28c1.2 2.88 2.18 5.94 2.92 9.18c.72 3.17 1.21 6.5 1.45 9.98l.01.17l0 .18c0 .46-.08.91-.23 1.33c-.16.45-.4.85-.71 1.2c-.31.35-.68.64-1.1.86c-.39.21-.84.34-1.31.4l-.2.02l-.19 0c-.47.01-.92-.07-1.34-.23c-.44-.16-.85-.4-1.2-.71c-.37-.32-.68-.72-.9-1.17c-.21-.43-.35-.92-.38-1.42c-.21-3.09-.63-6.03-1.26-8.8c-.63-2.83-1.48-5.5-2.52-8.01c-1.04-2.52-2.29-4.88-3.72-7.06c-1.45-2.21-3.08-4.23-4.88-6.07c-1.82-1.85-3.81-3.51-5.97-4.98c-2.17-1.48-4.51-2.76-7.01-3.84l-.04-.02c-2.48-1.07-5.11-1.95-7.88-2.61C79.29 8.23 76.39 7.78 73.35 7.55zM65.03 43.21c-.51-.05-.99-.21-1.41-.43c-.44-.24-.83-.56-1.13-.94c-.29-.36-.52-.78-.67-1.23c-.14-.42-.2-.87-.18-1.33c.01-.13.01-.23.03-.35c.07-.48.23-.93.45-1.32c.23-.41.54-.77.9-1.06c.36-.29.78-.52 1.23-.67c.42-.13.87-.2 1.34-.18l.35.03c1.49.16 2.92.42 4.3.77c1.4.36 2.73.82 3.98 1.36l.04.02c1.27.56 2.46 1.21 3.57 1.96c1.12.76 2.16 1.61 3.12 2.57c.95.95 1.81 1.98 2.57 3.1c.76 1.11 1.42 2.3 1.99 3.58c.55 1.25 1.01 2.58 1.37 3.98c.35 1.37.6 2.83.76 4.37c.05.51 0 1.01-.13 1.47l-.01.04c-.14.46-.38.89-.67 1.26l-.01.02c-.31.38-.69.69-1.13.93c-.42.23-.9.38-1.41.43l-.05 0c-.49.04-.97-.01-1.42-.14c-.48-.14-.92-.38-1.3-.69l-.01 0c-.38-.31-.7-.69-.94-1.14c-.23-.42-.38-.9-.43-1.4l0-.04c-.11-1.09-.29-2.13-.54-3.12c-.25-1.01-.57-1.95-.95-2.82c-.38-.87-.82-1.68-1.32-2.42c-.51-.75-1.07-1.43-1.69-2.05c-.62-.62-1.31-1.18-2.06-1.68c-.75-.5-1.57-.94-2.46-1.33l-.05-.02c-.87-.38-1.81-.69-2.8-.94C67.22 43.51 66.15 43.33 65.03 43.21zM69.03 25.99l-.1 0l-.13-.02c-.47-.05-.91-.19-1.3-.39c-.42-.22-.79-.51-1.1-.85l0 0c-.32-.36-.57-.77-.73-1.23c-.15-.43-.23-.89-.22-1.38l0-.17l.02-.16c.05-.46.19-.9.39-1.29c.22-.42.51-.8.85-1.1c.37-.33.8-.58 1.28-.75c.46-.16.95-.23 1.46-.2c2.66.16 5.19.5 7.58 1.01c2.4.51 4.67 1.2 6.78 2.06c2.13.87 4.12 1.92 5.96 3.14c1.82 1.21 3.5 2.6 5.01 4.17c1.5 1.55 2.84 3.27 4 5.15c1.15 1.86 2.14 3.88 2.94 6.05c.78 2.12 1.4 4.4 1.84 6.84c.43 2.4.69 4.93.77 7.62l.01.14c0 .48-.09.95-.27 1.38c-.18.45-.44.85-.76 1.2c-.33.36-.74.65-1.2.85c-.43.2-.92.31-1.43.33l-.17 0c-.48-.01-.93-.1-1.35-.27c-.45-.18-.85-.44-1.19-.76c-.36-.34-.65-.74-.86-1.2c-.2-.44-.31-.92-.33-1.44c-.06-2.24-.28-4.35-.63-6.34c-.35-2.01-.85-3.88-1.47-5.6c-.62-1.72-1.38-3.3-2.26-4.75c-.89-1.46-1.91-2.77-3.05-3.96c-1.16-1.19-2.44-2.26-3.85-3.19c-1.42-.94-2.99-1.75-4.67-2.43l-.04-.02c-1.7-.67-3.52-1.22-5.47-1.63c-1.96-.41-4.05-.69-6.25-.82L69.03 25.99z'/%3E%3C/svg%3E");
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: #fff;
}

.phone-icon-black::before {
  color: var(--secondary-color2);
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 122.88 118.72'%3E%3Cpath fill='%23333' d='M29.22 56.54c3.57 6.43 7.67 12.6 13.02 18.24C47.58 80.45 54.24 85.6 62.86 90c.64.31 1.25.31 1.78.1c.82-.31 1.66-.99 2.48-1.81c.64-.64 1.43-1.66 2.26-2.77c3.31-4.36 7.42-9.77 13.21-7.07c.13.06.23.13.35.19l19.33 11.11c.06.03.13.1.19.13c2.55 1.75 3.6 4.46 3.63 7.52c0 3.12-1.15 6.63-2.83 9.58c-2.22 3.91-5.51 6.5-9.29 8.21c-3.6 1.66-7.61 2.55-11.46 3.12c-6.05.89-11.71.32-17.5-1.46c-5.67-1.75-11.37-4.65-17.6-8.5l-.46-.29c-2.86-1.78-5.95-3.7-8.98-5.95c-11.1-8.38-22.4-20.47-29.76-33.78C2.03 57.15-1.34 45.09.5 33.59c1.02-6.3 3.72-12.03 8.44-15.82c4.11-3.31 9.64-5.13 16.81-4.49c.82.06 1.56.54 1.94 1.24l12.39 20.94c1.81 2.35 2.04 4.68 1.05 7.01c-.82 1.91-2.48 3.67-4.74 5.31c-.67.57-1.46 1.15-2.29 1.75c-2.77 2.01-5.92 4.33-4.84 7.07L29.22 56.54zM73.35 7.55c-.51-.04-.99-.18-1.42-.4c-.45-.23-.84-.54-1.16-.91c-.32-.38-.57-.81-.73-1.29C69.9 4.49 69.84 4 69.88 3.49l.01-.07c.04-.49.18-.95.39-1.36l.04-.07c.22-.42.52-.79.87-1.08c.37-.32.81-.57 1.29-.73c.45-.15.93-.21 1.42-.18l.1.01c3.43.27 6.74.79 9.92 1.55c3.21.77 6.27 1.8 9.16 3.05c2.91 1.27 5.65 2.78 8.2 4.52c2.54 1.74 4.91 3.71 7.06 5.9c2.13 2.17 4.06 4.56 5.77 7.15c1.69 2.57 3.16 5.34 4.4 8.28c1.2 2.88 2.18 5.94 2.92 9.18c.72 3.17 1.21 6.5 1.45 9.98l.01.17l0 .18c0 .46-.08.91-.23 1.33c-.16.45-.4.85-.71 1.2c-.31.35-.68.64-1.1.86c-.39.21-.84.34-1.31.4l-.2.02l-.19 0c-.47.01-.92-.07-1.34-.23c-.44-.16-.85-.4-1.2-.71c-.37-.32-.68-.72-.9-1.17c-.21-.43-.35-.92-.38-1.42c-.21-3.09-.63-6.03-1.26-8.8c-.63-2.83-1.48-5.5-2.52-8.01c-1.04-2.52-2.29-4.88-3.72-7.06c-1.45-2.21-3.08-4.23-4.88-6.07c-1.82-1.85-3.81-3.51-5.97-4.98c-2.17-1.48-4.51-2.76-7.01-3.84l-.04-.02c-2.48-1.07-5.11-1.95-7.88-2.61C79.29 8.23 76.39 7.78 73.35 7.55zM65.03 43.21c-.51-.05-.99-.21-1.41-.43c-.44-.24-.83-.56-1.13-.94c-.29-.36-.52-.78-.67-1.23c-.14-.42-.2-.87-.18-1.33c.01-.13.01-.23.03-.35c.07-.48.23-.93.45-1.32c.23-.41.54-.77.9-1.06c.36-.29.78-.52 1.23-.67c.42-.13.87-.2 1.34-.18l.35.03c1.49.16 2.92.42 4.3.77c1.4.36 2.73.82 3.98 1.36l.04.02c1.27.56 2.46 1.21 3.57 1.96c1.12.76 2.16 1.61 3.12 2.57c.95.95 1.81 1.98 2.57 3.1c.76 1.11 1.42 2.3 1.99 3.58c.55 1.25 1.01 2.58 1.37 3.98c.35 1.37.6 2.83.76 4.37c.05.51 0 1.01-.13 1.47l-.01.04c-.14.46-.38.89-.67 1.26l-.01.02c-.31.38-.69.69-1.13.93c-.42.23-.9.38-1.41.43l-.05 0c-.49.04-.97-.01-1.42-.14c-.48-.14-.92-.38-1.3-.69l-.01 0c-.38-.31-.7-.69-.94-1.14c-.23-.42-.38-.9-.43-1.4l0-.04c-.11-1.09-.29-2.13-.54-3.12c-.25-1.01-.57-1.95-.95-2.82c-.38-.87-.82-1.68-1.32-2.42c-.51-.75-1.07-1.43-1.69-2.05c-.62-.62-1.31-1.18-2.06-1.68c-.75-.5-1.57-.94-2.46-1.33l-.05-.02c-.87-.38-1.81-.69-2.8-.94C67.22 43.51 66.15 43.33 65.03 43.21zM69.03 25.99l-.1 0l-.13-.02c-.47-.05-.91-.19-1.3-.39c-.42-.22-.79-.51-1.1-.85l0 0c-.32-.36-.57-.77-.73-1.23c-.15-.43-.23-.89-.22-1.38l0-.17l.02-.16c.05-.46.19-.9.39-1.29c.22-.42.51-.8.85-1.1c.37-.33.8-.58 1.28-.75c.46-.16.95-.23 1.46-.2c2.66.16 5.19.5 7.58 1.01c2.4.51 4.67 1.2 6.78 2.06c2.13.87 4.12 1.92 5.96 3.14c1.82 1.21 3.5 2.6 5.01 4.17c1.5 1.55 2.84 3.27 4 5.15c1.15 1.86 2.14 3.88 2.94 6.05c.78 2.12 1.4 4.4 1.84 6.84c.43 2.4.69 4.93.77 7.62l.01.14c0 .48-.09.95-.27 1.38c-.18.45-.44.85-.76 1.2c-.33.36-.74.65-1.2.85c-.43.2-.92.31-1.43.33l-.17 0c-.48-.01-.93-.1-1.35-.27c-.45-.18-.85-.44-1.19-.76c-.36-.34-.65-.74-.86-1.2c-.2-.44-.31-.92-.33-1.44c-.06-2.24-.28-4.35-.63-6.34c-.35-2.01-.85-3.88-1.47-5.6c-.62-1.72-1.38-3.3-2.26-4.75c-.89-1.46-1.91-2.77-3.05-3.96c-1.16-1.19-2.44-2.26-3.85-3.19c-1.42-.94-2.99-1.75-4.67-2.43l-.04-.02c-1.7-.67-3.52-1.22-5.47-1.63c-1.96-.41-4.05-.69-6.25-.82L69.03 25.99z'/%3E%3C/svg%3E");
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: var(--secondary-color2);
}

.footer-info h3,
.footer-links h3 {
  color: var(--secondary-color2);
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.social-icon:hover {
  color: var(--secondary-color2);
}

.icon-text li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  text-align: center;
  color: var(--secondary-color2);
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--secondary-color2);
}
/* whatsapp icon */
.whatsapp-fixed {
  position: fixed;
  bottom: 40%;
  right: 20px;
  /* background-color: rgb(37, 211, 102); */
  background-color: rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.icon-whatsapp {
  color: var(--primary-color);
  width: 2rem;
  height: 2rem;
  font-family: var(--font-icons);
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsividade */
@media (max-width: 880px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
  }

  .logo {
    order: 1;
    flex: 1;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 4;
    background-color: var(--primary-color);
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

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

@media (max-width: 580px) {
  section {
    padding: 2rem 0;
  }

  .hero,
  .quem-somos-hero,
  .contato-hero {
    height: 20vh;
  }

  .areas-grid,
  .diferencial-grid,
  .equipe-grid,
  .valores-grid {
    grid-template-columns: 1fr;
  }
}
