/* Reset básico */
@font-face {
  font-family: "GD Sherpa Regular";
  src: url("https://db.onlinewebfonts.com/t/0aee6008b82cde991ec28387169bb13e.eot");
  src: url("https://db.onlinewebfonts.com/t/0aee6008b82cde991ec28387169bb13e.eot?#iefix") format("embedded-opentype"),
       url("https://db.onlinewebfonts.com/t/0aee6008b82cde991ec28387169bb13e.woff2") format("woff2"),
       url("https://db.onlinewebfonts.com/t/0aee6008b82cde991ec28387169bb13e.woff") format("woff"),
       url("https://db.onlinewebfonts.com/t/0aee6008b82cde991ec28387169bb13e.ttf") format("truetype"),
       url("https://db.onlinewebfonts.com/t/0aee6008b82cde991ec28387169bb13e.svg#GD Sherpa Regular") format("svg");
}

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

body, html {
    height: 100%;
    font-family: "GD Sherpa Regular", sans-serif;
    color: #fff;
    scroll-behavior: smooth;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Header e navegação */
header {
    align-items: center;
    background-color: #101010;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-flow: row wrap;
    font-family: "GD Sherpa Regular", sans-serif;
    justify-content: space-between;
    width: 100%;
    padding: 0 51px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    text-align: left;
    z-index: 1050;
    box-sizing: border-box;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.hero {
    background-image: url('imagems/fundo-home.jpg');
    background-repeat: no-repeat;
    background-size: cover; /* Faz a imagem cobrir todo o fundo */
    background-position: center; /* Centraliza a imagem */
    width: 100%;
    height: 100vh; /* Faz com que ocupe toda a tela */
}

.logo img{
    max-width: 10rem;
    margin-left: 60px;
    font-weight: bold;
    animation: fadeIn 1.5s ease;
}

nav ul {
    list-style: none;
    display: flex;
    margin-top: -5px;
}


nav ul li a {
    color: rgb(241, 237, 237);
    text-decoration: none;
    font-size: 1rem;
    padding: 16px;
    margin: 8px;
    border-radius: 4px;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Hero section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 1;
}





.hero h1 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 6px;
    animation: fadeIn 2.5s ease;
     text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); /* Sombra ao texto */
}

.hero p {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeIn 3s ease;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); /* Sombra ao texto */
}

.btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    animation: fadeIn 3.5s ease;
}

.btn:hover {
    background-color: white;
    color: #04304b;
    transform: scale(1.05);
}

/* Seção de serviços */
/* Estilos principais */
/* Estilo geral da seção de serviços */
/*estilos do Footer */
footer {
    background-color: rgb(0, 0, 0); /* Cor de fundo azul */
    color: #FFFFFF; /* Texto branco */
    font-family: 'Gotham A', 'Gotham B', Lato, helvetica, arial, sans-serif !important;
    font-size: 18px;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.footer-column p {
    text-align: center;
    margin: 16px 0;
    cursor: pointer;
    transition: color 0.3s;
    color: #fff;
}
.footer-column a{
  text-decoration: none;
}
.footer-column p:hover {
    color: #cccccc; /* Cor de destaque ao passar o mouse */
}

.footer-contact p {
    margin: 10px 0;
}
.footer-contact{
    text-align: center;
}
.footer-contact a {
    
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #cccccc;
}

.footer-icons {
    display: flex; /* Ativa o Flexbox */
    justify-content: center; /* Centraliza os ícones horizontalmente */
    align-items: center; /* Centraliza os ícones verticalmente (caso necessário) */
    gap: 10px; /* Espaçamento entre os ícones */
    padding: 20px; /* Adiciona espaço ao redor, se necessário */
}

.footer-icons img {
    width: 40px; /* Tamanho dos ícones */
    height: 40px;
    transition: transform 0.3s;
}

.footer-icons a:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #FFFFFF;
    padding-top: 20px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
}

/*PAGINA DUVIDAS FREQUENTES*/
/* Estilos gerais para a seção de Dúvidas Frequentes */
.faq-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  color: #333;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Estilo para cada item de FAQ */
.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

/* Estilo para o botão da pergunta */
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1em;
  padding: 15px;
  cursor: pointer;
  position: relative;
  color: #2668af;
  transition: background-color 0.3s ease;
}

/* Sinal de + ou - ao lado da pergunta */
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

/* Quando a pergunta é expandida, muda o conteúdo para - */
.faq-question.active::after {
  content: '-';
   /* Adiciona rotação quando expandido */
}

/* Estilo para a resposta (inicialmente oculta) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
  background-color: #fff;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
}
/* Estilo da Barra de Pesquisa */
.faq-search-container {
  max-width: 600px;
  margin: 20px auto 40px;
  display: flex;
  gap: 10px;
}

#faq-search {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #007BFF;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s;
}

#faq-search:focus {
  border-color: #307192;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

#faq-search-button {
  background-color: #599abb;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

#faq-search-button:hover {
  background-color: #0056b3;
}

/* Estilo para resultados destacados */
.faq-item.highlighted {
  background-color: #f0f8ff;
  border-left: 4px solid #307192;
}

.faq-item.highlighted .faq-question {
  color: #307192;
  font-weight: bold;
}
/* Estilos responsivos */
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 40px 10px;
  }

  .faq-section h2 {
    font-size: 1.8em;
  }

  .faq-question {
    font-size: 1em;
    padding: 12px;
  }

  .faq-answer p {
    font-size: 0.95em;
  }
}

@media screen and (max-width: 480px) {
  .faq-section {
    padding: 30px 10px;
  }

  .faq-section h2 {
    font-size: 1.5em;
  }

  .faq-question {
    font-size: 0.95em;
    padding: 10px;
  }

  .faq-answer p {
    font-size: 0.9em;
  }
}

/* Estilos Responsivos */

/* Tela pequena - smartphones */
/* Layout do card */
/* Estilos para a seção exclusiva */
.ferreira-why-choose-section {
    padding: 80px 0;
    background-image: linear-gradient(152deg, hsla(0, 0%, 82.7%, 0.75), hsla(0, 0%, 94%, 0.87) 85%), url(./imagems/fundo_ferreira.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Opcional - para efeito parallax */
    position: relative;
}

.ferreira-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

.ferreira-text-content {
    flex: 2;
}

.ferreira-image-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.ferreira-side-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.ferreira-section-title {
    font-size: 2.4rem;
    color: #000000;
    font-weight: 700;
    
    
}
.titulo_c_imagem{
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    align-items: flex-start;
    background-color:none ;
    padding: 10px 30px;
    border-radius: 20px;
    max-height: 80px;
    width: 100%;
}
.titulo_c_imagem img{
  height: 40px;
  margin-top: 10px;
  width: 40px;
}


.ferreira-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
    
}

.ferreira-feature-icon {
    width: 90px;
    height: 90px;
    background-color: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 40px;
}

.ferreira-feature-icon img {
    width: 50px;
    height: 50px;
}

.ferreira-feature-title {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
}

.ferreira-feature-description {
    color: #000000;
    line-height: 1.6;
    font-size: 1.1rem;
    word-break: break-word;
    text-align: justify;
}

/* Responsivo */
@media (max-width: 992px) {
    .ferreira-container {
        flex-direction: column;
    }
    
    .ferreira-image-content {
        margin-top: 40px;
    }
    
    .ferreira-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 685px) {
    .ferreira-why-choose-section {
        padding: 50px 0;
        
    }
    
    .ferreira-feature-item {
      
        flex-direction: column;
        align-items: center;
        gap: 0px;
        margin-bottom: 0;
        margin-top: 20px;
      
    }
    .titulo_c_imagem {
      max-height: 130px;
      width: 100%;

    }
    .titulo_c_imagem img{
      height: 55px;
      width: 55px;
    }
    .ferreira-feature-icon {
        width: 100%;
        padding: 20px;
        border-radius: 20px;
        height: 100px;
        
        
    }
    
    .ferreira-feature-icon img {
        width: 70px;
        height: 70px;
        
    }

    .ferreira-feature-title {
        font-size: 1.3rem;
        
    }
    
    .ferreira-feature-description {
        font-size: 1rem;
        
        
    }
    
}






/**/
.services {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
}
.services {
    
    background: linear-gradient(to bottom, #04080d, #162031, #6a6a6a);
}

.service-card {
    margin-top: 20px;
    background-color: #e8ecf0;
    padding: 20px;
    border: 2px solid black;
    border-radius: 10px;
    width: 300px;
    height: 400px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;  /* Habilita o efeito 3D */
}

.service-card img {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #000;
    line-height: 1.5;
}

/* Detalhes da parte de trás do card */
.service-card .details {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e8ecf0;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    color: #000;
    transform: rotateY(180deg); /* Faz com que a parte de trás do card fique virada para o outro lado */
}

/* Mostrar os detalhes quando o card for ativo */
.service-card.active .details {
    display: block;  /* Torna os detalhes visíveis */
}

/* Efeito de flip quando o card é clicado */
.service-card.active {
    transform: rotateY(180deg); /* Gira o card */
    transition: transform 0.6s ease;
}


/* Estilos específicos para o menu de navegação */
.menu-toggle {
    display: none;
}


/* Botão contratar dos cards */
.hire-button {
    padding: 10px 30px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.hire-button:hover {
    background-color: #004569;
}


.service-cards {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}
.service-card a{
    text-decoration: none;
}
.service-card:hover{
    cursor: pointer;
    scale: 1.1;
}


.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card h3 {
    text-align: center;
    margin: 10px 0;
    font-size: 27px;
    font-weight: bold;
}

.hire-button {
    display: block;
    margin: 30px auto 15px;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}



.details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.4;

    padding-left: 5px;
    
    border-left: 3px solid #00a9e0; /* Destaque na esquerda */
}

.details h4 {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* Detalhes visíveis após clique */
.service-card.active .details {
    left: 0;
}


  
.custom-template-section {
    background: linear-gradient(to bottom, #6a6a6a, #bfbfbf, #dfdfdf, #ffffff);
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140vh;
  }
  
  .custom-content-wrapper {
    
   background-color: #161b22; /* Fundo do quadrado transparente */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.704); /* Efeito de sombra */
    border-radius: 10px;
    display: flex;
    padding: 30px;
    width: 100%;
    backdrop-filter: blur(10px); /* Efeito de desfoque */
    color: #fff;
  }
  
  .custom-text-container {
    flex: 1;
    margin-right: 20px;
  }
  
  .custom-text-container h1 {
    font-size: 24px;
    margin-bottom: 13px;
    
  }
  
  .custom-text-container p {
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    margin-top: 60px;
    padding: 0 40px;
  }
  .custom-text-container b{
    color: #c7fb9cde;
  }
  .custom-media-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .custom-media-container img,
  .custom-media-container video {
    max-width: 100%;
    border-radius: 10px;
    
  }
  .custom-content-wrapper-before{
    background: rgba(255, 255, 255, 0.932); /* Fundo do quadrado transparente */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.264); /* Efeito de sombra */
    border-radius: 10px;
    
    padding: 30px;
    max-width: 1300px;
    width: 100%;
    backdrop-filter: blur(10px); /* Efeito de desfoque */
    color: #fff;
  }
  
  
  .custom-feature-section {
    
    
    color: #000000;
  }
  
  .custom-feature-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  
  .custom-feature-box {
    margin-top: 20px;
    /* Fundo do box */
    border-radius: 10px;
    padding: 10px;
    flex: 1;
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .custom-feature-icon {
    width: 5px;
    height: 40px;
    background-color: #307192;/* Barra azul */
    border-radius: 5px;
    margin-bottom: 15px;
  }
  
  .custom-feature-box h3 {
    font-size: 20px;
    width: 200px;
    margin: 8px 15px 10px;
  }
  
  .custom-feature-box p {
      box-sizing: border-box;
      word-break: break-word;
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
      text-align: justify;
    }
    
  
/*ALERT CUSTOMIZADO*/
/* Estilo do modal */
.custom-alert {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.alert-content p, .alert-content h3, .alert-content ul {
  color: #000;
}

.alert-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  max-width: 30%;
  overflow-y: auto;
  text-align: center;
}

.alert-content button {
  margin-top: 15px;
  padding: 8px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.carrossel-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.parceiro-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  margin: 20px 0;
}

.parceiro-imagem img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.parceiro-info {
  padding: 20px;
}

.parceiro-info h3 {
  margin-top: 0;
  color: #333;
}

.parceiro-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.parceiro-btn {
  padding: 8px 15px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  flex: 1;
  text-align: center;
}

.site-btn {
  background-color: #2196F3;
}

.carrossel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.carrossel-controls button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

.close-modal-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.no-site-message {
  display: inline-block;
  padding: 8px 16px;
  background-color: #f0f0f0;
  color: #666;
  border-radius: 4px;
  font-size: 14px;
  margin-left: 10px;
}

/* Media Queries para responsividade */
@media (max-width: 1200px) {
  .alert-content {
    max-width: 40%;
  }
}

@media (max-width: 992px) {
  .alert-content {
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .alert-content {
    max-width: 70%;
  }
  
  .parceiro-buttons {
    flex-direction: column;
  }
  
  .parceiro-btn, .site-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .alert-content {
    max-width: 85%;
    padding: 15px;
  }
  
  .parceiro-imagem img {
    height: 150px;
  }
  
  .parceiro-info {
    padding: 15px;
  }
  
  .carrossel-controls button {
    font-size: 18px;
  }
  
  .close-modal-btn {
    padding: 8px 16px;
  }
}

@media (max-width: 400px) {
  .alert-content {
    max-width: 95%;
  }
  
  .parceiro-imagem img {
    height: 120px;
  }
  
  .parceiro-info h3 {
    font-size: 1.1rem;
  }
  
  .parceiro-info p {
    font-size: 0.9rem;
  }
}



  /*SERVIÇOS*/
  .unique-profile-section {
    max-width: 1200px;
    margin: auto;

    padding: 20px;
    margin-top: 100px;
  }
  
  /* Cabeçalho do perfil */
  .unique-profile-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .unique-profile-name {
    position: relative;
    z-index: 10;
    background-color:#000000ef;
    padding: 11px 15px;
    border-radius: 20px;
    animation: animate-outline 0.9s ease-out infinite;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
  }
  
  /* Conteúdo do perfil */
  .unique-profile-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .unique-profile-photo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
  }
  
  .unique-profile-photo img {
    aspect-ratio: 1;
    max-width: 255px;
    
    height: 255px;
    border-radius: 50%;
    border: 0.25em solid #307192;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  .unique-profile-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Fica atrás da imagem */
    pointer-events: none; /* Impede interação */
    background: transparent;
  }
  
  .particle {
    position: absolute;
    bottom: 0;
    width: 0.5vw; /* Partículas responsivas */
    height: 0.5vw;
    max-width: 4px; /* Tamanho máximo */
    max-height: 4px;  
    background-color: #307192;
    border-radius: 50%;
    animation: rise 3s infinite ease-in-out;
  }
  
  /* Animação das partículas */
  @keyframes rise {
    0% {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateY(-300px) scale(0.5);
      opacity: 0;
    }
  }
  
  .unique-profile-intro {
    flex: 1.7;
    max-height: 21rem;
    background: #fff;
    font-size: 1.2rem;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .unique-profile-intro h3{
    margin-bottom: 20px;
  }
  .unique-profile-intro p{
    box-sizing: border-box;
    text-align: justify;
    word-break: break-word;
  }
  .unique-profile-intro li{
    list-style: none;
    margin-top: 9px;
    margin-bottom: 15px;
  }
  
  /* Botão contratar */
  /* Container principal (contém 1 ou 2 botões) */
.unique-hire-button-wrapper {
  display: flex;
  justify-content: flex-end; /* Alinha os botões à direita */
  gap: 20px; /* Espaço entre botões (ignorado se houver apenas um) */
  margin-bottom: 20px;
}

/* Estilo base dos botões (compartilhado) */
.unique-hire-button,
.Breve {
  animation: buttonFloat 1.5s infinite ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
  font-weight: 600;
  height: 5rem;
  letter-spacing: 2px;
  color: #fff;
  background-color: #307192;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  padding: 10px 30px; /* Largura mínima */
}

/* Se houver APENAS 1 botão (usa :only-child) */
.unique-hire-button-wrapper button:only-child {
  width: 60%; /* Ajusta ao conteúdo */
}

/* Se houver 2 botões (largura fixa) */
.unique-hire-button-wrapper button {
  width: 30%; /* Largura igual para ambos */
}

/* Animação */
  @keyframes buttonFloat{
    50%{
        transform:translateY(-10%);
    }
  }
  .unique-hire-button:hover {
    background-color: #25586e;
  }
  
  /* Serviços e projetos */
  .unique-services-and-projects {
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }
  
  .unique-services-box {
    flex: 0 0 32%; /* Ajusta a largura */
    background-color:#307192 ;
    border-radius: 10px;
    position: relative;
    margin-top: -90px;
    display: flex;
    perspective: 1000px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 540px; /* Altura maior */
  }
  .unique-card {
  padding: 40px 10px;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  backface-visibility: hidden; /* Oculta o verso ao girar */
  transition: transform 0.6s ease-in-out;
}
.front-card {
  width: 100%;
  height: 100%;
  padding: 20px;
  backface-visibility: hidden; /* Esconde o lado contrário */
  z-index: 2;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }
  .back-card {
    padding: 20px;
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
      position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-color: #f7f7f7;
  transform: rotateY(180deg); /* O lado de trás é rotacionado */
  }
  .unique-next-button {
  padding: 10px 15px;
  background: #307192;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  width: 12rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s;
}
.unique-next-button:hover,
.unique-back-button:hover {
  background: #1e5a75;
}

.unique-back-button {
  position: absolute;
  top: 0px;
  left: 20px;
  padding: 10px 15px;
  background: #307192;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  width: 6rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s;
}

/* Listas */
.unique-card ul {
  list-style: none;
  padding: 0;
  margin: 5px 0;
  text-align: left;
}
.unique-tooltip-icon {
  margin-left: 10px;
  color: #307192;
  cursor: pointer;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.unique-tooltip-icon:hover {
  color: #3071928b;
}
.unique-card ul li {
  margin: 5px 0;
  font-size: 1.1rem;
  color: #3d3c3c;
  padding-left: 10px;
}
.unique-card p {
    color: #004569;
  }
  .unique-services-box h2 {
    margin-top: 15px;

    text-align: center;
    color: #121213;
  }
  
  .unique-services-box ul {
    list-style-type: none;
  }
  
  .unique-services-box li {
    margin-bottom: 10px;
  }
  
  .unique-projects-box {
    flex: 0 0 63%; /* Ajusta a largura */
    background: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .unique-projects-box h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #121213;
  }
  
  .unique-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    
  }
  
  .unique-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 250px; /* Define a altura do carrossel */
  }
  
  .unique-carousel-track .video-container,
.unique-carousel-track img {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover; /* Faz com que os vídeos preencham o espaço proporcionalmente */
  border-radius: 10px; /* Aplica bordas arredondadas */
}
  
  
  .unique-carousel-arrow {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    font-size: 3rem;
    background: none;
    border: none;
    opacity: 80%;
    z-index: 1;
    
   
  }
  
  .unique-carousel-arrow.left {
    left: 10px;
    cursor: pointer;
  }

  
  .unique-carousel-arrow.right {
    right: 10px;
    cursor: pointer;
    
  }
  .unique-carousel-arrow.left:hover,.unique-carousel-arrow.right:hover {
    scale: 0.9;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .video-container,.overlay {
    opacity: 1;
  }
  .video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .video-container video {
    width: 100%; /* O vídeo ocupa toda a largura do contêiner */
    height: 100%; /* O vídeo ocupa toda a altura */
    object-fit: cover; /* Preenche o espaço sem distorcer */
  }
  
  .play-button {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
  }
  
  /* Modal de vídeo */
  .video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
  
  .modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
  }
  
  .modal-content video {
    width: 100%;
    height: auto;
  }
  
  .close-modal {
    z-index: 10;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
  .unique-project-description {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
    text-align: justify;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .unique-profile-content {
      flex-direction: column;
    }
  
    .unique-services-and-projects {
      flex-direction: column;
    }
  
    .unique-services-box,
    .unique-projects-box {
      flex: 1 0 100%;
      height: auto; /* Remove a altura fixa */
    }
    .unique-hire-button-wrapper {
        justify-content: center; /* Centraliza em mobile */
        gap: 15px;
        
       
      }
      
      .unique-hire-button,.Breve {
         font-size:1rem;
         font-weight: 100;
         height: auto;
        width: 100% !important; /* Força largura total */
      }
      
    }
  
  
  
/* Responsividade */
@media (max-width: 768px) {
    .service-card {
        width: 80%; /* Cards ocupam a largura do dispositivo */
    }
    .service-card:hover{
        cursor: pointer;
        scale: none;
    }
    .details li {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .details h4 {
        font-size: 12px;
    }

    .details li:nth-child(n+5) { /* Esconde elementos a partir do 5º item */
        display: none;
    }
    .unique-services-box h2,
  .unique-projects-box h2 {
    font-size: 1.5rem; /* Reduz tamanho do título */
  }

  .unique-card ul li {
    font-size: 1rem; /* Reduz tamanho do texto */
  }

  .unique-next-button,
  .unique-back-button {
    font-size: 0.9rem; /* Reduz tamanho dos botões */
    padding: 8px 10px;
  }

  .unique-next-button {
    width: 10rem; /* Ajusta largura do botão */
  }

}



/*SEÇÃO QUEM SOMOS*/
.about-us {
  display: flex;
  flex-direction: column; /* Para alinhar tudo em coluna */
  justify-content: center;
  align-items: center;
  gap: 40px; /* Aumenta o espaçamento entre os elementos */
  background-color: #fff;
  padding: 50px 60px; /* Aumenta o espaço nas laterais */
}

.about-us .content {
  display: flex;
  flex-direction: column; /* Empilha os elementos verticalmente */
  align-items: center;
  text-align: center;
  max-width: 100%; /* Define um limite máximo */
  width: 100%; /* Garante que ocupa todo o espaço possível */
}

.about-us .text {
  text-align: justify; /* Justifica o texto */
  max-width: 1200px; /* Mesma largura da imagem */
  width: 100%;
}

.about-us .text h2 {
  font-size: 3em;
  color: #7e918c;
  margin-bottom: 20px;
  text-align: center; /* Centraliza o título */
}

.about-us .text p {
  box-sizing: border-box;
  color: rgb(94, 94, 94);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  word-break: break-word;
}

.about-us .image {
  text-align: center;
}

.about-us .image img {
  width: 100%;
  height: 30vh;
  border-radius: 30px;
  margin-bottom: 50px;
  object-fit: cover;
  border: 8px solid #fff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsividade para telas menores */
@media screen and (max-width: 768px) {
    .about-us {
        flex-direction: column; /* Coloca os itens em coluna */
        text-align: center;
    }

    .about-us .text {
        order: 2; /* O texto aparece abaixo da imagem */
        padding-right: 0;
        margin-bottom: 20px;
        font-size: 20px;
    }

    .about-us .image {
        order: 1; /* A imagem aparece acima do texto */
    }

  
}




/* Rodapé */


/* Responsividade */
@media (max-width: 912px) {
    .hero h1 {
        font-size: 2.7rem;
        margin: 0px 20px;
    }
    .logo{
        margin-left: 20px;
    }
    .hero p {
        font-size: 1.2rem;
        margin: 30px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }
    nav ul {
        flex-direction: column;
        background: linear-gradient(to bottom, #0a0e16,#0a0f17);
        position: fixed;
        top: 70px;
        right: 0;
        height: 100vh;
        width: 100%;
        display: none;
    }
    nav ul li a:hover{
        background-color: rgba(255, 255, 255, 0.342);
    }

    nav ul.open {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header{
        background-color: rgb(0, 0, 0);
    }

    nav ul li {
        margin: 30px 0;
        
    }
    nav ul li a{
        letter-spacing: 2px;
        font-weight: 500;
        font-size: 1.3rem;
    }

    /* Estilo básico para o ícone de hambúrguer */
.hamburger {
    width: 30px;
    height: 17.5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001; /* Certifique-se de que o ícone está à frente do conteúdo */
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #e7e7e7;
    border-radius: 2px;
    transition: all 0.4s ease;
}

/* Estilo de transição para a animação */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Esconde o menu inicialmente */
#menu {
    display: none;
    /* Defina seu estilo de navegação aqui */
}

#menu.active {
    display: block;
}

@media (max-width: 768px) {
  .about-us .content {
    flex-direction: column;
    text-align: center;
  }

  .about-us .text strong {
    font-size: 22px;
  }

  .about-us .text p {
    text-align: justify;
  }
}


.footer-container {
    display: block;
}
.footer-icons {
    display: flex; /* Ativa o Flexbox */
    justify-content: center; /* Centraliza os ícones horizontalmente */
    align-items: center; /* Centraliza os ícones verticalmente (caso necessário) */
    gap: 10px; /* Espaçamento entre os ícones */
    padding: 20px; /* Adiciona espaço ao redor, se necessário */
}
.custom-text-container h1 {
    font-size: 1.6rem; /* Texto menor para smartphones */
  }

  .custom-text-container p {
    font-size: 1.1rem; /* Texto menor */
  }

  .custom-feature-box h3 {
    font-size: 1.2rem; /* Ajuste no título das caixas */
  }

  .custom-feature-box p {
    font-size: 0.9rem; /* Texto menor */
  }

  .custom-feature-container {
    flex-direction: column; /* Empilha as caixas de recursos */
    gap: 10px;
    
  }
  .custom-content-wrapper-before{
    padding: 15px;
  }
  .custom-template-section{
    height: 100rem;
    
  }
  .custom-content-wrapper{
    padding: 30px;
    display:block;
  }
  .custom-content-wrapper p{
   font-size: 1rem;
   text-align: center;
   font-weight: 300;
    margin-top: 4rem;
  }
  .custom-content-wrapper h1{
    margin-bottom: -10px;
    text-align:center;
    font-size: 2rem;
    margin-top: 25PX;
    
    
    
   }
  .custom-media-container img{
    width: 12rem;
    margin-top: 22px;
  }
  .unique-services-and-projects {
    flex-direction: column;
    gap: 20px;
  }

  .unique-services-box,
  .unique-projects-box {
    flex: 0 0 100%; /* Ocupa 100% da largura */
    height: auto; /* Altura ajustável */
  }

  .unique-services-box {
    margin-top: 0; /* Remove espaçamento superior */
  }
  .unique-hire-button-wrapper{
    order: 1;
    margin-top: 30px;
  }

  
  .unique-profile-section{
    padding: 30px;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
  }
  .unique-profile-name{
    font-size: 1.3rem;
    width: 100%;
   
    margin-top: 0px;
  }
  .unique-profile-photo img{
    width: 90%;
    height: 90%;
  }
  .unique-profile-intro{
    font-size: 1.1rem;
    max-height: 41rem;
  }
  .particle{
    left: 10px;
    width: 80px;
  }
  .logo img{
    margin-left: 10px;
    width: 10rem;
  }
  .unique-carousel-arrow {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    border: none;
    border-radius: 50%;
    font-size: 2.8rem;
    height: 50px;
    justify-items: center;
    cursor: pointer;
    z-index: 10;
  }
  .particle {
    position: absolute;
    bottom: 0;
    width: 1vw; /* Partículas responsivas */
    height: 1vw;
    max-width: 4px; /* Tamanho máximo */
    max-height: 4px;  
    background-color: #307192;
    border-radius: 50%;
    animation: rise 3s infinite ease-in-out;
  }
}
