/*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);
}

.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.5rem;
  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%;
}


/* === Carrossel === */
.carousel-wrapper-full {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.carousel {
  flex-grow: 1;
  display: flex;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 0.5rem 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 auto;
  min-width: 100px;
  max-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.carousel-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}


.carousel-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0.4rem;
  fill: #3154a1;
  filter: brightness(0) saturate(100%) invert(22%) sepia(85%) saturate(362%) hue-rotate(191deg) brightness(92%) contrast(87%);
  transition: all 0.3s ease;
}

.carousel-tag {
  color: #3154a1;
  font-weight: 600;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Hover animado com scale e mudança de cor */
.carousel-item:hover {
  transform: scale(1.2);
}

.carousel-item:hover .carousel-icon {
  filter: brightness(0) saturate(100%) invert(19%) sepia(91%) saturate(5936%) hue-rotate(357deg) brightness(97%) contrast(102%);
}


.carousel-item:hover .carousel-tag {
  background-color: transparent;
  color: #ed1413;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 70%;
  font-size: 1.25rem;
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  z-index: 10;
  color: #3154a1;
}

.carousel-btn.left {
  color: darkgoldenrod;
  left: 0;
}

.carousel-btn.right {
  color: darkgoldenrod;
  right: 0;
}

/*VÍDEO BANNER -> HOME*/
.hero-section {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.hero-title {
  font-size: 6rem;
  font-weight: 500;
  color: #fbc745;
  font-family: 'OfertaDoDia';
  margin-bottom: 1rem;
}

.hero-subtext {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
}

.hero-subtext strong {
  color: #fff;
  font-weight: 700;
}


/*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: 20px;
  padding-right: 20px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

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

.how-it-works p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0;
}

.highlight-text {
  font-family: 'Pacaembu', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #000;
  text-transform: uppercase;
  padding-top: 1.5rem;
}

.text-pink {
  color: #e88dd0;
}


/*BLOCO INSTITUCIONAL: TUDO QUE VOCÊ PRECISA*/
.intro-section {
  background-color: #fff;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 0;
  margin-top: -10;
}

.intro-inner {
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
  padding-left: 60px;
}

.intro-text {
  padding: 4rem 3rem;
  z-index: 2;
}

.intro-logo {
  width: 180px;
}

.intro-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.2;
  color: #000;
  margin-bottom: 1rem;
}

.highlight-yellow {
  color: #fbc745;
  font-weight: 700;
}

.intro-paragraph {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.intro-btn {
  display: inline-block;
  background-color: #2e3f35;
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-size: 1.3rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s ease-in-out;
}

.intro-btn:hover {
  background-color: #fbc745;
  color: #3154a1;
  scale: 1.08;
}

/* Imagem da menina */
.intro-girl-wrapper {
  position: relative;
  height: 800px;
  min-height: 500px;
}

.intro-girl-fixed {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-height: 100%;
  z-index: 1;
  object-fit: contain;
  pointer-events: none;
}

@media (max-width: 768px) {
  .intro-girl-fixed {
    position: relative;
    width: 80%;
    height: auto;
    display: block;
    margin: 2rem auto 0 auto;
  }

  .intro-girl-wrapper {
    min-height: auto;
    text-align: center;
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-girl-fixed {
  animation: fadeSlideUp 1s ease-out forwards;
  opacity: 0;
}

/*MAIS PRCURADOS DO MÊS*/
/* Sessão Mais procurados */
/* Top serviços carrossel */
.top-services {
  background: #fff;
}

.section-title {
  font-family: 'Pacaembu', sans-serif;
  font-size: 3rem;
  color: #1d372f;
  font-weight: bold;
  padding-bottom: 2rem;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
}

#topServiceCarousel {
  display: flex;
  gap: 1rem;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding: 0 40px;
}

.service-card {
  flex: 0 0 calc(25% - 2rem);
  background: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  color: #333;
  text-decoration: none;
  min-height: 200px;
  max-width: 100%;
  height: 380px;
}

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

.service-card:hover {
  transform: scale(1.03);
  border-radius: 12px;
}

.service-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

.service-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif ;
  font-weight: 900;
  color: #3154a1;
  font-size: 2rem;
  margin: 1rem 1rem 0.5rem 1rem;
  text-align: left;
}

.service-desc {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.4;
  margin: 0 1rem 1rem 1rem;
  text-align: left;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.service-metrics {
  display: flex;
  justify-content: space-between;
  font-family: 'Pacaembu';
  font-weight: 800;
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: #3154a1;
}

.service-metrics small {
  display: block;
  font-size: 0.80rem;
  font-weight: 600;
  color: #3154a1;
} 

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fbc745;
  background-color: #ffffffc5;  
  border: none;
  border-radius: 50%;
  font-size: 2.3rem;
  padding: 0.4rem 1rem;
  cursor: pointer;
  z-index: 5;
}

.carousel-btn.left {
  left: -12px;
}

.carousel-btn.right {
  right: -12px;
}

.section-footer-text {
  font-size: 1.2rem;
  color: #333;
}




/* ==== SEÇÃO CTA - ANUNCIAR ==== */
.cta-anuncie {
  position: relative;
  width: 100%;
  height: 410px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.cta-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* 60% preto */
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  padding: 2rem;
  text-align: right;
  margin-left: auto;
  margin-right: 4rem;
  margin-top: 3rem;
  animation: fadeSlideUp 1s ease-out forwards;
  opacity: 0;
}

.cta-titulo {
  font-size: 2.5rem;
  line-height: 1.1;
  padding-bottom: 1rem;
}

.cta-font-destaque {
  font-family: 'Acme', sans-serif;
  font-size: 4rem;
  padding-right: 4px;
  font-weight: 800;
  color: #fbc745;
}

.cta-font-leve {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 3.2rem;
  color: #fff;
}

.cta-content p {
  margin-top: 1rem;
  font-size: 1.3rem;
  line-height: 1.2;
}

.cta-sub {
  margin-top: 0.5rem;
  font-weight: 800;
  font-size: 2rem;
}

.cta-button {
  display: inline-block;
  margin-top: 2rem;
  background-color: #fbc745;
  color: #1d1d1d;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.35s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: left 0.4s ease;
}

.cta-button:hover::after {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background-color: #ffd556;
  color: #000;
}

.cta-logo {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 90px;
  z-index: 3;
  transition: transform 0.3s ease;
}

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

/* Responsivo */
@media (max-width: 768px) {
  .cta-content {
    text-align: center;
    margin: 0 auto;
  }

  .cta-logo {
    width: 50px;
    left: 20px;
    bottom: 20px;
  }
}



/*+++++++++++++++++++++++ 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: 1512px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0rem 1rem;
  }
}

@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: HERO SECTION (VÍDEO DE FUNDO + TEXTO) === */
/* ============================= */

@media (max-width: 768px) {
  .hero-title {
    font-size: 4rem;
    line-height: 1.2;
  }

  .hero-subtext {
    font-size: 1.4rem;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-content {
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .hero-video {
    object-position: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3.3rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .hero-content {
    padding: 1rem 1rem;
  }
}


/* ============================= */
/* === RESPONSIVO: HOW-IT-WORKS (SESSÃO EMOJIS) === */
/* ============================= */

@media (max-width: 992px) {
  .how-icon {
    width: 90px;
  }

  .how-it-works p {
    font-size: 1rem;
  }

  .highlight-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .how-icon {
    width: 95px;
  }

  .how-it-works p {
    font-size: 1.05rem;
  }

  .highlight-text {
    font-size: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .how-icon {
    width: 125px;
  }

  .how-it-works p {
    font-size: 1.1rem;
    padding-bottom: 20px;
  }

  .highlight-text {
    font-size: 2rem;
    padding-top: 1rem;
    text-align: center;
  }

  .how-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}


/* =====================================
   SESSÃO "TUDO O QUE VOCÊ PRECISA"
   ===================================== */

@media (max-width: 1500px) {
  .intro-girl-fixed {
    position: absolute;
    width: 100%;
    max-width: 890px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .intro-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
  }

  .intro-title{
    font-size: 3rem;
  }

  .intro-text {
    width: 100%;
    padding: 2rem 1.5rem 1rem;
  }

  .intro-btn {
    font-size: 1.6rem;
    padding: 0.6rem 1.4rem;
    margin-bottom: 0.5rem;
  }

  .intro-girl-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -12rem;
    min-height: auto;
    position: static;
  }

  .intro-girl-fixed {
    position: relative;
    width: 100%;
    max-width: 680px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .intro-inner {
    flex-direction: column;
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .intro-title{
    font-size: 2.3rem;
  }

  .intro-text {
    padding: 2rem 1rem 0.3rem;
  }

  .intro-btn {
    font-size: 1.2rem;
    padding: 0.55rem 1.2rem;
    margin-bottom: 0.3rem;
  }

  .intro-girl-wrapper {
    height: auto;
    margin-top: -5rem;
    margin-bottom: 2rem;
  }

  .intro-girl-fixed {
    width: 100%;
    max-width: 520px; /* ideal p/ celulares */
    margin: 0 auto;
  }
}





/* =====================================
   SESSÃO "MAIS PROCURADOS DO MÊS"
   RESPONSIVIDADE DOS CARDS DO CARROSSEL
   ===================================== */

/* Desktop: 4 cards por rolagem */
@media (min-width: 992px) {
  .service-card {
    flex: 0 0 calc(25% - 1rem);
  }
}

/* Tablet: 2 cards por rolagem */
@media (min-width: 576px) and (max-width: 991px) {
  .service-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

/* Mobile: 1 card por rolagem e ajustes visuais */
@media (max-width: 575px) {
  .service-card {
    flex: 0 0 100%;
    margin: 0 auto;
    max-width: 90%;
  }

  #topServiceCarousel {
    padding: 0 20px;
  }

  .section-title {
    font-size: 2.5rem;
    line-height: 3rem;
    text-align: center;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    top: 45%;
  }

  .carousel-btn.left {
    left: -18px;
  }

  .carousel-btn.right {
    right: -18px;
  }

  .section-footer-text {
  font-size: 1.2rem;
  }
}



/* =====================================
   SESSÃO "CTA ANUNCIE"
   RESPONSIVIDADE
   ===================================== */

@media (max-width: 768px) {
  .cta-content {
    margin: 0 auto;
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .cta-titulo {
    margin-top: 2rem;
    font-size: 2rem;
  }

  .cta-font-destaque {
    font-size: 2.8rem;
  }

  .cta-font-leve {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-sub {
    font-size: 1.3rem;
  }

  .cta-button {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
    margin-bottom: 2rem;
  }

  .cta-logo {
    width: 50px;
    bottom: 1rem;
    left: 1rem;
    position: absolute;
    z-index: 3;
  }
}


/* ========================
   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 {
    padding: 2rem 1rem; /* Reduza se necessário */
  }

  .footer-section {
    margin-bottom: 1.5rem; /* Diminuído, antes poderia ser 2.5rem ou mais */
  }

  .footer-social-icons {
    gap: 1rem; /* menor espaçamento entre ícones */
    margin-bottom: 1.5rem;
  }

  .footer-download-buttons {
    margin-top: 1rem;
    gap: 1rem;
  }

  .footer-certifications {
    margin-top: 1rem;
    gap: 1rem;
  }

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



/* ===== 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;
}





















