@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,800);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Raleway', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 1024px) {
  .container {
    margin: 120px auto 40px auto;
  }
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: url(bg.png);
  background-repeat: repeat;
  /* background-size: 700px; */
}

.content {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  gap: 70px;
  padding-top: 80px;
}

.content a {
    align-self: center;
    font-size: 30px;
    margin-top: 10px;
    font-size: 30px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 6px 10px;
    font-weight: 600;
    background-color: #aa7f16;
    box-shadow: 0 2px 20px rgba(70, 69, 69, 0.05);
  }

  .content img {
    height: 100%;
    object-fit: contain;
  }

  @media (max-width: 1024px) {
    .content {
      flex-direction: column;   /* Empilha os itens na vertical */
      text-align: center;
      height: auto;
      gap: 30px;
      padding: 0px;
    }
  
    .titleContent {
      font-size: 2em !important;
      max-width: 90%;
      margin: 0 auto;
    }

    
  
    .content a {
      font-size: 20px;
      padding: 8px 14px;
      margin: 58px;
    }
  }
  
  @media (max-width: 600px) {
    .titleContent {
      font-size: 1.5em;
    }
  
    .content a {
      font-size: 16px;
      padding: 6px 10px;
    }
  }

  @media (max-width: 768px) {
    .content img {
      max-width: 100%;
    }
  }

.titleContent {
  font-size: 2em;
  margin-bottom: 20px;
  color: #001439;
  font-weight: bold;
  line-height: 1.2;
  max-width: 700px;
  word-wrap: break-word;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}



.content h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.2em;
  line-height: 1.6em;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 100;
  border-bottom: 4px solid #aa7f16;
  background-color: #001439;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header img {
  transition: all 0.3s ease;
  max-width: 220px;
}

.logo {
width: 180px;
}

.imageBanner {
  width: 650px;
}

.navigation {
  display: flex;
  width: 100%;
margin-left: 50px;
}

ul {
  margin: 0;
  padding: 0;
  display: flex;
}

li {
  list-style: none;
}

.listNavBar a {
  position: relative;
  display: block;
  margin: 0 10px;
  padding: 5px 10px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
  overflow: hidden;
}

.listNavBar a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
  left: -100%;
  background-color: #aa7f16;
  transition: 0.5s;
}

.listNavBar a:hover:before {
  animation: line 0.5s linear forwards;
}

@keyframes line {
  0% {
    left: -100%;
    height: 4px;
  }

  50% {
    left: 0;
    height: 4px;
  }

  100% {
    left: 0;
    height: 100%;
    z-index: -1;
  }
}

.listNavBar a:hover {
  color: white;
}


#containerTop {
  position: absolute;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: center;
}

#text {
  font-size: 4em;
  color: #001439;
  text-shadow: 2px 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.sectionAbout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: #001439;
}

.contentTitleBodyFounder {
  position: relative;
  background: #001439;
  padding-left: 100px;
  padding-bottom: 100px;
  display: flex;
  justify-content: space-around;
}

.contentTitleBodyFounder h2 {
  font-size: 4em;
  color: #fff;
  margin-top: 80px;
  letter-spacing: 6px;
  border-bottom: 2px solid #ccc;
}

@media (max-width: 1024px) {
  .contentTitleBodyFounder {
    padding-left: 20px;
    justify-content: initial;
  }

  .contentTitleBodyFounder h2 {
    font-size: 2em;
  }
}


.contentBodyFounder {
  position: relative;
  background: #001439;
  padding-left: 100px;
  padding-bottom: 100px;
  display: flex;
  justify-content: space-around;
}

.contentBodyFounder h2 {
  font-size: 3em;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 10px;
}

.contentBodyFounder img {
  width: 400px;
}

.contentBodyFounder p {
  font-size: 1em;
  color: #fff;
  font-weight: 300;
  align-items: center;
  max-width: 850px;
}

.contentBodyFounder a {
  align-self: center;
  font-size: 30px;
  margin-top: 10px;
  font-size: 30px;
  display: inline-block;
  text-decoration: none;
  color: #001439;
  padding: 6px 10px;
  font-weight: 600;
  background-color: #aa7f16;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

@media (max-width: 1024px) {
  .contentBodyFounder {
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .contentBodyFounder img {
    width: 250px;
    margin: 50px 0px;
  }

  .contentBodyFounder h2 {
    font-size: 2em;
    letter-spacing: normal;

  }
}

@media (max-width: 600px) {
  .contentBodyFounder {
    flex-direction: column;
    align-items: center;
  }
} 

.contentBodyFounderImg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.textFounder {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.contentBody {
  position: relative;
  background: #001439;
  padding-left: 100px;
  padding-top: 100px;
  padding-bottom: 50px;
  border-bottom: 2px #ccc dashed;

}

.contentBody h2 {
  font-size: 3em;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 10px;
}

.contentBody p {
  font-size: 1em;
  color: #fff;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .contentBody {
    padding-left: 20px;
  }

  .contentBody h2 {
    font-size: 2em;
  }
} 



.containerFrames {
  height: 22vw;
  width: 17vw;
  opacity: 1;
  margin-top: 150px;
  transform: translate(0%, 0px) rotateY(5deg) scale(1.00001, 1);
}

.framePrincipal {
  position: absolute;
  height: 100%;
  width: 100%;
}

.frame1 {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  background-color: #2e2e2e;
  border: 1px solid #2e2e2e;


  transform: translate(-2rem, 2rem);
  opacity: 0.6;
  border-style: solid;
  border-width: 0.1rem;
  border-color: #2e2e2e;
}

.frame2 {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  background-color: #2e2e2e;

  border: 1px solid #2e2e2e;


  transform: translate(-4rem, 4rem);
  opacity: 0.4;
  border-style: solid;
  border-width: 0.1rem;
  border-color: #2e2e2e;
}

.frame3 {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  background-color: #2e2e2e;
  border: 1px solid #2e2e2e;


  transform: translate(-6rem, 6rem);
  opacity: 0.20;
  border-style: solid;
  border-width: 0.1rem;
  border-color: #2e2e2e;
}













.containerCard {
  background-color: #f2f0eb;
  margin: 0;
  padding: 130px 0px;
  position: relative;
}

.titleContainerCard {
  font-size: 3rem;
  letter-spacing: 10px;
  text-align: center;
  color: #001439;
}

.descriptionContainerCard {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #001439;
}

.boxCards {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

@media (max-width: 1024px) {
  .boxCards {
    flex-direction: column;
    align-items: center;
  }

  .iframe {
    width: -webkit-fill-available !important;
  }

  .boxContactBody {
    flex-direction: column;
    text-align: center;
  }

  .contentContactBody:not(:first-child) {
    border-left: none !important;
    padding-left: 0;
  }
  
  .whatsapp-button {
    bottom: 4rem !important;
  }

  .titleContainerCard {
    font-size: 2em;
  }

  .descriptionContainerCard {
    font-size: 1.2em;
  }


} 

@media (max-width: 600px) {
  .boxCards {
    flex-direction: column;
    align-items: center;
  }
} 


.card {
  position: relative;
  width: 300px;
  height: 400px;
  background-color: black;
  box-shadow: 0px 30px 30px rgba(0,0,0,0.5);
}

.contentCard {
  position: absolute;
  bottom: 0px;
  width: 80%;
  height: 80px;
  background-color: white;
  left: 10%;
  text-align: center;
  transition: 0.5s;
  overflow: hidden;
}

.titleCard {
  font-size: 19px;
  text-transform: uppercase;
  margin-top: 25px;
}

.descriptionCard {
  width: 80%;
  margin: 10px auto;
  font-size: 18px;
  transition: 0.5s;
  opacity: 0;
}

.linkCard {
  text-decoration: none;
  background-color: black;
  color: white;
  padding: 10px 15px;
  display: inline-block;
  margin-top: 10px;
  transition: 0.5s;
  opacity: 0;
  font-size: 20px;
}

.subtitleCard {
  text-decoration: none;
  color: rgb(77, 77, 77);
  padding: 10px 15px;
  display: inline-block;
  margin-top: 10px;
  transition: 0.5s;
  opacity: 0;
  font-size: 14px;
  font-weight: 500;
}

.card:hover .contentCard {
  height: 100%;
  width: 100%;
  left: 0%;
}

.card:hover .descriptionCard,
.card:hover .linkCard ,
.card:hover .subtitleCard{
  opacity: 1;
  transition-delay: 0.5s;
}

.imgbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}

.imgCard {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.card:hover img {
  opacity: 0;
}





.wrapperSkills {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px;
  justify-content: center;
}


.cardSkills {
  position: relative;
  width: 375px;
  min-height: 250px; /* Garante um tamanho mínimo para todas */
  padding: 40px;
  background-color: white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cardSkills:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-100% + 5px);
  width: 100%;
  height: 100%;
  background-color: #001439;
  z-index: 1;
  transition: 0.5s;
}

.cardSkills:hover:before {
  bottom: 0;
}

.contentSkills {
  position: relative;
  text-transform: capitalize;
  color: #777;
  z-index: 2;
  transition: 0.5s;


  flex: 1; /* Faz com que o conteúdo ocupe o máximo de espaço disponível */
  display: flex;
  flex-direction: column;

}

.contentSkills h2 {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 21px;
}

.contentSkills p {
  font-size: 15px;

  flex-grow: 1; /* Mantém os parágrafos alinhados */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limita o número de linhas */
  -webkit-box-orient: vertical;
}

.contentSkills h3 {
  display: none;
}

.contentSkills a {
  align-self: flex-end;


  margin-top: 10px;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  color: #777;
  padding: 6px 10px;
  font-weight: 600;
  background-color: white;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.contentSkills a {
  background-color: white;
}

.cardSkills:hover .contentSkills {
  color: #aa7f16; 
}

.cardSkills:hover .contentSkills a {
  background-color: #fff; /* Dourado */
  color: #001439; /* Ajusta a cor do texto para melhor contraste */
  transition: background-color 0.3s ease, color 0.3s ease; /* Suaviza a transição */
}



.contentContact {
  position: relative;
  background: #001439;
  /* padding: 100px; */
  gap: 60px;
  display: flex;
  /* margin: 90px 0px; */
}

.contentContact h2 {
  font-size: 1em;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 10px;
}

.contentContact p {
  font-size: 1em;
  color: #fff;
  font-weight: 300;
}

.contentContactBody {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.contentContactBody  h3 {
 color: #b9b9b9;
}

.contentContactBody:not(:first-child) {
  border-left: 2px solid #ccc;
  padding-left: 20px;
}


.contentContact a {
  align-self: center;
  font-size: 30px;
  margin-top: 10px;
  font-size: 30px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 6px 10px;
  font-weight: 600;
  background-color: #aa7f16;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

@media (max-width: 1024px) {
  .contentContact {
    flex-direction: column;
    align-items: center;
  }
} 

@media (max-width: 600px) {
  .contentContact {
    flex-direction: column;
    align-items: center;
  }
}  


.socialIcons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.socialIcons a{
  color: #fff;
  font-size: 40px;
}

.footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
  position: relative;
}
.containerFooter {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 10px;
}
.footerSection {
  margin: 10px;
}
.footerSection h3 {
  border-bottom: 2px solid #aa7f16;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.footerSection a {
  color: #aa7f16;
  text-decoration: none;
}
.footerBottom {
  margin-top: 20px;
  border-top: 1px solid #aa7f16;
  padding-top: 10px;
}



.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background-color: #001439;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: relative;
}

#modalTitle {
  color: #aa7f16;
}

#modalText {
  color: #aa7f16;
  letter-spacing: 0.6px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}


.whatsapp-button {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999;
  background-color: #22c55e; /* equivalente a bg-green-500 */
  color: white;
  border-radius: 9999px;
  padding: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-button:hover {
  background-color: #16a34a; /* equivalente a hover:bg-green-600 */
}

.whatsapp-icon {
  max-width: 40px;
}

/* Estilos para a página de contato */
.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-info {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.contact-info h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-form {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.contact-form h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  background: #007bff;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form {
    width: 100%;
  }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile close button */
.mobile-close-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 102;
  background: none;
  border: none;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.mobile-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-close-btn span {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
  line-height: 1;
  display: block;
}

.mobile-close-btn:hover span {
  color: #aa7f16;
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.mobile-overlay.active {
  display: block;
}

/* Media queries para responsividade */
@media (max-width: 768px) {
  header {
    padding: 10px 20px;
    position: relative;
  }

  header img {
    max-width: 120px;
    height: auto;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: #001439;
    transition: 0.3s ease-in-out;
    margin-left: 0;
    padding-top: 80px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
  }

  .navigation.active {
    right: 0;
  }

  .mobile-close-btn {
    display: block;
  }

  .listNavBar {
    flex-direction: column;
    padding: 20px;
  }

  .listNavBar li {
    margin: 15px 0;
  }

  .listNavBar a {
    font-size: 18px;
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid rgba(170, 127, 22, 0.3);
  }

  .listNavBar a:hover {
    color: #aa7f16;
  }

  .socialIcons {
   display: none;
  }

  /* Ajuste para o conteúdo principal quando o header não é mais absolute */
  .content {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  header {
    padding: 8px 15px;
  }

  header img {
    max-width: 100px;
  }

  .navigation {
    width: 100%;
    right: -100%;
  }

  .listNavBar a {
    font-size: 16px;
  }
}
