*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#020617;
  color:white;
}

/* NAVBAR */

.navbar{
  width:100%;
  height:60px;

  position:fixed;
  top:0;
  left:0;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:0 8%;

  background:rgba(2,6,23,0.7);
  backdrop-filter:blur(10px);

  z-index:1000;
}

.logo img{
  height: 125px;
  width:auto;
}

/* MENU */

nav{
  display:flex;
  gap:25px;
}

nav a{
  color:white;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover{
  color:#1aa983;
}

/* BOTÃO NAVBAR */

.btn-navbar{
  background:#1aa983;
  color:white;

  text-decoration:none;

  padding:12px 24px;
  border-radius:14px;

  transition:0.3s;
}

.btn-navbar:hover{
  transform:translateY(-2px);
}

/* HERO */

.hero{
  height:100vh;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;

  padding:20px;

  background:
  linear-gradient(
    rgba(2,6,23,0.85),
    rgba(2,6,23,0.95)
  ),
  url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1974');

  background-size:cover;
  background-position:center;
}

.hero-content{
  max-width:1000px;
}

.tag{
  display:inline-block;

  background:rgba(59,130,246,0.15);
  border:1px solid rgba(59,130,246,0.3);

  padding:10px 18px;
  border-radius:999px;

  color:#1aa983;

  margin-bottom:30px;
}

.hero h1{
  font-size:4rem;
  line-height:1.1;
}

.hero p{
  margin-top:30px;

  font-size:1.3rem;
  color:#ffffff;
}

.hero-buttons{
  margin-top:50px;

  display:flex;
  justify-content:center;
  gap:20px;

  flex-wrap:wrap;
}

/* BOTÕES */

.btn-primary,
.btn-secondary{
  padding:16px 34px;

  border-radius:18px;

  text-decoration:none;

  font-weight:600;

  transition:0.3s;
}

.btn-primary{
  background:#1aa983;
  color:white;
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-secondary{
  border:1px solid white;
  color:white;
}

.btn-secondary:hover{
  background:white;
  color:#020617;
}
.btn-portfolio{
  background:white;
  color:#020617;

  padding:16px 34px;
  border-radius:18px;

  text-decoration:none;
  font-weight:600;

  display:flex;
  align-items:center;
  gap:10px;

  transition:.3s;
}

.btn-portfolio:hover{
  transform:translateY(-3px);
  background:#f1f5f9;
}

/* SECTION */

section{
  padding:120px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  color:#1aa983;

  font-weight:700;

  letter-spacing:2px;
}

.section-title h2{
  margin-top:20px;

  font-size:3rem;

  text-align:center;

  max-width:900px;

  margin-left:auto;
  margin-right:auto;

  line-height:1.2;

  font-weight:800;
}

/* ABOUT */

.about-grid{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:50px;

  align-items:center;
}

.about-text p{
  margin-bottom:25px;

  color:#cbd5e1;

  line-height:1.8;

  font-size:1.1rem;
}

.about-card{
  display:grid;
  gap:25px;
}

/* CARDS */

.card,
.service-card,
.benefit-card{
  background:#0f172a;
  border:1px solid rgba(255,255,255,0.05);
  padding:35px;
  border-radius:24px;
  transition:0.3s;
  text-align:center;
  cursor: default;
}

.card:hover,
.service-card:hover,
.benefit-card:hover{
  transform:translateY(-8px);

  border-color:#1aa983;
}

.card i,
.service-card i,
.benefit-card i{
  font-size:42px;

  color:#1aa983;

  margin-bottom:20px;

  display:block;
}

.card h3,
.service-card h3,
.benefit-card h3{
  margin-bottom:15px;
}

.card p{
  color:#cbd5e1;
}

/* GRIDS */

.services-grid,
.benefits-grid{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

  gap:25px;
}

/* CONTATO */

.contact-box{
  max-width:700px;

  margin:auto;

  background:#0f172a;

  padding:50px;

  border-radius:30px;

  text-align:center;
}

.contact-box p{
  margin-bottom:20px;

  color:#cbd5e1;
}

.contact-box .btn-primary{
  display:inline-block;

  margin-top:30px;
}

/* WHATSAPP */

.whatsapp{
  position:fixed;

  right:25px;
  bottom:25px;

  width:65px;
  height:65px;

  background:#22c55e;

  color:white;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  text-decoration:none;

  font-size:32px;

  z-index:999;
}

.whatsapp:hover{
  transform:scale(1.08);
}

/* RESPONSIVO */

@media(max-width:900px){

  nav{
    display:none;
  }

  .hero h1{
    font-size:3rem;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .section-title h2{
    font-size:2.2rem;
  }

  .footer{
  background:#010814;
  padding:30px;
  text-align:center;
  color:#94a3b8;
}

}