@charset "UTF-8";
main a:hover {
  transform: perspective(500px) rotateY(20deg);
}

p {
  color: var(--texto_white2);
}

hr {
  margin-top: 1.5rem;
  background-color: #7e7e7e;
}

.hero {
  background-size: cover;
  background-position: center;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  background-image: url('../../Media/Images/Desktop.png');
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #1d212aee, #1d212aee, transparent), linear-gradient(to bottom, #1d212aee, transparent);
  z-index: 1;
}

.hero_content {
  width: 90%;
  padding: 20px;
  position: relative;
  z-index: 2;
  /* Conteúdo acima do overlay */
}

.service_description {
  margin-top: 10%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
  /* Mantém o texto acima do overlay */
  color: var(--texto_white);
  /* Deixa o texto claro para contraste */
  width: 50%;
  margin-left: 2rem;
  padding-bottom: 8rem;
}

.service_description h1 {
  color: var(--texto_white);
  font-weight: bold;
}

.service_description p {
  color: var(--texto_white2);
  text-align: justify;
}

/* Buttons Styling */
.contact_btn,
.contact_us .quote_btn {
  padding: 12px;
  text-decoration: none;
  color: var(--texto_white);
  border-radius: 10px;
  width: fit-content;
  height: fit-content;
  transition: 0.5s;
  display: block;
}

/* Contact Button */
.contact_btn {
  background-image: linear-gradient(to right, var(--cor1), var(--cor3));
  color: #ffffff;
}

/*Service Cards*/
.packages{
  padding: 2rem;
  background: radial-gradient(circle at top, rgba(67, 126, 194, 0.116), transparent 40%);
}

.service_packages {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

/* Estilização do título */
.packages h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.packages h2 .highlight {
  color: #52A5D9; /* Azul para destacar "Pacotes Especiais" */
  font-weight: bold;
}

.package_option {
  background: linear-gradient(146deg, #475a7cb0, #475a7c5b, transparent);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 0px;
  text-align: left;
  max-width: 350px;
  height: fit-content;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 0.1px #52a5d96b solid;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 20px;
}

hr {
  border: 0;
  border-top: 0.5px solid rgba(141, 141, 141, 0.63);
}

.package_option h3 {
  color: white;
}

.package_option p {
  color: var(--texto_white2);
}

.price {
  text-align: left;
  background: linear-gradient(to right, #5bb5d98e,transparent);
  border-radius: 10px;
  padding: 10px;
  display: flex;
}

.price_main {
  font-size: 3.5rem; /* Tamanho grande para o número principal */
  line-height: 1.2;
  font-weight: bold;
}

.price_unit {
  font-size: 1rem; /* Tamanho médio para "MT" */
  margin-left: 2px;
  display: flex;
  flex-direction: column; 
  margin-top: 2.2%;
  font-weight: bold;
}

.price_month {
  font-size: 1rem; /* Tamanho menor para "/mês" */
  color: rgba(255, 255, 255, 0.8); /* Cor mais clara */
  font-weight: normal;
}

.package_price {
  color: white;
  font-weight: bold;
  font-size: 3rem;
  margin-top: -5%;
}

.package_option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 5px;
  background: linear-gradient(to right, var(--cor4), transparent);
  transition: width 0.5s ease-in-out;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.package_option a {
  color: var(--texto_white2);
  background-color: #14141d;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
}

.package_option ul li {
  color: var(--texto_white2);
}

.package_option a:hover {
  transform: none;
  background: linear-gradient(to right, #14141d, transparent);
  transform: scale(1.05);
  color: white;
}

/*other*/
.other {
  overflow: hidden;
  padding: 50px 0;
  background: linear-gradient(to bottom, rgba(44, 79, 155, 0.274), rgba(24, 46, 92, 0.171), transparent);
  /* Gradiente suave de fundo */
  position: relative;
}

.section_title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--texto_white);
}

.section_subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--texto_white2);
}


/* Buttons */
.buttons {
  margin-top: 1.3%;
}

.btn {
  padding: 12px;
  text-decoration: none;
  color: var(--texto_white);
  background-image: linear-gradient(to right, var(--cor1), var(--cor3));
  border-radius: 10px;
  width: fit-content;
  height: fit-content;
  transition: 0.5s;
  display: block;
}


.custom_kits .btn {
  margin: 0 auto;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  /* Fundo semi-transparente */
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow: hidden;
}

/* Popup Content */
.popup_content {
  background: linear-gradient(to bottom, rgb(14, 19, 32), rgb(20, 25, 39));
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  max-height: 90%;
  /* Limita a altura para caber na tela */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  overflow-y: auto;
  /* Adiciona scroll vertical */
  padding-bottom: 20px;
  scrollbar-width: thin;
  /* Firefox: barra de rolagem fina */
  scrollbar-color: var(--cor3) rgba(255, 255, 255, 0.1);
  /* Firefox: cor do scroll */
}

/* Scroll Custom para Webkit (Chrome, Edge e outros) */
.popup_content::-webkit-scrollbar {
  width: 8px;
  /* Largura da barra */
}

.popup_content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Fundo do track do scroll */
  border-radius: 5px;
}

.popup_content::-webkit-scrollbar-thumb {
  background: #585858;
  /* Cor do thumb (rolador) */
  border-radius: 5px;
}

.popup_content::-webkit-scrollbar-thumb:hover {
  background: #707070;
  /* Cor do thumb quando hover */
}

/* Outros estilos */
.popup_content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px 8px 0px 0px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.popup_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  /* Define a área do overlay */
  background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.7),
          rgba(0, 0, 0, 0));
  /* Gradiente escuro que vai desaparecendo */
  z-index: 2;
  /* Fica acima da imagem */
  border-radius: 8px 8px 0 0;
}

.popup_content .close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--texto_white);
  cursor: pointer;
  z-index: 3;
  /* Garante que fique acima do overlay */
  background: rgba(0, 0, 0, 0.6);
  /* Fundo escuro semi-transparente para contraste */
  padding: 5px;
  border-radius: 1000px;
}

.popup_text {
  width: 90%;
  margin: 0 auto;
}

.popup_content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.popup_content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  color: var(--texto_white2);
  text-align: justify;
}

.popup_content a {
  display: inline-block;
  text-decoration: none;
  color: var(--texto_white);
  background: var(--cor1);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.popup_content a:hover {
  background: var(--cor3);
}

/* Slider principal */
.slider_container {
  overflow: hidden;
  /* Esconde barras de rolagem */
  width: 100%;
  position: relative;
}

/* Extra container with horizontal scrolling */
.extra_container {
  display: flex;
  /* Alinha os cards horizontalmente */
  gap: 1.5rem;
  padding: 2rem;
  overflow-x: auto;
  /* Habilita rolagem horizontal */
  scroll-behavior: smooth;
  /* Rola suavemente */
  scrollbar-width: none;
  /* Remove barra de rolagem no Firefox */
}

.extra_container::-webkit-scrollbar {
  display: none;
  /* Remove barra de rolagem no Chrome/Safari */
}

/* Cards permanecem com o estilo definido */
.card {
  flex: 0 0 auto;
  /* Define largura fixa para os cards no layout flexível */
  width: 300px;
  /* Mantém o tamanho dos cards consistente */
  position: relative;
  background: var(--cor2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  cursor: pointer;
  opacity: 0.8;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

.card .image {
  position: relative;
}

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

.card .image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  /* Gradiente cobre a parte inferior */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  z-index: 1;
}

.card h3 {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
  font-size: 1.2rem;
  color: var(--texto_white);
  font-weight: 500;
  z-index: 2;
  /* Para ficar acima do overlay */
}

/* Botão de ação (+) */
.card::after {
  content: "+";
  position: absolute;
  bottom: 1.5rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--texto_white);
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
  /* Para ficar acima do overlay */
  transition: background-color 0.3s ease;
}
.card:hover::after {background: var(--cor3);}
.slider_container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden; /* Certifique-se de que este overflow não oculta as setas */
}

.slider_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(29, 33, 42, 0.8); /* Fundo semitransparente */
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 24px;
  cursor: pointer;
  z-index: 3; /* Certifique-se de que o z-index seja maior que o dos cards */
  opacity: 0.8;
  border-radius: 1000px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.slider_arrow i {
  font-size: 1.5rem;
}

.slider_arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1); /* Efeito ao passar o mouse */
}

.slider_arrow.prev {
  left: 10px; /* Ajuste para colocá-la dentro do contêiner */
}

.slider_arrow.next {
  right: 10px; /* Ajuste para colocá-la dentro do contêiner */
}


/* Barra de rolagem estilizada */
.slider_container::-webkit-scrollbar {height: 8px;/* Altura da barra de rolagem */}
.slider_container::-webkit-scrollbar-track {background: rgba(255, 255, 255, 0.1);}
.slider_container::-webkit-scrollbar-thumb {background: var(--cor3);border-radius: 4px;}
.slider_container::-webkit-scrollbar-thumb:hover {background: var(--cor1);}

/*--------------------------Contact Us Section ---------------------------*/
.contact_us {
  padding: 4rem 2rem;
  background: radial-gradient(circle, rgba(112, 158, 211, 0.116), transparent 70%);
  color: #ffffff;
  text-align: center;
  margin-bottom: 5rem;
}

/* Container Styles */
.contact_us .container {
  max-width: 800px;
  margin: 0 auto;
}

.contact_us p {
  line-height: 1.6;
}

/* Buttons Container */
.contact_us .buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Buttons Styling */
.contact_btn,
.contact_us .quote_btn {
  padding: 12px;
  text-decoration: none;
  color: var(--texto_white);
  border-radius: 10px;
  width: fit-content;
  height: fit-content;
  transition: 0.5s;
  display: block;
}

/* Contact Button */
.contact_btn {
  background-image: linear-gradient(to right, var(--cor1), var(--cor3));
  color: #ffffff;
}

.contact_us .contact_btn:hover {
  background-color: #3c8ab8;
  transform: translateY(-3px);
}

/* Quote Button */
.contact_us .quote_btn {
  background-color: #ffffff;
  color: #1e3a5f;
  border: 2px solid #52a5d9;
}

.contact_us .quote_btn:hover {
  background-color: #f0f4f9;
  transform: translateY(-3px);
}


/* Responsividade */
@media (max-width: 768px) {
  .extra_container {
    grid-template-columns: 1fr;
  }
  .service_description {
    margin-top: 20%;
  }
  .contact_us h2 {
    font-size: 2rem;
  }

  .contact_us p {
    font-size: 1rem;
  }

  .contact_us .buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .contact_us .contact_btn,
  .contact_us .quote_btn {
    width: 100%;
  }
}

/*Footer-----------------------*/
/* Estilo base para o footer */
footer {
  background-color: #1f1f2ba4;
  color: #f1f1f1;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  flex-direction: row;
  width: 80%;
  margin: auto;
  text-align: left;
  gap: 50px;
}

.logo-socials {
  display: flex;
  flex-direction: column;
  gap: 10%;
}

.sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  width: 100%;
  gap: 10px;
}

/* Links, serviços e contato */
.footer-links ul,
.footer-services ul,
.footer-contact ul {
  list-style-type: none;
  padding: 0;
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a,
.footer-contact ul li a {
  color: var(--texto_white2);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover,
.footer-contact ul li a:hover {
  color: #52A5D9;
}

/* Redes sociais */
.footer-social ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social ul li {
  display: inline-block;
}

.footer-social ul li a i {
  font-size: 18px;
  color: #f1f1f1;

  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social ul li a i:hover {
  transform: scale(1.1);
  color: #52A5D9;
}

/* Direitos autorais */
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  text-align: center;
  margin-top: 20px;
}

.footer-logo img {
  width: 98px;
}

#newsletter {
  padding: 10px;
  width: 90%;
}

.footer-contact li {
  color: var(--texto_white2);
}

#submit-newsletter {
  padding: 10px;
  margin-top: 1%;
  transition: 0.3s;
  border: none;
}

#submit-newsletter:hover {
  background-color: var(--cor3);
  color: white;
}


@media (max-width: 1110px) {

  .container {
    overflow-x: hidden;
  }

  /*---------------------*/
  .footer-container {
    flex-direction: column;
  }

  .logo-socials {
    gap: 10px;
    width: fit-content;
  }

  .sitemap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: 100%;
    gap: 10px;
  }
}
@media (max-width: 965px) {
  .slider_arrow {
    display: none;
  }
  .service_description {width: 80%;margin-left: auto;margin-right: auto;}
}
@media (max-width: 600px) {/*Service Cards*/.service_packages {top: -5px;}
  .service_description {
    margin-top: 15%;
  }

}
@media (max-width: 550px) {
  .service_description{
    width: 98%;
  }
  .custom_kits h2{font-size: 1.8rem;
  }
  .package_price{
    font-size: 1.8rem;
  }

  .packages h2 {
    font-size: 1.8rem;
  }
  
  .container h2{
    font-size: 1.8rem;
  }

  .systems .text h2{
    font-size: 1.8rem;
  }

  .service_description {
    margin-top: 60%;
  }

  .hero h1{
    font-size: 1.8rem;
  }

  h2{
    font-size: 1.8rem;
  }

  .text h2 {
    font-size: 1.8rem;
  }

  .contact_us h2 {
    font-size: 1.8rem;
  }

  .high_performance_systems .text_section h2{
    font-size: 1.8rem;
  }

  .price_main{
    font-size: 2.3rem;
  }

  .price_month, .price_unit{
    font-size: 0.7rem;
  }

  .packages h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 329px) {#newsletter {width: 85%;}}