/*FONTES*/
@font-face {
  font-family: 'Acme';
  src: url('../assets/fonts/Acme-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'OfertaDoDia';
  src: url('../assets/fonts/Oferta-do-Dia.ttf') format('truetype');
  font-weight: 10;
  font-style: normal;
}

@font-face {
  font-family: 'Pacaembu';
  src: url('../assets/fonts/Pacaembu-Thin-Trial.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Pacaembu';
  src: url('../assets/fonts/Pacaembu-Light-Trial.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Pacaembu';
  src: url('../assets/fonts/Pacaembu-Regular-Trial.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Pacaembu';
  src: url('../assets/fonts/Pacaembu-Medium-Trial.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Pacaembu';
  src: url('../assets/fonts/Pacaembu-Bold-Trial.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Pacaembu';
  src: url('../assets/fonts/Pacaembu-Black-Trial.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Pacaembu';
  src: url('../assets/fonts/Pacaembu-Ultra-Trial.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/*=======================================================================*/



body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background: #fff;
  padding: 20px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

section {
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
}

.header-inner {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.logo {
  height: auto;
  max-height: 130px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover{
  transform: scale(1.1);
}

.search-form {
  flex-grow: 1;
  height: 50px;
  width: 200px;
  max-width: 1000px;
  margin: 0 20px;
  border: 3px solid #ed1413;
  border-radius: 25px;
  padding: 0% 1rem;
  background: white;
  display: flex;
  align-items: center;
}

.search-icon {
  width: 25px;
  height: 25px;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.search-icon-login {
  width: 50px;
  height: 50px;
  margin: 0.5rem 0.5rem;
  flex-shrink: 0;
}

.search-input {
  border: none;
  outline: none;
  box-shadow: none;
  flex-grow: 1;
  font-size: 0.9rem;
  color: #666;
}

.search-input::placeholder {
  color: #ccc;
}

header span,
header a {
  font-family: 'Montserrat', sans-serif;
  padding: 1rem 1rem;
  font-weight: 400;
  font-size: 22px;
  color: #3154a1;
  text-decoration: none;
}

header a svg {
  stroke: #3154a1;
}

.menu-link {
  position: relative;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #3154a1;
  text-decoration: none;
  padding: 0.2rem;
  transition: color 0.3s ease;
}

.menu-link::before {
  content: '';
  position: absolute;
  bottom: 0; /* para linha acima do texto */
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ed1413;
  transition: width 0.3s ease;
}

.menu-link:hover::before {
  width: 100%;
}

/*BOTÃO FAZER LOGIN*/

.login-section {
  display: flex;
  justify-content: flex-start;
  background-color: #fff;
}

.btn-login {
  background-color: #1e56a0;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-size: 1.2rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background-color: #174a8c;
}


/*SESSÃO SEJA ENCONTRADO*/
.hero {
  position: relative;
  padding: 4rem 1.5rem;
  overflow-x: clip;
  background-color: #fff;
  overflow: hidden;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.hero-text {
  padding-left: 2rem;
  flex: 1;
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-weight: 500px;
}

.highlight-bg {
  background-color: #ffc72c;
  display: inline-block;
  padding: 0 0.25rem;
}

.highlight-red {
  color: #d92525;
  font-family: 'OfertaDoDia', sans-serif;
}

.highlight-blue {
  color: #004aad;
  font-family: 'OfertaDoDia', sans-serif;
  display: block;
  margin-top: 0.25rem;
}

.hero-description {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 1.5rem 0 2rem;
  color: #333;
}

.btn-cta {
  background-color: #2c4d3f;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: #1e352c;
}

.hero-image {
  position: absolute;
  bottom: -100px;
  right: -240px;
  transform: rotate(-40deg);
  z-index: 0;
  pointer-events: none;
}

.hero-image img {
  width: 900px;
  max-width: none;
  height: auto;
}



/*+++++++++++++++++++PLANOS++++++++++++++++++++++*/
.planos {
  padding: 4rem 2rem;
  background-color: #f5f6f8;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.titulo-secao {
  text-align: center;
  color: #001f49;
  font-size: 4rem;
  font-weight: 500px;
  font-family: 'Acme', sans-serif;
  margin-bottom: 3rem;
  position: relative;
}

.titulo-secao::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #3154a1;
  margin: 0.5rem auto 0;
  border-radius: 3px;
}

.cards-planos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.plano-card {
  background-color: #fff;
  padding: 3rem;
  border-radius: 8px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 0 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 3px solid transparent;
  transition: transform 0.2s ease;
}

.plano-card:hover {
  transform: translateY(-5px);
}

.plano-card h3 {
  font-family: 'Pacaembu', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.plano-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  width: 100%;
  color: #333;
}

.plano-card ul li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1.2rem;
}

.plano-card .preco {
  font-family: 'Pacaembu', sans-serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #1d2b3a;
}

.plano-card .preco strong {
  font-size: 2rem;
}

.btn-contratar {
  background-color: #004aad;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}

.btn-contratar:hover {
  background-color: #2c4d3f;
}

.plano-card.destaque {
  border-top: 5px solid #d92525;
  z-index: 1;
}




/*SESSÃO EMOJIS*/
.how-it-works {
  background-color: #fff;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.how-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.how-icon {
  width: 120px;
  height: auto;
}

.how-it-works p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  text-align: center;
}

.highlight-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: #004aad;
  text-transform: uppercase;
  margin-bottom: 4rem; /* Aumenta o espaçamento entre o título e os ícones */
}

.text-blue {
  color: #004aad;
  font-weight: 800;
}



/*+++++++++++++++++++++++ SESSÃO DEPOIMENTOS EMPRESÁRIOS +++++++++++++++++++++*/
.testimonials-section {
  width: 100%;
  background: #fff;
  padding: 4rem 2rem;
}

.container-testimonial {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.testimonial-left {
  flex: 1 1 500px;
  max-width: 600px;
}

.testimonial-title {
  font-family: 'OfertaDoDia', sans-serif;
  font-size: 4.2rem;
  color: #ed1413;
  font-weight: 500;
  margin-bottom: 1rem;
}

.testimonial-description {
  font-size: 1.3rem;
  color: #333;
  line-height: 1.6;
}

/* === Carrossel === */
.testimonial-carousel-wrapper {
  position: relative;
  flex: 1 1 500px;
  max-width: 500px;
  overflow: visible;
  margin: 0 auto;
}

.testimonial-carousel {
  display: flex;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;

  /* Oculta barra de rolagem em todos os navegadores */
  -ms-overflow-style: none;     /* IE/Edge */
  scrollbar-width: none;        /* Firefox */
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;                /* Chrome/Safari */
}

.testimonial-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: #f7f7f7;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* === Conteúdo do Card === */
.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  color: #111;
}

.testimonial-role {
  font-size: 1rem;
  font-weight: 400;
  color: #777;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.testimonial-button {
  display: inline-block;
  background-color: #3c5d4f;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.testimonial-button:hover {
  background-color: #fbc745;
  color: #2a4036;
  transform: translateY(-2px) scaleX(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* === Botões de Navegação === */
.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #3c5d4f;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 0.6rem 1rem;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.testimonial-btn:hover {
  background-color: #fbc745;
  transform: translateY(-50%) scale(1.1) translateX(3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}


.testimonial-btn.left {
  left: -80px;
}

.testimonial-btn.right {
  right: -80px;
}

/* Responsivo */
@media (max-width: 768px) {
  .container-testimonial {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-left {
    max-width: 100%;
  }

  .testimonial-carousel-wrapper {
    max-width: 100%;
  }

  .testimonial-btn.left {
    left: 10px;
  }

  .testimonial-btn.right {
    right: 10px;
  }
}


/*RODAPÉ*/

.footer {
  background-color: #fff;
  padding: 3rem 2rem;
  border-top: 1px solid #eee;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-logo {
  max-width: 180px;
}

.footer-column h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

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

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: #222;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ed1413;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 2rem; 
  margin-bottom: 1rem;
}

.footer-social i {
  font-size:3rem;
  color: #fbc745 !important;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.footer-social i:hover {
  transform: scale(1.15);
}


.footer-certs img {
  height: 70px;
  margin-right: 0.5rem;
}

.footer-apps img {
  height: 40px;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}









/* ============================= */
/* === RESPONSIVO: HEADER ==== */
/* ============================= */

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0rem 1rem;
  }

  .logo {
    max-height: 150px;
  }

  .search-form {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    height: 50px;
  }

  .search-input {
    font-size: 1rem;
  }

  .menu-link {
    font-size: 1.7rem;
    padding: 0.5rem;
    text-align: center;
    display: block;
    width: 100%;
}
}

@media (max-width: 480px) {
  .logo {
    max-height: 150px;
  }

  .search-form {
    height: 57px;
    width: 90%;
    padding: 0.4rem 1rem;
  }

  .search-icon {
    width: 20px;
    height: 20px;
  }

  .search-input {
    font-size: 0.9rem;
  }

  .menu-link {
    font-size: 1.5rem;
  }
}


/* ========== RESPONSIVO - SEJA ENCONTRADO ========== */
@media (max-width: 768px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    gap: 2rem;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin: 0 auto;
    display: block;
    text-align: center;
  }

  .highlight-bg {
    display: inline-block;
    background-color: #ffc928;
    padding: 0.3rem 1rem;
    margin: 0 auto;
  }

  .highlight-red {
    display: block;
    font-weight: 500;
    color: #c8191e;
    line-height: 1;
  }

  .highlight-blue {
    display: block;
    margin-top: 1rem;
    color: #004aad;
    font-weight: 500;
    line-height: 1;
  }

  .hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 1rem;
    padding: 0 1rem;
  }

  .btn-cta {
    margin-top: 2rem;
    width: 90%;
    max-width: 280px;
  }

  .hero-image {
    position: static;
    transform: rotate(-2deg);
    margin-top: 2rem;
    text-align: center;
  }

  .hero-image img {
    width: 180%;
    max-width: none;
    margin-left: -40%;
  }
}



/* ========================
   SESSÃO DEPOIMENTOS
   Ajustes para celular/tablet
   ======================== */

@media (max-width: 768px) {
  .testimonial-title {
    line-height: 1;
    font-size: 3.6rem;
    margin-bottom: 10;
  }

  .testimonial-btn {
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
  }

  .testimonial-btn.left {
    left: -17px;
  }

  .testimonial-btn.right {
    right: -17px;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-carousel-wrapper {
    padding: 0 1rem;
  }
}



/* ===== RODAPÉ - MOBILE & TABLET ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem; /* reduzido */
    gap: 1rem; /* espaço entre blocos */
  }

  .footer-section {
    margin-bottom: 1.5rem; /* reduzido de espaçamentos maiores */
  }

  .footer-links li {
    margin-bottom: 0.4rem; /* menos espaço entre links */
  }

  .footer-social {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem; /* reduzido */
  }

  .footer-social img {
    width: 28px;
    height: 28px;
  }

  .footer-apps {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .footer-apps img {
    height: 40px;
    margin: 0;
  }

  .footer-certs {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .footer-certs img {
    height: 70px;
  }
}


/* Torna o container da busca relativo para posicionar o dropdown corretamente */
.search-form {
  position: relative;
  width: 100%;
}

/* Resultados da busca flutuante */
.search-results-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 8px 8px;
  max-height: 350px;
  overflow-y: auto;
  transition: all 0.2s ease-in-out;
}

/* Lista */
.search-results-list {
  padding: 0;
  margin: 0;
}

/* Item individual */
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f1f1;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

/* Hover */
.search-result-item:hover {
  background-color: #f8f9fa;
}

/* Ícone do resultado */
.search-result-item-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Texto */
.search-result-item-title {
  font-weight: 600;
  color: #333;
}

.search-result-item-sub {
  font-size: 0.85rem;
  color: #666;
}

/* Mensagem de erro */
.search-no-results {
  padding: 16px;
  font-size: 0.95rem;
  text-align: center;
  color: #888;
}

.search-no-results a {
  color: #0056b3;
  font-weight: 500;
  text-decoration: underline;
}
.search-no-results a:hover {
  color: #003e80;
}

.search-result-more {
  font-weight: bold;
  color: #007bff;
  background-color: #f0f8ff;
  cursor: pointer;
}

.search-result-more:hover {
  background-color: #e6f3ff;
}


/* pagina buscar-empresa.html */

.company-card {
  background-color: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.company-card:hover {
  transform: translateY(-3px);
}

.company-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.company-card-body {
  padding: 1rem;
}

.company-card-body h5 {
  color: #2a4c92 !important; /* Azul escuro */
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.company-card-body p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.company-card-body .btn {
  background-color: #2a4c92 !important;
  border-color: #2a4c92 !important;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.85rem;
}

.company-card-body .btn:hover {
  background-color: #1e3a70;
}

.company-card-body small {
  font-size: 0.75rem;
  color: #2f4e4f;
  text-align: right;
}

.company-card-body small strong {
  font-size: 1rem;
  color: #2a5d56;
}

/* Css para empresas.php */

.vitrine-container {
  gap: 0; /* elimina espaço entre os blocos */
}

.vitrine-img-wrapper {
  aspect-ratio: 4 / 3;
  width: 200px;
  flex: 0 0 auto;
  overflow: hidden;
}

.vitrine-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid #d1d1d1;
  border-radius: 12px;
  background-color: #fff;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.social-btn:hover {
  background-color: #f5f5f5;
  text-decoration: none;
  color: #000;
}

.info-body-html h1, h2, h3, h4, h5, h6 {
  color: #2a4c92 !important;
}

.form-label{
  color: #2a4c92 !important;
}

.form-style {
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  font-weight: 500;
  color: #5a5a5a;
  font-size: 14px;
  padding: 10px 14px;
  box-shadow: none;
}


