/* ========================= */
/* style.css */
/* ========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Montserrat',sans-serif;
  background:#050505;
  color:#fff;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ========================= */
/* GOOGLE REVIEWS */
/* ========================= */

.google-reviews-section{

  background:
    linear-gradient(
      to bottom,
      #0a0a0a,
      #050505
    );

  position:relative;
  overflow:hidden;
}

.google-reviews-section::before{

  content:'';

  position:absolute;

  width:400px;
  height:400px;

  background:
    rgba(228,0,70,0.06);

  filter:blur(120px);

  border-radius:50%;

  top:-120px;
  right:-120px;
}

.google-reviews-section .section-title{
  position:relative;
  z-index:2;
}

/* HERO */

.hero{
  position:relative;
  overflow:hidden;

  background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?q=80&w=2070')
    center/cover;

  min-height:100vh;
}

.hero::before{
  content:'';

  position:absolute;

  width:500px;
  height:500px;

  background:rgba(228,0,70,0.12);

  filter:blur(120px);

  top:-150px;
  right:-120px;

  border-radius:50%;
}

.hero::after{
  content:'';

  position:absolute;

  width:350px;
  height:350px;

  background:rgba(228,0,70,0.08);

  filter:blur(100px);

  bottom:-100px;
  left:-80px;

  border-radius:50%;
}

/* NAV */

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:30px 0;
  position:relative;
}

.logo-img-full{
  width:220px;
  max-width:100%;
  height:auto;
  object-fit:contain;

  filter:drop-shadow(
    0 8px 20px rgba(0,0,0,0.35)
  );
}

/* MENU */

.menu{
  display:flex;
  gap:20px;
  list-style:none;
}

.menu a{
  padding:12px 18px;

  border-radius:12px;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.06);

  backdrop-filter:blur(8px);

  color:#fff;
  text-decoration:none;
  font-weight:600;

  transition:.3s;
}

.menu a:hover{
  background:#e40046;
  color:#ffffff;

  transform:translateY(-3px);

  box-shadow:
    0 10px 25px rgba(228,0,70,0.35);
}

/* HAMBURGER */

.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.hamburger span{
  width:28px;
  height:3px;
  background:#fff;
  border-radius:10px;
  transition:.3s;
}

/* HERO CONTENT */

.hero-content{
  max-width:700px;
  padding-top:140px;
}

.subtitle{
  color:#e40046;
  letter-spacing:4px;
  margin-bottom:20px;
  font-size:.9rem;
}

.hero-title{
  font-size:4.5rem;
  line-height:1.1;
  margin-bottom:25px;
}

.hero-text{
  color:#ddd;
  font-size:1.1rem;
  margin-bottom:40px;
}

/* BUTTONS */

.buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:16px 34px;
  border-radius:14px;

  font-weight:700;

  text-decoration:none;

  display:inline-block;

  transition:.3s;
}

.btn:hover{
  transform:translateY(-4px);
}

.btn-primary{
  background:#e40046;
  color:#fff;

  box-shadow:
    0 10px 30px rgba(228,0,70,0.35);
}

.btn-secondary{
  background:
    rgba(255,255,255,0.03);

  border:1px solid #fff;

  color:#fff;

  backdrop-filter:blur(8px);
}

/* SECTIONS */

section{
  padding:120px 0;
}

.metrics{
  background:
    linear-gradient(
      180deg,
      #0b0b0b 0%,
      #101010 100%
    );

  border-top:
    1px solid rgba(255,255,255,0.03);

  border-bottom:
    1px solid rgba(255,255,255,0.03);
}

#servicos{
  background:
    radial-gradient(
      circle at top right,
      rgba(228,0,70,0.05),
      transparent 35%
    ),
    #050505;
}

#seo{
  background:
    linear-gradient(
      180deg,
      #090909,
      #0d0d0d
    );
}

#depoimentos{
  background:
    radial-gradient(
      circle at bottom left,
      rgba(228,0,70,0.04),
      transparent 40%
    ),
    #070707;
}

#instagram{
  background:
    linear-gradient(
      180deg,
      #0a0a0a,
      #050505
    );
}

/* METRICS */

.metrics-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
}

.metrics h2{
  color:#e40046;
  font-size:3rem;
}

/* TITLES */

.section-title{
  text-align:center;
  max-width:800px;
  margin:auto auto 80px;
}

.section-title h2{
  font-size:3rem;
}

.section-title p{
  color:#bbb;
  margin-top:20px;
}

/* CARDS */

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card{
  background:#111;

  border:1px solid #222;

  padding:40px;

  border-radius:24px;

  backdrop-filter:blur(10px);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.25);

  transition:.3s;
}

.card:hover{
  transform:translateY(-5px);
  border-color:#e40046;
}

/* SEO */

.seo-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

.seo-box ul{
  list-style:none;
  margin-top:20px;
}

.seo-box li{
  margin-bottom:12px;
  color:#ddd;
}

/* GALLERY */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.gallery-item{
  overflow:hidden;
  border-radius:24px;

  position:relative;

  border:
    1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 10px 35px rgba(0,0,0,0.35);
}

.gallery-item img{
  width:100%;
  height:320px;
  object-fit:cover;

  transition:.5s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

.instagram-button{
  text-align:center;
  margin-top:50px;
}

/* CTA */

.cta{
  background:
    linear-gradient(
      135deg,
      #e40046 0%,
      #a00034 100%
    );

  text-align:center;
}

.cta h2{
  color:#fff;
  font-size:3.5rem;
  margin-bottom:25px;
}

.cta p{
  color:#fff;

  max-width:700px;

  margin:auto auto 40px;

  font-size:1.1rem;
}

.cta .btn-primary{

  background:
    linear-gradient(
      135deg,
      #25D366,
      #1ebe5d
    );

  color:#fff;

  font-size:1.1rem;

  padding:18px 42px;

  border-radius:18px;

  box-shadow:
    0 15px 35px rgba(37,211,102,0.35);

  position:relative;
  overflow:hidden;
}

.cta .btn-primary::before{

  content:'';

  position:absolute;

  width:120px;
  height:220%;

  background:
    rgba(255,255,255,0.15);

  top:-60%;
  left:-140px;

  transform:rotate(25deg);

  transition:.8s;
}

.cta .btn-primary:hover::before{
  left:140%;
}

.cta .btn-primary:hover{

  transform:
    translateY(-5px)
    scale(1.03);

  box-shadow:
    0 20px 45px rgba(37,211,102,0.45);
}

/* FOOTER */

footer{
  background:
    linear-gradient(
      to top,
      #050505,
      #0b0b0b
    );

  padding:80px 0;

  border-top:
    1px solid #222;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

footer p,
footer li{
  color:#aaa;
  margin-top:12px;
  list-style:none;
}

.footer-whatsapp{
  display:inline-block;

  background:
    linear-gradient(
      135deg,
      #25D366,
      #1ebe5d
    );

  color:#fff;
  text-decoration:none;

  padding:14px 20px;

  border-radius:14px;

  font-weight:700;

  margin-top:12px;

  transition:.3s;
}

.footer-whatsapp:hover{
  transform:translateY(-4px);
}

/* FLOAT BUTTON */

.instagram-link{
  color:#aaa;
  text-decoration:none;
  transition:.3s;
}

.instagram-link:hover{
  color:#e40046;
}

.whatsapp{
  position:fixed;

  right:20px;
  bottom:20px;

  background:#25D366;

  color:#fff;

  text-decoration:none;

  padding:16px 24px;

  border-radius:50px;

  font-weight:bold;

  box-shadow:
    0 10px 25px rgba(0,0,0,.4);

  transition:.3s;
}

.whatsapp:hover{
  transform:
    translateY(-4px)
    scale(1.04);
}

/* RESPONSIVE */

@media(max-width:992px){

  .hamburger{
    display:flex;
  }

  .menu{
    position:absolute;

    top:100px;
    right:5%;

    width:260px;

    background:
      rgba(5,5,5,0.98);

    border:
      1px solid rgba(255,255,255,0.08);

    border-radius:20px;

    padding:30px;

    flex-direction:column;

    display:none;

    box-shadow:
      0 20px 50px rgba(0,0,0,0.45);
  }

  .menu.active{
    display:flex;
  }

  .cards,
  .metrics-grid,
  .seo-box,
  .footer-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .hero-title{
    font-size:3rem;
  }
}