@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--primary-black);
}

:root {
  --primary-black: #090909;
  --primary-blue: #1385CC;
  --primary-green: #04F887;
  --primary-white: #ffffff;
  --bg-color: #0a0a0a;
  --text-color: #ffffff;
  --highlight-green: #00ff8c;
  --card-bg: #111111;
  --transition-time: 2s;
}

body {

 
  line-height: 1.5;
  font-family: "Playfair Display", sans-serif;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

svg {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--primary-white);
  font-family: "Lore", sans-serif;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1 {
  color: var(--primary-white);
}

header {
  width: 100%;
  position: fixed;
  z-index: 200000;
  top: 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 9px;
}

.header-links {
  display: flex;
  gap: 3rem;
  font-family: "Lore", sans-serif;
}

.header-links ul li {
  display: inline-block;
  padding: 2.5rem;
}

.header-links a {
  transition: color 0.2s ease-in-out;
}

.header-links a:hover {
  color: var(--primary-blue);
}

.dropdown:hover .dropdown-button {
  display: block;
  transition: 0.2s ease-in-out;
}

.dropdown-button {
  position: absolute;
  border: 1px solid rgba(254, 254, 254, 0.737254902);
  border-radius: 7px;
  padding: 10px 5px 10px 5px;
  margin-top: 5px;
  display: none;
}

.dropdown-button a {
  display: block;
  padding: 5px;
  transition: 0.2s ease-in-out;
  border-bottom: 1px solid rgba(254, 254, 254, 0.737254902);
}

.dropdown-button a:hover {
  background-color: rgba(254, 254, 254, 0.737254902);
}

.header-buttons {
  display: flex;
  gap: 1rem;
}

.header-buttons a:first-child {
  border: 3px solid var(--primary-blue);
  border-radius: 7px;
  padding: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.header-buttons a:last-child {
  border: none;
  background-color: var(--primary-blue);
  border-radius: 7px;
  padding: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.header-buttons a:first-child:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 15px rgba(255, 255, 255, 0.245);
}

.header-buttons a:last-child:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 15px rgba(255, 255, 255, 0.245);
}

.mobile-menu-icon .icon {
  display: none;
  color: var(--primary-white);
}

.mobile-menu {
  display: none;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  text-align: end;
}

.open {
  display: block;
}

.section-1 {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.container-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.txt {
  font-family: "Lore", sans-serif;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #c1c1c1;
  margin-bottom: 7px;
}

.swiper {
  width: 40vw;
  height: 60vh;
  border-radius: 10px;
  margin-top: 10rem;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  object-fit: contain;
  border-radius: 10px;
}

.mySwiper .swiper-pagination-bullet {
  background-color: #ffffff;
  width: clamp(10px, 2vw, 10px);
  height: clamp(10px, 2vw, 10px);
}

.container-rigth {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

.rigth {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-right: 20px;
}

.rigth h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
}

.rigth em {
  color: var(--primary-blue);
}

.rigth p {
  font-family: "Lore", sans-serif;
  font-size: 0.9rem;
  color: var(--primary-white);
}

.buttons-rigth {
  display: flex;
  gap: 1rem;
}

.buttons-rigth a:first-child {
  border: 3px solid var(--primary-blue);
  border-radius: 7px;
  padding: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.buttons-rigth a:last-child {
  border: none;
  background-color: var(--primary-blue);
  border-radius: 7px;
  padding: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.buttons-rigth a:first-child:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 15px rgba(255, 255, 255, 0.245);
}

.buttons-rigth a:last-child:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 15px rgba(255, 255, 255, 0.245);
}

.section-2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
}

.cards-container h3 {
  font-size: 10px;
}

.cards-container h3,
p {
  font-family: "Lore", sans-serif;
}

.card {
  border: 1px solid #c1c0c03e;
  color: #fff;
  border-radius: 12px;
  padding: 1rem;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: start;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ffffffcc;
  text-wrap: nowrap;
}

.card .video {
  width: 100%;
  aspect-ratio: 1280 / 758;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.card .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ccc;
}

.section-3 {
  width: 100%;
  min-height: 100vh;
  color: #fff;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Lore", sans-serif;
}

.container-escolha {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.text-header {
  text-align: center;
}

.text-header h4 {
  color: var(--primary-blue);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.text-header h2 {
  color: var(--primary-blue);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(30, 144, 255, 0.3);
}

.text-header h2 span {
  font-size: clamp(2rem, 5vw, 3rem);
  display: inline-block;
}

.texto-destaque {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  text-align: center;
  padding: 0 15px;
}

.texto-descritivo {
  display: none;
}

.grade-recursos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 30px;
  padding: 0 10px;
}

.cartao-recurso {
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 10px;
  padding: 25px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cartao-recurso:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(30, 144, 255, 0.1);
}

.icone-recurso {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.titulo-recurso {
  color: var(--primary-blue);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.descricao-recurso {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--primary-white);
}

.centro-texto {
  text-align: center;
}

.botao-acao {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--primary-white);
  padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 30px);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 40px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

.botao-acao:hover {
  background: #0078ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.4);
}

.relogio-ponto {
  scroll-margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: var(--primary-black);
  margin-bottom: 20%;
}

.container-esquerda,
.container-direita {
  flex: 1 1 450px;
  max-width: 600px;
}

.container-esquerda h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
  font-family: "Lore", sans-serif;
}

.container-esquerda p {
  margin-bottom: 16px;
  color: var(--text-color);
}

.container-direita {
  display: grid;
  place-items: center;
}

.container-direita img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
}

.acessos {
  scroll-margin-top: 150px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  margin-bottom: 20%;
  background-color: var(--primary-black);
}

.acesso-esquerda,
.acesso-direita {
  flex: 1 1 450px;
  max-width: 600px;
}

.acesso-esquerda h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
  font-family: "Lore", sans-serif;
}

.acesso-esquerda p {
  margin-bottom: 16px;
  color: var(--text-color);
}

.acesso-direita {
  display: grid;
  place-items: center;
}

.acesso-direita img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
}

.computadores-automação {
  scroll-margin-top: 180px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  margin-bottom: 20%;
  background-color: var(--primary-black);
}

.automacao-esquerda,
.automacao-direita {
  flex: 1 1 450px;
  max-width: 600px;
}

.automacao-esquerda h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-blue);
  font-family: "Lore", sans-serif;
}

.automacao-esquerda p {
  margin-bottom: 16px;
  color: var(--text-color);
}

.automacao-direita {
  display: grid;
  place-items: center;
}

.automacao-direita img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
}

.section-4 {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-container {
  width: 100%;
  max-width: 1200px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 500px;
}

.text-section {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--primary-black);
  position: relative;
  overflow: hidden;
}

.slide-text {
  position: absolute;
  width: calc(100% - 80px);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.slide-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.slide-text.prev {
  opacity: 0;
  transform: translateY(-40px);
}

.slide-text.next {
  opacity: 0;
  transform: translateY(40px);
}

.slide-text h2 {
  font-size: 2rem;
  font-family: "Lore", sans-serif;
  margin-bottom: 10px;
  color: var(--primary-blue);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s ease 0.1s, opacity 0.6s ease 0.1s;
}

.slide-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--primary-white);
  margin-bottom: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
}

.slide-text p:last-child {
  transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
}

.slide-text.active h2,
.slide-text.active p {
  transform: translateY(0);
  opacity: 1;
}

.image-section {
  width: 50%;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-black);
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.8s ease, transform 1s ease;
  object-fit: contain;
}

.slide-image.active {
  opacity: 1;
  transform: scale(1);
}

.slide-image.prev {
  opacity: 0;
  transform: scale(0.9) translateX(-10%);
}

.slide-image.next {
  opacity: 0;
  transform: scale(0.9) translateX(10%);
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.slider-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slider-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff9f9;
}

.slide-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: white;
  transform: scale(1.2);
}

.container {
  scroll-margin-top: 100px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 10%;
  border: 1px solid rgba(87, 87, 87, 0.311);
  border-radius: 8px;
  padding: 40px;
}

.header-testimonials {
  text-align: center;
}

.header-testimonials h1 {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Lore", sans-serif;
  color: var(--primary-white);
}

.header-testimonials h2 {
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1rem;
}

.testimonial-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-time), box-shadow var(--transition-time);
}

.testimonial-item img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-item.highlight {
  grid-column: span 1;
  grid-row: span 1;
}

.testimonial-item:nth-child(8) {
  grid-column: span 2;
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
}

.brand-logo {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.testimonial-content {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-content.green {
  background-color: var(--highlight-green);
}

.testimonial-content.green p {
  background-color: var(--highlight-green);
}

.testimonial-content.blue {
  background-color: var(--primary-blue);
}

.testimonial-content.blue p {
  background-color: var(--primary-blue);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-family: "Lore", sans-serif;
}

.testimonial-content.green,
.testimonial-content.blue {
  padding-top: 0.5rem;
  margin-top: auto;
}

.author-name {
  font-weight: 600;
  font-size: 1rem;
  border: none;
}

.author-position.green,
.author-position.blue {
  font-size: 0.8rem;
  border: none;
}

.dots {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.testimonial-item .content-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-time) ease-in-out;
}

.testimonial-item .content-container.active {
  opacity: 1;
}

.clientes-wrapper {
  margin-bottom: 15%;
  width: 100%;
  padding: 20px;
  background-color: var(--primary-black);
}

.clientes-wrapper h2 {
  text-align: center;
  font-family: "Lore", sans-serif;
  margin-bottom: 5%;
  color: white;
  font-size: 28px;
}

.clientes-carrossel-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--primary-black);
  border-radius: 10px;
  padding: 20px 0;
}

.clientes-carrossel-track {
  display: flex;
}

.clientes-slide img {
  max-width: 100%;
  max-height: 100px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.clientes-slide img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .clientes-wrapper h2 {
    font-size: 24px;
  }

  .clientes-carrossel-box {
    padding: 15px 0;
  }
}

@media (max-width: 576px) {
  .clientes-wrapper {
    padding: 10px;
  }

  .clientes-wrapper h2 {
    font-size: 20px;
  }

  .clientes-carrossel-box {
    padding: 10px 0;
  }

  .clientes-slide {
    width: 150px;
    padding: 0 10px;
  }

  .clientes-slide img {
    max-height: 80px;
  }
}

.img-container {
  position: relative;
  color: var(--text-color);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10%;
}

.img-container p {
  font-size: 1.2rem;
}

.img-container::before {
  content: "";
  background-image: url("./assets/img-fundo-footer.webp");
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
}

.img-container-txt {
  font-family: "Lore", sans-serif;
  font-weight: bolder;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.icons {
  display: flex;
  gap: 2rem;
  font-size: 1.6rem;
  cursor: pointer;
}

.icons i {
  color: var(--primary-white);
  transition: transform 0.3s ease, color 0.3s ease;
}

.icons i:hover {
  transform: scale(1.2);
}

.img-container-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.img-container-buttons a:first-child {
  border: 3px solid var(--primary-blue);
  border-radius: 7px;
  padding: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.img-container-buttons a:last-child {
  border: none;
  background-color: var(--primary-blue);
  border-radius: 7px;
  padding: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.img-container-buttons a:first-child:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 15px rgba(255, 255, 255, 0.245);
}

.img-container-buttons a:last-child:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 15px rgba(255, 255, 255, 0.245);
}

.footer {
  background-color: var(--primary-black);
  color: var(--text-color);
  padding: 30px 0;
  font-family: "Lore", sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 8px;
  display: flex;
  justify-content: space-between;

}

.footer-logo {
  flex: 1;
  max-width: 120px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-sections {
  flex: 3;
  display: flex;
  justify-content: space-between;
}

.footer-section {
  padding: 0 15px;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-info {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-link {
  color: #aaa;
  text-decoration: none;
  transition: .2s;
}

.contact-link:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 12px;
}

@media (max-width: 1143px) {
  .header-logo {
    margin-top: 10px;
  }

  .header-links {
    display: none;
  }

  .mobile-menu-icon .icon {
    display: block;
    cursor: pointer;
  }

  .mobile-menu .dropdown-button {
    position: relative;
  }

  .mobile-menu .dropdown-button {
    border: none;
    margin-right: 5px;
  }

  .mobile-menu .dropdown-button a {
    border-bottom: none;
    margin-bottom: 8px;
  }

  .mobile-menu .dropdown-button a:hover {
    background-color: transparent;
  }

  .mobile-menu .nav-link {
    border: 2px solid rgba(254, 254, 254, 0.737254902);
    border-radius: 5px;
    padding: 7px;
    margin-right: 5px;
    transition: 0.2s ease-in-out;
  }

  .mobile-menu .nav-link:hover {
    background-color: rgba(242, 242, 242, 0.399);
  }

  .mobile-menu ul span:hover {
    color: var(--primary-blue);
    transition: 0.2s ease-in-out;

  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .footer-sections {
    flex-wrap: wrap;
  }

  .footer-section {
    flex-basis: 33%;
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-item:nth-child(8) {
    grid-column: span 1;
  }
}

@media screen and (max-width: 925.60px) {
  .section-2 {
    display: block;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-logo {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .footer-sections {
    flex-direction: column;
  }

  .footer-section {
    margin-bottom: 20px;
    padding: 0;
  }

  section.relogio-ponto {
    flex-direction: column;
    text-align: center;
  }

  .container-direita,
  .container-esquerda {
    max-width: 100%;
  }

  .container-esquerda h1 {
    font-size: 1.8rem;
  }

  .slider-content {
    flex-direction: column;
  }

  .text-section,
  .image-section {
    width: 100%;
    height: 50%;
  }

  .text-slide {
    padding: 20px;
    overflow-y: auto;
  }

  .text-slide h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .text-slide p {
    font-size: 14px;
  }

  .section-3 {
    padding: 60px 0;
  }

  .container-escolha {
    gap: 25px;
  }

  .grade-recursos {
    gap: 20px;
  }

  .slider-wrapper {
    flex-direction: column;
    height: auto;
  }

  .text-section,
  .image-section {
    width: 100%;
  }

  .text-section {
    padding: 30px;
    order: 2;
    height: 300px;
  }

  .slide-text {
    width: calc(100% - 60px);
  }

  .image-section {
    height: 300px;
    order: 1;
  }

  .slide-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .slider-controls {
    bottom: 10px;
    right: 10px;
  }

  .slide-indicators {
    bottom: 310px;
  }
}

@media (max-width: 667px) {
  .header-buttons a {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .buttons-rigth {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .section-1 {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .container-left {

    max-height: 70vh;
    order: 2;
    display: block;
  }

  .swiper {
    width: 75vw;
    max-height: 200px;
    transform: translateY(-20%);
  }

  .swiper-pagination {
    display: none;
  }

  .container-rigth {
    order: 1;
  }

  .rigth {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0 0 0;
  }

  .rigth h1 {
    text-align: center;
    font-size: 1.4rem;
  }

  .rigth p {
    text-align: center;
  }

  .img-container-txt {
    text-align: center;
    font-size: 1rem;
  }

  .img-container p {
    text-align: center;
  }

  .relogio-ponto h1 {
    font-size: 1.6rem;
  }

  .acesso-esquerda h1 {
    font-size: 1.6rem;
    text-align: center;
  }

  .automacao-esquerda h1 {
    font-size: 1.6rem;
  }

  .header-testimonials h1 {
    font-size: 1.6rem;
  }

}

@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .header h1 {
    font-size: 1.5rem;
  }

  .header h2 {
    font-size: 1.2rem;
  }

  .mobile-menu-icon {
    margin-right: 15px;
  }
}

@media (max-width: 570px) {
  .buttons-rigth {
    flex-direction: column;
    text-align: center;
  }

  .header-buttons {
    display: none;
  }
}

@media (max-width: 480px) {
  .text-section {
    padding: 20px;
    height: 280px;
  }

  .slide-text {
    width: calc(100% - 40px);
  }

  .image-section {
    height: 250px;
  }

  .slide-text h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .slide-text p {
    font-size: 0.9rem;
  }

  .slider-btn {
    width: 35px;
    height: 35px;
  }

  .slide-indicators {
    bottom: 260px;
  }

  .section-3 {
    padding: 40px 0;
  }

  .container-escolha {
    gap: 20px;
  }

  .cartao-recurso {
    padding: 20px;
  }

  .botao-acao {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .text-header h2 span {
    font-size: 1.5rem;
  }
}

@media (max-width: 414px) {
  .header-logo {
    width: 120px;
  }

  .card h3 {
    font-size: 14px;
  }

  .slide-text {
    max-height: 300px;

  }
}

@media (max-width: 390px) {
  .section-2 {
    margin-top: 10%;
  }

  .cards-container {
    gap: 1rem;
  }
}

@media (max-width: 375px) {
  .section-2 {
    margin-top: 25%;
  }
}

@media (max-width: 320px) {
  .section-2 {
    margin-top: 90%;
  }
}