@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&family=Mohave:ital,wght@0,300..700;1,300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-color: #000033;
  --text-color: #ffffff;
  --bg-color: #000033;
  --accent-color: #00bc8f;
  --section-padding: 4rem 0;
  --color-yellow: #ffcc00;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Work Sans', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.topo {
  background-color: #fff;
  padding: 15px 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo-area {
  display: flex;
  align-items: center;
  width: auto;
}

.logo {
  max-height: 120px; 
    width: 300px !important;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

.container-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.menu a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.acoes {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
}
.acoes a i{
  font-size: 1.5rem;
}

.btn-contato {
  background-color: #00c3aa;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn-contato:hover {
  background-color: #00b39d;
}

.fa-brands {
  color: #222;
  font-size: 1rem;
  transition: 0.3s;
}

.fa-brands:hover {
  color: #00c3aa;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 50px;
  font-family: 'Mohave' sans-serif;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: nowrap;
}

.hero-content h1 {
  font-size: 3.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Mohave', sans-serif;
  white-space: nowrap;
  margin: 0;
}

.hero-content h1 span {
  color: #00bc8f;
  font-weight: 500;
  font-style: italic;
  font-family: 'Mohave', sans-serif;
}

.hero-content p {
  font-size: 2.2rem;
  color: #fff;
  margin: 0;
  font-family: 'Work-Sans', sans-serif;
}

.hero-content strong {
  color: white;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }
  .overlay {
    padding: 30px;
    align-items: flex-end;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

/* SOBRE */
.sobre {
  padding: 80px 50px;
  background-color: #fff;
  color: #000;
}

.container-sobre {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.texto {
  flex: 1;
  min-width: 300px;
}

.texto p {
  font-size: 1.5rem !important;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: 'Work Sans', sans-serif;
  text-align: justify;
}

.texto strong {
  font-weight: 700;
}

.imagens {
  flex: 1;
  min-width: 300px;
}

.imagens img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .container-sobre {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .imagens img {
    max-width: 100%;
  }
}

/* História */
/* História */
.historia {
  background-color: #000033;
  padding: 4rem 2rem;
  color: white;
}

.historia-container {
  max-width: 1200px;
  margin: 0 auto;
}

.historia-container h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: 600;
}

.historia-container h2 span {
  color: #00c3aa;
  font-style: italic;
  font-weight: 600;
}

/* Topo imagens */
.historia-topo {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 3rem;
}

.historia-topo img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  object-fit: cover;
}

/* Linha do tempo */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #00c3aa;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 18px;
  height: 18px;
  background-color: #00c3aa;
  border: 3px solid white;
  border-radius: 50%;
}

.timeline-item.left::before {
  right: -10px;
}

.timeline-item.right::before {
  left: -10px;
}

.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  background-color: #ffcc00;
  color: #000;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
}

.timeline-item p {
  background-color: white;
  color: #000;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .historia-topo {
    flex-direction: column;
    align-items: center;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    width: 100%;
    padding-left: 40px;
    padding-right: 20px;
    text-align: left;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item.left::before,
  .timeline-item.right::before {
    left: 0;
    transform: translateX(-50%);
  }
}

/* Missão Visão Valores */
.mvv {
  background-color: #f7f7f7;
  color: #000;
  padding: 4rem 2rem;
}

.mvv-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.coluna-esquerda {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mvv .card {
  background-color: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.mvv .card:hover {
  transform: translateY(-5px);
}

.mvv .card .icon {
  margin-bottom: 1rem;
}

.mvv .card .icon img {
  width: 40px;
  height: 40px;
}

.mvv .card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.mvv .card p {
  font-size: 1rem;
  line-height: 1.6;
}

.mvv .valores ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.valores-lista li {
  border-bottom: 1px solid #eee;
  cursor: pointer;
  padding: 0.6rem 0;
  transition: all 0.3s ease;
}

.valores-lista li.active {
  padding-bottom: 1rem;
}

.valores-lista .item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
  margin-left: 1.5rem;
}

.item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 1rem;
}

.item-header span {
  color: #00c3aa;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}


.item-header .arrow {
  transition: transform 0.3s ease;
  font-size: 1rem;
  margin-left: 1rem;
}

.item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.95rem;
  color: #333;
  padding-left: 1.8rem;
  margin-top: 0.5rem;
}

.valores-lista li.active .item-content {
  max-height: 200px;
  margin-top: 0.8rem;
}

.valores-lista li.active .arrow {
  transform: rotate(180deg);
}

/* FOOTER */
footer {
  background-color: #f7f7f7;
  padding: 2rem 0;
  font-family: 'Mohave' sans-serif;
}

.container-footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

/* Coluna da logo */
.logo-col img {
  height: 180px;
  width: auto;
}

/* Contatos */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-links h2 {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 0.5rem;
  font-family: 'Mohave' sans-serif;
}

.contact-links a {
  color: #666;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  font-family: 'Mohave' sans-serif;
}

.contact-links a:hover {
  color: #000;
}

/* Menu e ícones */
.right-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.menu-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-footer h2 {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 0.5rem;
  font-family: 'Mohave' sans-serif;
}

.menu-footer a {
  color: #666;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  font-family: 'Mohave' sans-serif;
}

.menu-footer a:hover {
  color: #000;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links img {
  width: 20px;
  height: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
}

/* MENU */
@media (max-width: 768px) {
  .container-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    flex-wrap: wrap;
  }

  .menu {
    display: flex;
    flex-direction:row;
    background-color: white;
    position: absolute;
    top: 18%;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 1000;
  }

  .menu.active {
    display: flex;
  }

  .acoes {
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
  }
}