@charset "UTF-8";
/* --- Variáveis Locais --- */
/* Animações */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes pulse-scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}
@keyframes subtle-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* =========================================
   ESTILOS BASE (MOBILE FIRST)
   ========================================= */
#banner {
  font-family: "DM Sans", serif;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  /* SCROLL DOWN: Removido no Mobile por padrão */
}
#banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(118, 7, 180, 0.08), transparent 60%);
  animation: subtle-move 20s ease infinite;
  z-index: -1;
  pointer-events: none;
}
#banner__text {
  max-width: 100%;
}
#banner__text p {
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#banner__text h1 {
  color: var(--text-white);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
#banner .scroll-down {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-gray);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
}
#banner .scroll-down i {
  display: block;
  font-size: 20px;
  margin-top: 5px;
  color: var(--color-secondary);
  animation: pulse-scroll 2s infinite;
}

#about {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
#about__image-wrapper {
  position: relative;
  z-index: 5;
  margin-bottom: 30px;
}
#about__image-wrapper img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
#about__content {
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--border-glass);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  padding: 25px;
  max-width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  border-left: 4px solid var(--color-secondary);
}
#about__content h2 {
  color: var(--text-white);
  font-family: "DM Sans", serif;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 20px;
}
#about__content p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}
#about__content p span {
  color: var(--color-secondary);
  font-weight: 700;
}
#about__content .stats-row {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#about__content .stats-row .stat-item strong {
  display: block;
  font-size: 20px;
  color: var(--text-white);
  line-height: 1;
}
#about__content .stats-row .stat-item span {
  font-size: 11px;
  color: var(--text-gray);
  text-transform: uppercase;
}
#about__content .button {
  margin-top: 20px;
  font-size: 14px;
  padding: 10px 25px;
}

#services {
  font-family: "DM Sans", serif;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
#services h3 {
  color: var(--text-white);
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
  z-index: 5;
}
#services h3 span {
  color: var(--color-secondary);
}
#services .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  position: relative;
  z-index: 10;
  padding: 0 10px;
}
#services .service-card {
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--border-glass);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 25px;
  transition: all 0.4s ease;
  height: 100%;
  min-height: 200px;
}
#services .service-card i {
  font-size: 45px;
  color: var(--text-gray);
  margin-bottom: 25px;
  transition: all 0.4s;
}
#services .service-card h4 {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
#services .service-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(180, 48, 171, 0.2);
}
#services .service-card:hover i {
  color: var(--color-secondary);
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(180, 48, 171, 0.6));
}

#software-factory {
  font-family: "DM Sans", serif;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
#software-factory h4 {
  color: var(--text-white);
  font-size: 35px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
  position: relative;
  z-index: 5;
}
#software-factory h4 span {
  color: var(--color-secondary);
}
#software-factory p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
  z-index: 5;
}
#software-factory .tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 15px;
  margin-top: 30px;
  position: relative;
  z-index: 5;
}
#software-factory .tech-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px 5px;
  text-align: center;
  transition: all 0.3s;
}
#software-factory .tech-card i, #software-factory .tech-card svg {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
  color: var(--text-gray);
  transition: color 0.3s;
}
#software-factory .tech-card span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-gray);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s;
}
#software-factory .tech-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--color-secondary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
#software-factory .tech-card:hover i, #software-factory .tech-card:hover svg {
  color: var(--text-white);
  text-shadow: 0 0 10px var(--color-secondary);
}
#software-factory .tech-card:hover span {
  color: var(--text-white);
}
#software-factory .btn-contact {
  margin-top: 60px;
}
#software-factory .btn-contact a {
  font-size: 18px;
}

#clients {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
#clients h3 {
  color: var(--text-white);
  font-family: "DM Sans", serif;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  z-index: 5;
}
#clients__carousel {
  position: relative;
  z-index: 5;
}
#clients__carousel .item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  border: var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
}
#clients__carousel .item img {
  max-height: 90px;
  width: auto !important;
  max-width: 90%;
  filter: none;
  opacity: 1;
  transition: all 0.3s ease;
}
#clients__carousel .item img:hover {
  transform: scale(1.1);
}

#products {
  font-family: "DM Sans", serif;
  padding: 50px 0 100px 0;
  position: relative;
  overflow: hidden;
}
#products h5 {
  color: var(--text-white);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
#products h5 span {
  color: var(--color-secondary);
}
#products .product-item {
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--border-glass);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  /* A margem agora é controlada pela classe .mb-4 no PHP */
  padding: 20px;
  transition: transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
}
#products .product-item:hover {
  transform: translateY(-8px);
  border-color: var(--color-secondary);
}
#products .product-item img {
  border-radius: 10px;
  margin-bottom: 15px;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
#products .product-item span {
  color: var(--text-white);
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
#products .product-item p {
  color: var(--text-gray);
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}
#products .product-item .button {
  margin-top: auto;
  font-size: 14px;
  padding: 10px 0;
}

#faq {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#faq h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 35px;
  color: var(--text-white);
  position: relative;
  z-index: 5;
}
#faq h2 span {
  color: var(--color-secondary);
}
#faq .faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}
#faq .faq-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-secondary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
#faq .faq-item .faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#faq .faq-item .faq-question h3 {
  font-size: 16px;
  margin: 0;
  color: var(--text-white);
  font-weight: 600;
}
#faq .faq-item .faq-question i {
  transition: transform 0.3s;
  color: var(--color-secondary);
  font-size: 14px;
}
#faq .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
#faq .faq-item .faq-answer p {
  padding: 0 25px 25px 25px;
  margin: 0;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

#contact {
  background: linear-gradient(135deg, var(--color-primary), #4a0072);
  font-family: "DM Sans", serif;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#contact::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0;
}
#contact h6 {
  color: #FFFFFF;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
#contact .contact-box {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

/* =========================================
   MEDIA QUERIES (DESKTOP)
   ========================================= */
@media (min-width: 576px) {
  #services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  #banner {
    padding: 140px 0 100px 0;
    min-height: 95vh;
    display: flex;
    align-items: center;
    /* SCROLL DOWN: Exibe apenas no desktop */
  }
  #banner__text {
    max-width: 80%;
  }
  #banner__text p {
    font-size: 20px;
  }
  #banner__text h1 {
    font-size: 95px;
    line-height: 100px;
    margin-bottom: 40px;
  }
  #banner .scroll-down {
    display: block;
    bottom: 80px;
    font-size: 12px;
  }
  #about {
    padding: 150px 0;
  }
  #about__image-wrapper {
    margin-bottom: 0;
    margin-right: -80px;
  }
  #about__image-wrapper img {
    width: 100%;
    max-width: 550px;
    float: left;
  }
  #about__content {
    margin-top: 50px;
    padding: 40px;
  }
  #about__content h2 {
    font-size: 42px;
    line-height: 50px;
  }
  #about__content p {
    font-size: 15px;
  }
  #about__content .stats-row .stat-item {
    margin-right: 40px;
  }
  #about__content .stats-row .stat-item strong {
    font-size: 32px;
  }
  #services {
    padding: 100px 0;
  }
  #services .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  #software-factory {
    padding: 140px 0;
  }
  #software-factory h4 {
    font-size: 70px;
    line-height: 80px;
  }
  #software-factory .tech-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
  }
  #products h5 {
    font-size: 60px;
  }
  #contact h6 {
    font-size: 50px;
    text-align: left;
    margin-bottom: 20px;
  }
}

/*# sourceMappingURL=page-home.css.map */
