@charset "UTF-8";
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body{
  height: 100vh;
  background-color: #000;
  background-size: cover;
  background-position: center;
}

/*=======================NAV=========================*/
header{
  position: fixed;
  top: 0; left: 0; right: 0;
  background-color: #000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  padding: 2px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

header .imp img{
  width: 130px;
  height: 55px;
}

header .nav-menu ul{
  list-style: none;
}

header .nav-menu ul li{
  position: relative;
  float: left;
}

header .nav-menu ul li a{
  color: #fff;
  font-size: 18px;
  padding: 20px;
  display: inline-block;
  transition: 1s;
  font-weight: bold;
  text-decoration: none;
}

header .nav-menu ul li a:hover{
  color: #00b3ff;
}

header .nav-menu ul li ul{
  position: absolute;
  left: 15px;
  width: 200px;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
}


header .nav-menu ul li ul li{
  width: 100%;
}

header .nav-menu ul li ul li a{
  padding: 10px 15px; /* diminui a altura */ 
  border-radius: 30px;
}


header .nav-menu ul li:hover > ul{
  display: initial;
  margin-top: 45px;
}

header .nav-menu ul li ul li:hover > a{
  background-color: rgba(0, 222, 252, 0.1);
}

#chk{
  display: none;
}

header label{
  font-size: 18px;
  color:#fff;
  cursor: pointer;
  display: none;
}

/*Responsive*/
@media(max-width: 991px){
  header{
    padding: 20px;
  }

  header label{
    display: initial;
  }

  header .nav-menu{
    position: absolute;
    top: 100%; left:0; right: 0;
    background:#000;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: none;
  }

  header .nav-menu ul li{
    width: 100%;
  }

  header .nav-menu ul li ul{
    position: relative;
    width: 100%;
  }

  header .nav-menu ul li ul li{
    background-color: #000;
  }

  #chk:checked ~.nav-menu{
    display: initial;
  }
}

/* Header */
.masterhead{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 100vh;
  padding: 20px;
  background-image: url("../images/flowheader.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.masterhead h1{
  color: #fff;
  font-weight: 700;
  font-size: 5rem;
  margin-bottom: 10px;
}

.masterhead h4{
  margin-top: 50px;
  color: #00b3ff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.masterhead button{
  margin-top: 50px;
  background-color: #00b3ff;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;

  border: none;
  border-radius: 20px;
  padding: 12px 28px;
  cursor: pointer;

  transition: background-color 0.3s ease, transform 0.2s ease;
}

.masterhead button:hover{
  background-color: #0063ff;
  transform: translateY(-2px);
}

/*Nav Responsivo*/
@media(max-width: 992px){
  .navbar .links,
  .navbar .action_btn{
    display: none;
  }

  .navbar .toggle_btn{
    display: block;
  }

  .dropdown_menu{
    display: block;
  }
}

@media(max-width: 576px){
  .dropdown_menu{
    left: 2rem;
    width: unset;
  }
}

/*==========================Index=================================*/

/*Services*/

.container{
  min-height: 80vh;
  width: 100%;
  background-color: #000000;
}

.service-wrapper{
  padding: 5% 8%;
}

.service{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service h1{
  color: #fff;
  font-size: 3rem;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: transparent;
  letter-spacing: 4px;
  background-color: rgb(4, 52, 83);
  background: linear-gradient(8deg, rgb(0, 158, 243) 0%, rgb(19, 32, 221) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cards{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  margin-top: 80px;
}

.card{
  height: 350px;
  width: 370px;
  background-color: #1c2335;
  padding: 3% 8%;
  border: 0.2px solid rgba(114,226, 174, 0.2);
  border-radius: 8px;
  transition: .6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.card:after{
  content:"";
  position: absolute;
  top: 250%;
  left: -200px;
  width: 120%;
  transform: rotate(50deg);
  background-color: #fff;
  height: 18px;
  filter: blur(30px);
  opacity: 0.5;
  transition: 1s;
}

.card:hover:after{
  width: 255%;
  top: -100%;
}

.card i{
  color:#00b3ff;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 3rem;
}

.card h2{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.card p{
  text-align: center;
  width: 100%;
  margin: 12px 0;
  color: rgba(255,255,255,0.6);
  margin-bottom: 50px;
}

.card a{
  margin-top: auto;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 30px;
  background-color: #00b3ff;
  color: #fff;
  text-decoration: none;
}


.card:hover a{
  background-color: #0058ef;
}

.card:hover{
  background-color: transparent;
  transform: translateY(-8px);
  border-color: #00b3ff;
}

.card:hover i{
  color: #0063ff;
}
/*Responsive cards*/
@media screen and (max-width: 1200px){
  .cards{
    grid-template-columns: repeat(2,1fr);
  }
}
@media screen and (max-width: 900px) {
  .cards{
    grid-template-columns: repeat(1,1fr);
  }
  h1{
    font-size: 2.5rem;
  }
}


/*Clientes*/

/*Animação Clientes*/
@keyframes slide{
  from {
    transform: translateX(0);
  }
  to{
    transform: translateX(-100%)
  }
}

.cliente {
  background-color: #fff;
}

.cliente h1{
  text-align: center;
  color: rgb(19, 32, 221);
  font-size: 3rem;
  letter-spacing: 4px;
  padding-top: 40px;
}

.cliente p{
  margin-top: 20px;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.cliente hr{
  width: 15%;
  height: 5px;
  border: none;
  background: #0063ff;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.logos {
  overflow: hidden;
  padding: 70px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
  left: 0;
}

.logos:after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  right: 0;
}

.logos:hover .logos-slide{
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 25s slide infinite linear;
}

.logos-slide img{
  height: 50px;
  margin: 0 40px;
}

/*Contact*/

.contact {
  min-height: 70vh;
  background-color: #000;
  padding: 20px 20px;
}

.section-title {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: transparent;
  letter-spacing: 4px;
  background-color: rgb(4, 52, 83);
  background: linear-gradient(8deg, rgb(0, 158, 243) 0%, rgb(19, 32, 221) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cards-contact{
  margin-top: 30px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-contact{
  position: relative;
  padding: 30px 15px;
  width: 330px;
  height: 380px; /* importante */
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  background-color: #121212;
}

.card_info{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card_title{
  height: 90px;
  color: #2b2b2b;
  font-weight: bold;
  font-size: 90px;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  letter-spacing: 2px;
  transform: translate(50%, -25%);
  transition: color 0.4s;
  transform: 0.3s;
}

.card_subtitle{
  font-size: 18px;
  padding: 10px 0;
}

.card_bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,#128c7e, #25d366);
  opacity: 0;
  transition: opacity 0.4s;
}

.card-contact:nth-child(2)
.card_bg{
  background: linear-gradient(45deg,#3dcbe8, #00ffbf);
}

.card-contact:nth-child(3)
.card_bg{
  background: linear-gradient(45deg,#ff9e00, #be18ff);
}

.card-contact:nth-child(4)
.card_bg{
  background: linear-gradient(45deg,#0077B5, #05478a);
}

.card_desc{
  padding-bottom: 30px;
}

.card_btn{
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: #fff;
  margin-top: auto;
  transition: 
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.card_btn:hover{
  background-color: rgba(0, 0, 0, 0.85);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.35);
}

.card_btn i{
  width: 25px;
  transition: transform 0.3s ease;
}

.card_btn:hover i{
  transform: scale(1.15);
}

.card-contact:hover
.card_bg{
  opacity: 1;
}

.card-contact:hover
.card_title{
  font-size: 85px;
  color: #fff;
  transform: translate(-7%, -25%);
}

.card-contact:nth-child(2):hover
.card_title{
  color: #fff;
  transform: translate(-8%, -25%);
}

.card-contact:nth-child(3):hover
.card_title{
  color: #fff;
  transform: translate(-8%, -25%);
}

@media(max-width: 390px){
  .cards-contact,
  .card-contact
  {
    width: 100%;
  }
}

/*Footer*/
.footer{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  background-color: #000;
  padding: 40px 0;
}

.footer hr{
  width: 15%;
  height: 2px;
  border: none;
  background: #00b3ff;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer ul{
  margin-top: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

.footer ul li a{
  color: #f2f2f2;
  text-decoration: none;
  opacity: 0.8;
  cursor: pointer;
}

.footer ul li{
  display: inline-block;
  padding: 0 15px;
}

.footer ul li a:hover {
  opacity: 1;
}

.footer .copyright{
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #00b3ff;
}

/*===================ABOUT========================*/

.about{
  width: 100%;
  padding: 78px 0px;
  background-color: #000;
}

.about img{
  height: auto;
  width: 420px;
}

.about-text{
  width: 550px;
}

.about-main{
  width: 1130px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}


.about-text h5{
  color: white;
  font-size: 40px;
  text-transform:initial;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

span{
  color:#00b3ff;
  text-transform: capitalize;
}

.about-text p{
  color: #f2f2f2;
  letter-spacing: 1px;
  line-height: 28px;
  font-size: 18px;
  margin-bottom: 45px;
  text-align: justify;
}

/*Linha animada*/
.loose-text{
  text-align: center;
  color: #0063ff;
  font-weight: bolder;
  font-size: 3rem;
  letter-spacing: 4px;;
  margin-top: 80px;
}
.time-line{
  width: 1000px;
  margin: 100px auto;
  position: relative;
}

.time-line::after{
  content: "";
  position: absolute;
  right: 50%;
  height: 100%;
  width: 5px;
  background:linear-gradient(#0063ff, #00ffbf);
  top: 0;
  border-radius: 50px;
  animation: LineAnimated 5s linear forwards;
  z-index: -1;
}

@keyframes LineAnimated {
  0%{
    height: 0;
  }
  100%{
    height: 100%;
  }
}

.line-container{
  width: 50%;
  position: relative;
  padding: 10px 20px;
  animation: Animate-Container 1s linear forwards;
  opacity: 0;
  animation-delay: var(--dly);
}

@keyframes Animate-Container {
  0%{
    opacity: 0;
    transform: translateY(-30px);
  }
  100%{
    opacity: 1;
    transform: translateY(0px);
  }
}

.line-container:nth-child(even){
  right: -50%;
}

.line-container:nth-child(odd)::before{
  content:"";
  position: absolute;
  height: 20px;
  width: 20px;
  background:linear-gradient(#0063ff, #00ffbf);
  top:0;
  right: -7px;
  border-radius: 50%;
  z-index: 10;
}

.line-container:nth-child(even)::before{
  content:"";
  position: absolute;
  height: 20px;
  width: 20px;
  background:linear-gradient(#0063ff, #00ffbf);
  top:0;
  left: -12.5px;
  border-radius: 50%;
  z-index: 10;
}

.line-container img{
  width: 130px;
}

.line-container .text-content{
  padding: 20px 30px;
  box-shadow: 0 5px 10px #191919;
  border-radius: 10px;

}

.line-container .text-content h2{
  font-size: 25px;
  color: aliceblue;
}

.line-container .text-content p{
  font-size: 13px;
  /*margin: 10px 0; */
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7)
}

/*RESPONSIVO*/
@media (max-width: 1024px) {

  /* Timeline */
  .time-line{
    width: 90%;
  }

  .line-container img{
    width: 100px;
  }

  /* About */
  .about-main{
    padding: 0 20px;
  }
}

@media (max-width: 768px) {

  /* Título */
  .loose-text{
    font-size: 2.2rem;
    margin-top: 60px;
  }

  /* Timeline vira coluna única */
  .time-line{
    width: 100%;
    margin: 60px auto;
  }

  .time-line::after{
    left: 20px;
    right: auto;
  }

  .line-container{
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
  }

  .line-container:nth-child(even){
    right: 0;
  }

  .line-container:nth-child(odd)::before,
  .line-container:nth-child(even)::before{
    left: 12px;
    right: auto;
  }

  .line-container img{
    width: 80px;
  }

  .line-container .text-content h2{
    font-size: 20px;
  }

  .line-container .text-content p{
    font-size: 14px;
  }

  /* About section */
  .about-main{
    flex-direction: column;
    text-align: center;
  }

  .about img{
    width: 90%;
    max-width: 350px;
    margin-bottom: 30px;
  }

  .about-text{
    width: 100%;
  }

  .about-text h5{
    font-size: 28px;
  }

  .about-text p{
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
  }
}

@media (max-width: 480px) {

  .loose-text{
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .line-container{
    padding-left: 50px;
  }

  .line-container img{
    width: 65px;
  }

  .line-container .text-content{
    padding: 15px 20px;
  }

  .about-text h5{
    font-size: 24px;
  }

  .about-text p{
    font-size: 15px;
  }
}

/*===================PARTNERS========================*/
.partners .partners-container{
  display: flex;
  align-items: center;
  background-color: #000;
}

.partners .partners-img{
  width: 50%;
}

.partners .partners-img img{
  width: 100%;
  border-radius: 10px;
}

.partners .partners-text{
  width: 50%;
  padding-left: 90px;
}

.partners .partners-text h2{
  font-size: 2.5em;
  color: #fff;
}

.partners .partners-text p{
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.partners .partners-text p b{
  color: #3dcbe8;
  font-size: 20px;
}

/*Cards*/
.marcas{
  background: #fff;
}

.marcas h1{
  padding-top: 100px;
  text-align: center;
  color: #000;
  font-size: 3rem;
  letter-spacing: 4px;
}

.marcas .partners-cards{
  display: grid;
  justify-content: space-between;
  margin-top: 100px;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.marcas .partners-cards .partner-card{
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 60px;
  text-align: center;
  /*box-shadow: 0 8px 20px rgba(0,0,0,0.08);*/
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partner-card img {
  max-width: 200px;   /* controla o tamanho da logo */
  max-height: 90px;
  width: auto;
  height: auto;
  margin: 0 auto 10px;
  object-fit: contain;
}

.marcas .partners-cards .atuante{
  margin: 5px 0;
  color: rgba(0, 0, 0, 0.5);
}

.marcas .partners-cards .fabricante{
  font-size: 20px;
  font-weight: 500;
  color: #0077B5;
  text-transform: uppercase;
}

.marcas .partners-cards .sobre{
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.7);
}

.partner-card button {
  margin-top: auto;
  padding: 10px 24px;       /* menos alto e mais compacto */
  width: fit-content;      /* NÃO ocupa todo o card */
  align-self: center;      /* centraliza no card */
  border: none;
  border-radius: 8px;
  background: #0063ff;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.partner-card button:hover {
    background: #162e6b;
}

.partner-card button a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

/*Responsive*/
@media (max-width: 960px) {

  /* Section partners */
  .partners .partners-container {
    flex-direction: column-reverse;
  }

  .partners .partners-text,
  .partners .partners-img {
    width: 100%;
    text-align: center;
    padding: 20px;
  }

  /* Cards */
  .marcas .partners-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }

  .marcas .partners-cards .partner-card {
    padding: 40px;
  }
}

/* Celular */
@media (max-width: 600px) {

  .marcas h1 {
    font-size: 2.2rem;
    padding-top: 60px;
  }

  .marcas .partners-cards {
    grid-template-columns: 1fr; /* 1 coluna */
  }

  .marcas .partners-cards .partner-card {
    padding: 30px 20px;
  }

  .partner-card img {
    max-width: 160px;
    max-height: 70px;
  }
}

/*===================SERVIÇO - FIREWALL========================*/
.firewall-header{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 90vh;
  background-image: url("../images/connect-buildings.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.firewall-header h1{
  color: #fff;
  font-weight: 700;
  font-size: 5rem;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.firewall-header h5{
  color: #3dcbe8;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  font-size: 2rem;
  text-align: center;
}

.btn-contact{
  margin-top: 30px;
  padding: 15px 40px;

  background: #0058ef;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;

  text-decoration: none;
  border-radius: 50px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-contact:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(42, 42, 42, 0.6);
  background: linear-gradient(135deg, #0400ff, #0058ef);
}

.fw-header-text{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*conteudo*/

.funcionalidades{
  position: relative;
}

.funcionalidades h1{
  margin-top: 80px;
  text-align: center;
  font-size: 40px;
  color: #fff;
}

.funcionalidades .conteudo{
  display: flex;
  gap: 40px;
  max-width: 1300px;
  width: 90%;
  margin: 100px auto;
  align-items: center;
}

.funcionalidades .conteudo .texto-conteudo{
  width: 50%;
}

.funcionalidades .conteudo .img-conteudo{
  width: 50%;
}

.texto-conteudo h5{
  font-size: 32px;
  color: #3dcbe8;
}

.texto-conteudo p{
  margin-top: 25px;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  text-align: justify;
}

.funcionalidades .conteudo img{
  width: 100%;
  max-width: 450px;
  display: block;
  margin: 0 auto;
}

/*Responsive*/
@media (max-width: 768px){
  .funcionalidades h1{
    font-size: 28px;
    margin-top: 60px;
    padding: 0 20px;
  }

  .funcionalidades .conteudo{
    flex-direction: column;
    margin: 60px auto;
    text-align: center;
  }

  .funcionalidades .conteudo .texto-conteudo,
  .funcionalidades .conteudo .img-conteudo{
    width: 100%;
  }

  .texto-conteudo h5{
    font-size: 24px;
  }

  .texto-conteudo p{
    font-size: 15px;
    text-align: left;
  }

  .funcionalidades .conteudo img{
    max-width: 320px;
    margin-top: 30px;
  }
}


/*===================SERVIÇO - REDES========================*/
.redes-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90vh;
  overflow: hidden; /* importante */
  color: #fff;
}

.redes-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/worldconnect.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(6px);
  transform: scale(1.05); /* evita bordas cortadas */
  z-index: -1;
}

.redes-header-text{
  position: relative;
  z-index: 1; /* garante que fique acima do ::before */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.redes-header h1{
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  font-weight: 700;
  font-size: 5rem;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.redes-header h5{
  color: #3dcbe8;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  font-size: 2rem;
  text-align: center;
}

.redes-header .btn-contact{
  margin-top: 35px;
  padding: 16px 44px;

  background: #0058ef;
  color: #ffffff;

  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;

  border-radius: 50px;
  backdrop-filter: blur(4px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  transition: all 0.3s ease;
}

/* Hover */
.redes-header .btn-contact:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(34, 34, 34, 0.7);
  background: linear-gradient(135deg, #0400ff, #0077B5);
}

/*Cards*/
.redes-cards {
    padding: 80px 10%;
    text-align: center;
    background-color: #fff;
}

.redes-cards h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

.rede-card {
    background: rgba(255, 255, 255, 0.85); /* branco com transparência */
    border-radius: 16px;
    padding: 30px 25px;
    /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rede-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.rede-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1f3c88;
}

.rede-card h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.rede-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

/*===================SERVIÇO - ANTIVIRUS========================*/
.antivirus {
  padding: 80px 6%;
}

/* Cabeçalho */
.antivirus-header {
  text-align: center;
  margin-bottom: 60px;
}

.antivirus-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.antivirus-header p {
  color: #00b3ff;
  max-width: 700px;
  margin: auto;
}

/* Layout principal */
.antivirus-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* Radios invisíveis */
.antivirus input[type="radio"] {
  display: none;
}

/* Lado esquerdo */
.antivirus-main {
  background: #171717;
  border-radius: 20px;
  padding: 40px;
}

/* Textos */
.antivirus-texts {
  position: relative;
  min-height: 160px;
  margin-bottom: 30px;
}

.antivirus-texts .text {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.antivirus-texts h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.antivirus-texts h2 span {
  color: #00b3ff;
}

.antivirus-texts p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Controle textos */
#card1:checked ~ .antivirus-content .text1 { opacity: 1; }
#card2:checked ~ .antivirus-content .text2 { opacity: 1; }
#card3:checked ~ .antivirus-content .text3 { opacity: 1; }
#card4:checked ~ .antivirus-content .text4 { opacity: 1; }

/* Imagens */
.antivirus-image {
  position: relative;
  height: 260px;
}

.antivirus-image .img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Controle imagens */
#card1:checked ~ .antivirus-content .img1 { opacity: 1; }
#card2:checked ~ .antivirus-content .img2 { opacity: 1; }
#card3:checked ~ .antivirus-content .img3 { opacity: 1; }
#card4:checked ~ .antivirus-content .img4 { opacity: 1; }

/* Cards lado direito */
.antivirus-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #d3e1ff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.info-card span {
  background: #0063ff;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card ativo */
#card1:checked ~ .antivirus-content label[for="card1"],
#card2:checked ~ .antivirus-content label[for="card2"],
#card3:checked ~ .antivirus-content label[for="card3"],
#card4:checked ~ .antivirus-content label[for="card4"] {
  background: #00b3ff;
  color: #fff;
}

#card1:checked ~ .antivirus-content label[for="card1"] span,
#card2:checked ~ .antivirus-content label[for="card2"] span,
#card3:checked ~ .antivirus-content label[for="card3"] span,
#card4:checked ~ .antivirus-content label[for="card4"] span {
  background: #fff;
  color: #1abcbc;
}

/* Responsivo */
@media (max-width: 900px) {
  .antivirus-content {
    grid-template-columns: 1fr;
  }
}

/*===================SERVIÇO - WIFI========================*/
.features {
  text-align: center;
  padding: 80px 8%;
  background-color: #fff;
}

.features h1 {
  font-size: 2rem;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.feature-card {
  padding: 20px;
}

.feature-card h3 {
  margin: 20px 0 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: #333;
}

.feature-card a {
  display: inline-block;
  margin-top: 15px;
  color: #0058ef;
  font-weight: bold;
  text-decoration: none;
}

/* ICONS */
.icon {
  font-size: 56px;
  color: #00b3ff;
}

/* PLATFORM */
.platform {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 100px 8%;
  gap: 60px;
  background-color: #fff;
}

.platform-text {
  flex: 1;
  min-width: 300px;
}

.platform-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.platform-text p {
  margin-bottom: 20px;
  color: #333;
}

.platform-text ul {
  list-style: none;
  margin-bottom: 30px;
}

.platform-text li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.platform-text li::before {
  content: "✔";
  color: #0058ef;
  position: absolute;
  left: 0;
}

.platform-text button {
  padding: 14px 28px;
  border: none;
  background: #00b3ff;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 30px;
  cursor: pointer;
}

.platform-text button:hover{
  background-color: #0058ef;
}

.platform-text button a{
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

.platform-text button a:hover{
  color: #fff;
}

/* ILLUSTRATION */
.platform-illustration {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.dashboard {
  width: 450px;
  height: 300px;
  border: 2px solid #00b3ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard img{
  width: 449px;
  height: 299px;
  border-radius: 16px;
}

.dashboard i {
  font-size: 64px;
  color: #0058ef;
}

/*===================CONTATO========================*/
.contact-page {
    width: 100%;
    min-height: calc(100vh - 80px); /* altura do header */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 120px; /* espaço para o menu fixo */
    padding-bottom: 60px;
}

/* Container principal */
.contact-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 20px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Lado esquerdo */
.contact-info {
    background: linear-gradient(135deg, #0058ef, #00b3ff);
    color: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-buttons a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0058ef;
    background: #fff;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: bold;
    transition: 0.3s;
}

.contact-buttons a i {
    font-size: 20px;
}

.contact-buttons a:hover {
    background: #000;
    color: #fff;
}

/* Lado direito */
.contact-form {
    padding: 50px;
}

.contact-form h2 {
    color: #000;
    margin-bottom: 25px;
    font-size: 26px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #000;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
}

.form-group textarea {
    resize: none;
    height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0058ef;
}

/* Botão */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: #0058ef;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #00b3ff;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-page {
        padding-top: 100px;
    }

    .contact-info,
    .contact-form {
        padding: 35px;
    }
}