/* =========================================
STYLE.CSS COMPLETO ATUALIZADO
========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#000;
  color:#fff;
  overflow-x:hidden;
}

/* =========================================
HEADER
========================================= */

.top-bar{
  width:100%;
  background:#000;
  padding:15px 5%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
  border-bottom:1px solid #222;
}

.logo-area img{
  height:65px;
}

.menu{
  display:flex;
  gap:30px;
}

.menu a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.menu a:hover{
  color:#f7b500;
}

.header-buttons{
  display:flex;
  gap:15px;
}

.phone-btn,
.whatsapp-btn{
  text-decoration:none;
  padding:12px 22px;
  border-radius:10px;
  font-weight:700;
  transition:0.3s;
}

.phone-btn{
  border:1px solid #444;
  color:#fff;
}

.phone-btn:hover{
  border-color:#f7b500;
  color:#f7b500;
}

.whatsapp-btn{
  background:#f7b500;
  color:#000;
}

.whatsapp-btn:hover{
  transform:scale(1.05);
}

/* =========================================
HERO
========================================= */

.hero{
  min-height:100vh;

  background:
  linear-gradient(
    rgba(0,0,0,0.50),
    rgba(0,0,0,0.50)
  ),
  url('img/lojafrente.jpg');

  background-position:center 30%;
  background-size:cover;
  background-repeat:no-repeat;

  position:relative;

  display:flex;
  align-items:center;

  padding:140px 8% 100px;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.75);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:750px;
}

.hero-title{
  font-size:95px;
  line-height:90px;
  font-family:'Bebas Neue', sans-serif;
  letter-spacing:2px;
}

.white-text{
  color:#fff;
}

.yellow-text{
  color:#f7b500;
}


.hero p{
  margin-top:25px;
  font-size:21px;
  color:#ddd;
  line-height:34px;
}

.hero-cards{
  margin-top:45px;
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.hero-card{
  background:#111;
  border:1px solid #222;
  padding:25px;
  border-radius:18px;
  width:190px;
  text-align:center;
  transition:0.3s;
}

.hero-card:hover{
  border-color:#f7b500;
  transform:translateY(-5px);
}

.hero-card i{
  color:#f7b500;
  font-size:35px;
  margin-bottom:15px;
}

.hero-buttons{
    margin-top:45px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    display:inline-block;
    padding:16px 32px;
    background:#25D366;
    color:#FFFFFF;
    border:2px solid #25D366;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    box-shadow:0 8px 20px rgba(37,211,102,.35);
}

.btn-primary:hover{
    background:#1EBE5D;
    border-color:#1EBE5D;
    color:#FFFFFF;
    transform:translateY(-2px);
}

.btn-secondary{
    padding:16px 32px;
    border:2px solid #f7b500;
    color:#f7b500;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-secondary:hover{
    background:#f7b500;
    color:#000;
}

.btn-secondary{
  border:2px solid #f7b500;
  color:#f7b500;
}

.btn-secondary:hover{
  background:#f7b500;
  color:#000;
}

/* =========================================
TÍTULOS
========================================= */

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  color:#f7b500;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
}

.section-title h2{
  font-size:60px;
  font-family:'Bebas Neue';
  margin-top:15px;
}

/* =========================================
SERVIÇOS
========================================= */

.services{
  padding:120px 8%;
  background:#050505;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
  align-items:stretch;
}

.service-card{
  background:#111;
  border:1px solid #222;
  border-radius:22px;
  padding:40px 30px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;

  text-align:center;

  min-height:520px;

  transition:0.4s;
}

.service-card:hover{
  transform:translateY(-10px);
  border-color:#f7b500;
  box-shadow:0 0 25px rgba(247,181,0,0.15);
}

.service-card img{
  width:50px;
  height:50px;
  object-fit:contain;
  margin-bottom:25px;

  display:block;
}

.service-card h3{
  font-size:30px;
  margin-bottom:15px;
  color:#fff;
}

.service-card p{
  color:#bdbdbd;
  line-height:28px;
  font-size:15px;
  margin-bottom:25px;
}

.service-card a{
  margin-top:auto;

  background:#f7b500;
  color:#000;

  text-decoration:none;

  padding:15px 28px;

  border-radius:12px;

  font-weight:700;

  transition:0.3s;
}

.service-card a:hover{
  transform:scale(1.05);
}

/* =========================================
RESPONSIVO SERVIÇOS
========================================= */

@media(max-width:768px){

  .services{
    padding:90px 20px;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:auto;
  }

  .service-card img{
    width:130px;
    height:130px;
  }

}

/* =========================================
PROMOÇÕES
========================================= */

.promotions{
  padding:120px 8%;
  background:#000;
}

.promo-grid{
  display:grid;
  gap:35px;
}

.promo-card{
  background:linear-gradient(90deg,#0f0f0f,#1b1b1b);
  border:2px solid #f7b500;
  border-radius:25px;
  padding:45px;

  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;

  transition:0.4s;
}

.promo-card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 25px rgba(247,181,0,0.2);
}

.promo-card h3{
  font-size:36px;
  margin-bottom:10px;
}

.promo-card p{
  color:#ccc;
}

.promo-card span{
  font-size:62px;
  color:#f7b500;
  font-weight:700;
}

.promo-card a{
  background:#f7b500;
  color:#000;
  padding:16px 28px;
  text-decoration:none;
  border-radius:12px;
  font-weight:700;
  transition:0.3s;
}

.promo-card a:hover{
  transform:scale(1.05);
}

/* =========================================
SOBRE
========================================= */

.about{
  padding:120px 8%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  background:#050505;
}

.about-image img{
  width:100%;
  border-radius:25px;
}

.about-content span{
  color:#f7b500;
  font-weight:600;
  letter-spacing:2px;
}

.about-content h2{
  font-size:65px;
  font-family:'Bebas Neue';
  margin:20px 0;
}

.about-content p{
  color:#ccc;
  line-height:34px;
  margin-bottom:25px;
}

.about-content ul{
  list-style:none;
  margin:35px 0;
}

.about-content li{
  margin-bottom:16px;
  font-size:17px;
}

/* =========================================
CONTATO
========================================= */

.contact{
  padding:120px 8%;
  background:#050505;
}

.contact-box{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.contact-item{
  background:#111;
  border:1px solid #222;
  border-radius:22px;

  padding:45px;

  width:300px;

  text-align:center;

  transition:0.3s;

  text-decoration:none;

  color:#fff;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.contact-item:hover{
  border-color:#f7b500;
  transform:translateY(-5px);
  box-shadow:0 0 20px rgba(247,181,0,0.2);
}

.contact-item img{
  width:70px;
  height:70px;
  object-fit:contain;
  margin-bottom:20px;
}

.contact-item p{
  font-size:18px;
  font-weight:600;
  color:#fff;
}

/* =========================================
FOOTER
========================================= */

footer{
  background:#000;
  border-top:1px solid #222;
  padding:60px 8%;
  text-align:center;
}

footer img{
  height:75px;
  margin-bottom:20px;
}

footer p{
  color:#999;
}

/* =========================================
WHATSAPP FIXO
========================================= */

.floating-whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;

  width:75px;
  height:75px;

  background:#25d366;
  color:#fff;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:38px;
  text-decoration:none;

  z-index:999;

  animation:pulse 2s infinite;

  box-shadow:0 0 25px rgba(37,211,102,0.5);
}

@keyframes pulse{

  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.08);
  }

  100%{
    transform:scale(1);
  }

}

/* =========================================
RESPONSIVO
========================================= */

@media(max-width:991px){

  .menu{
    display:none;
  }

  .top-bar{
    padding:15px 20px;
  }

  .hero{
    padding:0 20px;
  }

  .hero h1{
    font-size:58px;
    line-height:58px;
  }

  .hero p{
    font-size:18px;
    line-height:30px;
  }

  .hero-cards{
    justify-content:center;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .section-title h2{
    font-size:45px;
  }

  .about{
    grid-template-columns:1fr;
  }

  .promo-card{
    flex-direction:column;
    text-align:center;
    gap:25px;
  }

  .promo-card span{
    font-size:48px;
  }

  .about-content h2{
    font-size:50px;
  }

}

@media(max-width:600px){

  .hero h1{
    font-size:48px;
    line-height:48px;
  }

  .service-card{
    padding:35px 25px;
  }

  .service-card img{
    width:130px;
    height:130px;
  }

  .promo-card h3{
    font-size:28px;
  }

  .promo-card span{
    font-size:40px;
  }

}

/* =========================================
CORES DO TÍTULO HERO
========================================= */

.white-text{
  color:#fff;
}

.yellow-text{
  color:#f7b500;
}

/* =========================================
RESPONSIVO EXTRA MOBILE
========================================= */

@media(max-width:768px){

  .top-bar{
    flex-direction:column;
    gap:20px;
    padding:20px;
  }

  .logo-area img{
    height:55px;
  }

  .header-buttons{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
  }

  .hero{
    height:auto;
    min-height:100vh;
    padding:140px 20px 80px;
    text-align:center;
  }

  .hero-content{
    max-width:100%;
  }

  .hero-title{
    font-size:52px;
    line-height:52px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    text-align:center;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .promo-card{
    flex-direction:column;
    text-align:center;
  }

  .promo-card span{
    margin:20px 0;
  }
/* =========================================
REDES SOCIAIS
========================================= */

.social-icons{
  margin-top:25px;

  display:flex;
  justify-content:center;
  gap:20px;
}

.social-icons a{
  width:55px;
  height:55px;

  background:#111;

  border:1px solid #333;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:0.3s;
}

.social-icons a:hover{
  transform:translateY(-5px);
  border-color:#f7b500;
  box-shadow:0 0 20px rgba(247,181,0,0.3);
}

.social-icons img{
  width:28px;
  height:28px;
  object-fit:contain;
}

  .contact-box{
    flex-direction:column;
    align-items:center;
  }

  .contact-item{
    width:100%;
    max-width:320px;
  }

  footer img{
    height:60px;
  }

}
/* =========================================
SOCIAL MENU HEADER
========================================= */

.menu-social{
  display:flex;
  align-items:center;
  gap:12px;
}

.menu-social a{
  width:42px;
  height:42px;

  background:#111;

  border:1px solid #333;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:0.3s;
}

.menu-social a:hover{
  border-color:#f7b500;
  transform:translateY(-3px);

  box-shadow:0 0 15px rgba(247,181,0,0.3);
}

.menu-social img{
  width:22px;
  height:22px;
  object-fit:contain;
}

/* RESPONSIVO */

@media(max-width:768px){

  .menu-social{
    justify-content:center;
    width:100%;
  }

}

/* POPUP PROMOÇÃO AJUSTADO */
.promo-modal{
 position:fixed;
 inset:0;
 background:rgba(0,0,0,.75);
 backdrop-filter:blur(4px);
 z-index:99999;
 display:flex;
 align-items:center;
 justify-content:center;
 padding:20px;
 animation:aparecer .35s ease;
}

.promo-box{
 position:relative;
 max-width:1900px;
 width:100%;
 text-align:center;
}

.promo-box img{
 width:100%;
 max-height:85vh;
 object-fit:contain;
 border-radius:18px;
 box-shadow:0 0 0px rgba(37,211,102,.25),0 20px 150px rgba(0,0,0,.8);
}

.promo-close{
 position:absolute;
 right:-10px;
 top:-15px;
 width:42px;
 height:42px;
 border-radius:50%;
 border:0;
 background:#ff0000;
 color:white;
 font-size:26px;
 cursor:pointer;
 z-index:2;
 box-shadow:0 5px 20px rgba(255,0,0,.5);
}

.promo-whatsapp{
 display:inline-block;
 margin-top:15px;
 background:#25d366;
 color:white;
 text-decoration:none;
 font-weight:800;
 padding:18px 25px;
 border-radius:50px;
 font-size:18px;
 box-shadow:0 0 25px rgba(37,211,102,.5);
 transition:.3s;
}

.promo-whatsapp:hover{
 transform:scale(1.05);
}

@keyframes aparecer{
 from{opacity:0;transform:scale(.85)}
 to{opacity:1;transform:scale(1)}
}

@media(max-width:600px){
 .promo-whatsapp{
  font-size:14px;
  padding:14px;
 }
}
/* =========================================
   POR QUE ESCOLHER A CARANGAS
========================================= */

.seo-local{
    background:#0b0b0b;
    padding:90px 20px;
}

.seo-local .container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.seo-local h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:52px;
    color:#fff;
    margin-bottom:20px;
}

.seo-local p{
    max-width:850px;
    margin:0 auto 60px;
    color:#bfbfbf;
    line-height:1.8;
    font-size:18px;
}

.seo-local strong{
    color:#f7b500;
}

.seo-cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

}

.seo-card{

    background:#111;

    border:1px solid #222;

    border-radius:18px;

    padding:35px 30px;

    transition:.30s;

    text-align:left;

}

.seo-card:hover{

    border-color:#f7b500;

}

.seo-card span{

    display:block;

    font-size:42px;

    margin-bottom:20px;

}

.seo-card h3{

    color:#fff;

    font-size:24px;

    margin-bottom:12px;

}

.seo-card p{

    margin:0;

    font-size:16px;

    color:#bdbdbd;

}


.hero-title{
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
}

.hero-title .linha1{
    display: block;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: #FFFFFF;
}

.hero-title .linha2{
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #FFD700;
    margin-top: 12px;
}
.btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: #FFFFFF;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2AE06D 0%, #0F9D58 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}