*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
}

/* HEADER */
header{
  width:100%;
  background:#f2f2f2;
  padding:18px 0;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
}

.logo{
  text-align:center;
  font-size:40px;
  font-weight:700;
  color:#d63d70;
  letter-spacing:1px;
}

/* HERO */
.hero{
  width:100%;
  height:100vh;

  background:
  linear-gradient(rgba(15,23,42,0.38), rgba(15,23,42,0.38)),
  url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1974&auto=format&fit=crop');

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;
  padding:0 20px;
}

.hero-content{
  max-width:850px;
  margin-top:50px;
}

.hero h1{
  font-size:58px;
  line-height:1.2;
  color:white;
  font-weight:800;
  margin-bottom:25px;
}

.hero h1 span{
  color:#123F82;

  text-shadow:
  0 2px 8px rgba(255,255,255,0.18),
  0 2px 12px rgba(0,0,0,0.28);
}

.hero p{
  color:white;
  font-size:18px;
  font-weight:300;
  line-height:1.7;
  margin-bottom:40px;
}

.btn{
  display:inline-block;
  background:linear-gradient(90deg,#00d4ff,#0084a8);
  color:white;
  text-decoration:none;
  padding:18px 45px;
  border-radius:10px;
  font-size:18px;
  font-weight:600;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-3px);
  opacity:0.9;
}

/* RESPONSIVO */
@media(max-width:768px){

  .logo{
    font-size:28px;
  }

  .hero h1{
    font-size:38px;
  }

  .hero p{
    font-size:16px;
  }

  .btn{
    width:100%;
    max-width:320px;
  }
}

/* =========================
   SERVIÇOS
========================= */

.servicos{
  width:100%;
  background:#f3f3f3;
  padding:120px 20px;
}

.titulo-servicos{
  text-align:center;
  margin-bottom:60px;
}

.titulo-servicos h2{
  font-size:42px;
  color:#111;
  margin-bottom:15px;
}

.titulo-servicos p{
  max-width:700px;
  margin:auto;
  color:#555;
  font-size:17px;
  line-height:1.7;
}

.cards-servicos{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(3, 1fr);

  gap:30px;
}

/* RESPONSIVO */

@media(max-width:992px){

  .cards-servicos{
    grid-template-columns:repeat(2, 1fr);
  }

}

@media(max-width:650px){

  .cards-servicos{
    grid-template-columns:1fr;
  }

}

.card{
  background:white;
  padding:35px;

  border-radius:14px;

  box-shadow:0 10px 25px rgba(0,0,0,0.08);

  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.icone{
  font-size:42px;
  color:#00cfff;
  margin-bottom:25px;
  font-weight:bold;
}

.card h3{
  font-size:22px;
  color:#111;
  margin-bottom:20px;
  line-height:1.4;
}

.card p{
  color:#444;
  line-height:1.8;
  font-size:16px;
}

/* RESPONSIVO */

@media(max-width:768px){

  .servicos{
    padding:80px 20px;
  }

  .titulo-servicos h2{
    font-size:32px;
  }

  .card{
    padding:28px;
  }

  .card h3{
    font-size:20px;
  }

}

/* =========================
   CTA ELEVADOR
========================= */

.cta-elevador{
  position:relative;

  width:100%;
  min-height:100vh;

  background:
  linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.30)),
  url('elevador-hero.png');

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:80px 20px;
}

.overlay{
  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.45);
}

.cta-container{
  position:relative;
  z-index:2;

  width:100%;
  max-width:1000px;

  text-align:center;
}

.seta{
  font-size:80px;
  color:#00d4ff;
  margin-bottom:10px;

  animation:flutuar 2s infinite;
}

@keyframes flutuar{
  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(10px);
  }

  100%{
    transform:translateY(0);
  }
}

.cta-box{
  border:3px solid #00d4ff;

  padding:60px 50px;

  border-radius:10px;

  background:rgba(255,255,255,0.05);

  backdrop-filter:blur(4px);
}

.cta-box h2{
  font-size:52px;
  line-height:1.2;

  color:white;

  margin-bottom:30px;

  font-weight:800;
}

.cta-box h2 span{
  color:#00d4ff;
}

.cta-box p{
  color:white;

  font-size:18px;

  line-height:1.8;

  margin-bottom:20px;
}

.destaque{
  font-weight:600;
  margin-top:10px;
}

.btn-cta{
  display:inline-block;

  margin-top:25px;

  background:linear-gradient(90deg,#00d4ff,#007ea1);

  color:white;

  text-decoration:none;

  padding:18px 40px;

  border-radius:8px;

  font-size:18px;

  font-weight:600;

  transition:0.3s;
}

.btn-cta:hover{
  transform:translateY(-5px);
}

/* RESPONSIVO */

@media(max-width:768px){

  .cta-box{
    padding:40px 25px;
  }

  .cta-box h2{
    font-size:34px;
  }

  .cta-box p{
    font-size:16px;
  }

  .seta{
    font-size:55px;
  }

  .btn-cta{
    width:100%;
  }

}

/* =========================
   SOBRE
========================= */

.sobre{
  width:100%;
  padding:120px 20px;
  background:#f5f5f5;
}

.sobre-container{
  max-width:1400px;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:80px;
}

.sobre-texto{
  flex:1;
}

.subtitulo{
  display:block;

  font-size:14px;
  letter-spacing:10px;

  color:#111;

  margin-bottom:25px;
}

.sobre-texto h2{
  font-size:58px;
  line-height:1.1;

  color:#111;

  margin-bottom:35px;

  font-weight:800;
}

.sobre-texto h2 span{
  display:block;
  color:#00cfff;
}

.sobre-texto p{
  color:#222;

  font-size:18px;

  line-height:1.8;

  margin-bottom:28px;

  max-width:700px;
}

.sobre-imagem{
  flex:1;

  display:flex;
  justify-content:center;
}

.sobre-imagem{
  flex:1;

  display:flex;
  align-items:center;
  justify-content:center;
}

.sobre-imagem img{
  width:100%;
  max-width:700px;

  height:520px;

  object-fit:cover;

  border-radius:25px;

  box-shadow:0 20px 40px rgba(0,0,0,0.18);
}

/* RESPONSIVO */

@media(max-width:992px){

  .sobre-container{
    flex-direction:column;
  }

  .sobre-texto h2{
    font-size:42px;
  }

  .sobre-texto{
    text-align:center;
  }

  .sobre-texto p{
    max-width:100%;
  }

  .subtitulo{
    letter-spacing:6px;
  }

}

@media(max-width:768px){

  .sobre{
    padding:80px 20px;
  }

  .sobre-texto h2{
    font-size:34px;
  }

  .sobre-texto p{
    font-size:16px;
  }

}

/* =========================
   ENTREGAS
========================= */

.entregas{
  width:100%;
  background:#020202;
  padding:110px 20px;
}

.entregas-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.entregas h2{
  color:white;
  font-size:44px;
  font-weight:800;
  margin-bottom:18px;
}

.entregas h2 span{
  color:#fff;
}

.entregas-subtitulo{
  max-width:760px;
  margin:0 auto 60px;
  color:#dcdcdc;
  font-size:17px;
  line-height:1.7;
}

.entregas-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px;
}

.entrega-card{
  min-height:260px;
  padding:34px 24px;
  border:2px solid #00cfff;
  border-radius:14px;
  background:linear-gradient(145deg, #050505, #101010);
  box-shadow:0 0 28px rgba(0, 207, 255, 0.12);
  transition:0.3s;
}

.entrega-card:hover{
  transform:translateY(-8px);
  box-shadow:0 0 35px rgba(0, 207, 255, 0.28);
}

.entrega-card span{
  display:block;
  color:#00cfff;
  font-size:64px;
  font-weight:800;
  line-height:1;
  margin-bottom:24px;
}

.entrega-card h3{
  color:white;
  font-size:18px;
  line-height:1.35;
  margin-bottom:15px;
}

.entrega-card p{
  color:#d6d6d6;
  font-size:14px;
  line-height:1.6;
}

/* RESPONSIVO */

@media(max-width:1100px){
  .entregas-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:650px){
  .entregas{
    padding:80px 20px;
  }

  .entregas h2{
    font-size:34px;
  }

  .entregas-grid{
    grid-template-columns:1fr;
  }

  .entrega-card{
    min-height:auto;
  }
}

/* =========================
   POR QUE ESCOLHER A PROLIFT
========================= */

.porque-prolift{
  width:100%;
  background:#f5f5f5;
  padding:110px 20px;
}

.porque-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.porque-subtitulo{
  display:block;
  letter-spacing:8px;
  font-size:13px;
  color:#111;
  margin-bottom:18px;
}

.porque-container h2{
  font-size:46px;
  font-weight:800;
  color:#111;
  margin-bottom:20px;
}

.porque-container h2 span{
  color:#00cfff;
}

.porque-descricao{
  max-width:800px;
  margin:0 auto 60px;
  color:#444;
  font-size:17px;
  line-height:1.7;
}

.porque-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.porque-card{
  background:white;
  padding:38px 30px;
  border-radius:18px;
  text-align:left;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  border-bottom:4px solid #00cfff;
  transition:0.3s;
}

.porque-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,0.14);
}

.porque-icone{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#00cfff;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:800;
  margin-bottom:25px;
}

.porque-card h3{
  font-size:22px;
  color:#111;
  margin-bottom:15px;
  line-height:1.3;
}

.porque-card p{
  color:#555;
  font-size:16px;
  line-height:1.7;
}

/* RESPONSIVO */

@media(max-width:1000px){
  .porque-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:650px){
  .porque-prolift{
    padding:80px 20px;
  }

  .porque-container h2{
    font-size:34px;
  }

  .porque-grid{
    grid-template-columns:1fr;
  }

  .porque-card{
    text-align:center;
  }

  .porque-icone{
    margin:0 auto 25px;
  }
}

/* =========================
   FAQ
========================= */

.faq{
  width:100%;
  background:#000;
  padding:110px 20px;
}

.faq-container{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.faq-subtitulo{
  display:block;
  color:white;
  letter-spacing:10px;
  font-size:13px;
  margin-bottom:20px;
}

.faq h2{
  color:white;
  font-size:46px;
  font-weight:800;
  margin-bottom:35px;
}

.faq h2 span{
  color:#fff;
}

.faq-lista{
  width:100%;
  margin-bottom:40px;
}

.faq-item{
  border:1px solid #fff;
  border-bottom:none;
  text-align:left;
}

.faq-item:last-child{
  border-bottom:1px solid #fff;
}

.faq-pergunta{
  width:100%;
  background:transparent;
  color:white;
  border:none;
  padding:18px 25px;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:space-between;

  font-size:17px;
  font-weight:700;
  text-align:left;
}

.faq-pergunta span{
  color:#00cfff;
  font-size:24px;
  font-weight:800;
}

.faq-resposta{
  max-height:0;
  overflow:hidden;
  transition:0.4s ease;
}

.faq-resposta p{
  color:white;
  padding:0 25px 25px;
  font-size:16px;
  line-height:1.7;
  font-weight:600;
}

.faq-item.ativo .faq-resposta{
  max-height:250px;
}

.faq-item.ativo .faq-pergunta{
  color:#00cfff;
}

.faq-btn{
  display:inline-block;
  background:linear-gradient(90deg,#00d4ff,#007c91);
  color:white;
  text-decoration:none;
  padding:20px 55px;
  border-radius:9px;
  font-size:18px;
  font-weight:700;
  transition:0.3s;
}

.faq-btn:hover{
  transform:translateY(-5px);
}

/* RESPONSIVO */

@media(max-width:768px){
  .faq{
    padding:80px 20px;
  }

  .faq h2{
    font-size:34px;
  }

  .faq-pergunta{
    font-size:15px;
  }

  .faq-btn{
    width:100%;
  }
}

/* =========================
   CONTATO
========================= */

.contato{
  width:100%;
  padding:110px 20px;
  background:#f5f5f5;
}

.contato-container{
  max-width:1300px;
  margin:auto;

  display:flex;
  gap:60px;

  align-items:center;
  justify-content:space-between;
}

.contato-info{
  flex:1;
}

.contato-subtitulo{
  display:block;

  letter-spacing:8px;

  font-size:13px;

  color:#111;

  margin-bottom:20px;
}

.contato-info h2{
  font-size:48px;

  font-weight:800;

  color:#111;

  margin-bottom:25px;
}

.contato-info h2 span{
  color:#00cfff;
}

.contato-texto{
  color:#555;

  font-size:17px;

  line-height:1.8;

  margin-bottom:40px;

  max-width:550px;
}

.contato-item{
  display:flex;
  align-items:flex-start;
  gap:18px;

  margin-bottom:30px;
}

.contato-icone{
  width:55px;
  height:55px;

  background:#00cfff;

  border-radius:12px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;
}

.contato-item h3{
  color:#111;
  margin-bottom:6px;
  font-size:20px;
}

.contato-item a,
.contato-item p{
  color:#555;
  font-size:17px;
  text-decoration:none;
  line-height:1.6;
}

.contato-item a:hover{
  color:#00cfff;
}

.contato-mapa{
  flex:1;
}

.contato-mapa iframe{
  width:100%;
  height:520px;

  border:none;

  border-radius:20px;

  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* RESPONSIVO */

@media(max-width:992px){

  .contato-container{
    flex-direction:column;
  }

  .contato-info{
    width:100%;
  }

  .contato-mapa{
    width:100%;
  }

}

@media(max-width:768px){

  .contato{
    padding:80px 20px;
  }

  .contato-info h2{
    font-size:34px;
  }

  .contato-texto{
    font-size:16px;
  }

  .contato-mapa iframe{
    height:400px;
  }

}

/* =========================
   RODAPÉ
========================= */

.rodape{
  width:100%;
  background:#000;
  padding:30px 20px;

  border-top:1px solid rgba(255,255,255,0.08);
}

.rodape-container{
  max-width:1200px;
  margin:auto;

  text-align:center;
}

.rodape p{
  color:#cfcfcf;
  font-size:15px;
  letter-spacing:0.5px;
}

/* =========================
   AJUSTE AZUL MARINHO PROLIFT
========================= */

:root{
  --azul-prolift:#123F82;
  --azul-prolift-escuro:#0B2E5C;
}

/* Textos em azul */
.hero h1 span,
.cta-box h2 span,
.sobre-texto h2 span,
.entregas h2 span,
.porque-container h2 span,
.faq h2 span,
.contato-info h2 span,
.faq-item.ativo .faq-pergunta,
.faq-pergunta span,
.contato-item a:hover{
  color:var(--azul-prolift);
}

/* Logo */
.logo{
  color:var(--azul-prolift);
}

/* Ícones e números */
.icone,
.seta,
.entrega-card span{
  color:var(--azul-prolift);
}

/* Botões */
.btn,
.btn-cta,
.faq-btn{
  background:linear-gradient(90deg, var(--azul-prolift), var(--azul-prolift-escuro));
}

/* Bordas */
.cta-box{
  border-color:var(--azul-prolift);
}

.entrega-card{
  border-color:var(--azul-prolift);
  box-shadow:0 0 28px rgba(18, 63, 130, 0.18);
}

.entrega-card:hover{
  box-shadow:0 0 35px rgba(18, 63, 130, 0.35);
}

.porque-card{
  border-bottom-color:var(--azul-prolift);
}

/* Círculos e blocos azuis */
.porque-icone,
.contato-icone{
  background:var(--azul-prolift);
}

/* HERO COM TEXTO MAIS DESTACADO */

.hero-content{
  background:rgba(255,255,255,0.72);
  padding:45px 55px;
  border-radius:18px;
  backdrop-filter:blur(6px);
  box-shadow:0 20px 45px rgba(0,0,0,0.20);
}

.hero h1{
  color:#111;
}

.hero h1 span{
  color:#123F82;
  text-shadow:none;
}

.hero p{
  color:#222;
  font-weight:400;
}

/* CTA MAIS PREMIUM E LEGÍVEL */

.cta-box{
  background:rgba(255,255,255,0.16);

  backdrop-filter:blur(10px);

  border:1px solid rgba(255,255,255,0.22);

  box-shadow:
  0 15px 40px rgba(0,0,0,0.22);

  border-radius:22px;

  padding:60px 70px;
}

/* TÍTULO */

.cta-box h2{
  color:#ffffff;

  line-height:1.15;

  text-shadow:
  0 3px 12px rgba(0,0,0,0.35);
}

/* PARTE AZUL MARINHO */

.cta-box h2 span{
  color:#123F82;

  text-shadow:
  0 2px 8px rgba(255,255,255,0.18),
  0 2px 10px rgba(0,0,0,0.28);
}

/* TEXTOS */

.cta-box p{
  color:#ffffff;

  font-weight:400;

  text-shadow:
  0 2px 8px rgba(0,0,0,0.30);
}

/* SETA */

.seta{
  color:#123F82;

  font-size:60px;

  margin-bottom:20px;

  text-shadow:
  0 2px 10px rgba(255,255,255,0.25);
}

/* BOTÃO */

.btn-cta{
  background:#123F82;

  color:#fff;

  border:none;

  box-shadow:
  0 10px 25px rgba(18,63,130,0.35);

  transition:0.3s;
}

.btn-cta:hover{
  transform:translateY(-3px);

  background:#0d2f63;

  box-shadow:
  0 15px 30px rgba(18,63,130,0.45);
}

/* FAQ MAIS PREMIUM */

.faq{
  background:
  radial-gradient(circle at top, #0d1f44 0%, #000000 65%);

  padding:120px 20px;
}

/* TÍTULO */

.faq h2{
  color:#fff;

  font-size:58px;

  margin-bottom:60px;

  text-align:center;
}

.faq h2 span{
  color:#fff;

  text-shadow:none;
}

/* CAIXAS */

.faq-item{
  background:rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.10);

  border-radius:18px;

  margin-bottom:20px;

  overflow:hidden;

  transition:0.3s;
}

.faq-item:hover{
  border-color:#123F82;

  box-shadow:
  0 0 25px rgba(18,63,130,0.20);
}

/* PERGUNTA */

.faq-pergunta{
  width:100%;

  background:none;

  border:none;

  color:#ffffff;

  font-size:24px;

  font-weight:700;

  text-align:left;

  padding:30px;

  cursor:pointer;

  display:flex;

  align-items:center;

  justify-content:space-between;
}

/* QUANDO ABRIR */

.faq-item.ativo .faq-pergunta{
  color:#4c7fe0;
}

/* ÍCONE */

.faq-pergunta span{
  color:#4c7fe0;

  font-size:34px;

  font-weight:300;
}

/* RESPOSTA */

.faq-resposta{
  max-height:0;

  overflow:hidden;

  transition:0.4s ease;
}

.faq-item.ativo .faq-resposta{
  max-height:300px;
}

.faq-resposta p{
  color:#ffffff;

  font-size:19px;

  line-height:1.7;

  padding:
  0 30px 30px;
}

/* BOTÃO */

.faq-btn{
  display:inline-block;

  margin-top:45px;

  background:#123F82;

  color:#fff;

  padding:18px 45px;

  border-radius:14px;

  text-decoration:none;

  font-size:20px;

  font-weight:700;

  transition:0.3s;

  box-shadow:
  0 10px 25px rgba(18,63,130,0.35);
}

.faq-btn:hover{
  background:#0d2f63;

  transform:translateY(-3px);
}

/* =======================================================
   O QUE VOCÊ RECEBE - ESTILO PREMIUM
======================================================= */

.entregas{
  padding:120px 20px;

  background:
  radial-gradient(circle at top, #0d1f44 0%, #000000 70%);

  text-align:center;
}

/* TÍTULO */

.entregas h2{
  font-size:58px;

  color:#fff;

  margin-bottom:20px;

  line-height:1.1;
}

.entregas h2 span{
  color:#fff !important;
  text-shadow:none !important;
}

/* TEXTO */

.entregas-texto{
  color:#ffffff;

  font-size:22px;

  max-width:850px;

  margin:0 auto 70px;

  line-height:1.6;
}

/* GRID */

.entregas-grid{
  display:grid;

  grid-template-columns:
  repeat(4, 1fr);

  gap:30px;

  max-width:1400px;

  margin:0 auto;
}

/* CARDS */

.entrega-card{
  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );

  border:
  1px solid rgba(18,63,130,0.65);

  border-radius:24px;

  padding:45px 30px;

  transition:0.35s;

  position:relative;

  overflow:hidden;

  backdrop-filter:blur(6px);

  box-shadow:
  0 10px 30px rgba(0,0,0,0.25);
}

/* EFEITO HOVER */

.entrega-card:hover{
  transform:
  translateY(-8px);

  border-color:#123F82;

  box-shadow:
  0 15px 40px rgba(18,63,130,0.30);
}

/* NÚMERO */

.entrega-card span{
  display:block;

  font-size:72px;

  font-weight:800;

  color:#123F82;

  margin-bottom:20px;

  line-height:1;

  text-shadow:
  0 2px 10px rgba(18,63,130,0.25);
}

/* ÍCONE */

.entrega-icone{
  font-size:42px;

  color:#123F82;

  margin-bottom:25px;
}

/* TÍTULO CARD */

.entrega-card h3{
  color:#ffffff;

  font-size:30px;

  line-height:1.2;

  margin-bottom:18px;

  font-weight:700;
}

/* LINHA */

.entrega-linha{
  width:45px;

  height:3px;

  background:#123F82;

  border-radius:999px;

  margin:
  0 auto 22px;
}

/* TEXTO CARD */

.entrega-card p{
  color:#ffffff;

  font-size:18px;

  line-height:1.7;

  opacity:0.92;
}

/* RESPONSIVO */

@media(max-width:1200px){

  .entregas-grid{
    grid-template-columns:
    repeat(2, 1fr);
  }

}

@media(max-width:768px){

  .entregas h2{
    font-size:42px;
  }

  .entregas-grid{
    grid-template-columns:1fr;
  }

  .entrega-card{
    padding:40px 25px;
  }

}

/* =========================
   HEADER
========================= */

header{
  height:90px;

  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  position:relative;
}

/* =================================
   AUMENTAR ALTURA DA BARRA SUPERIOR
================================= */

header{
  height:180px;
}

/* LOGOTIPO */

.logo{
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo img{
  height:200px;
  width:auto;

  display:block;

  object-fit:contain;
}

/* MOBILE */

@media(max-width:768px){

  header{
    height:125px;
  }

  .logo img{
    height:170px;
  }

}

/* DESENCOSTAR LOGO DO TOPO */

.logo{
  padding-top:20px;
}

/* =========================
   HEADER COM MENU
========================= */

header{
  height:110px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

.menu{
  position:absolute;
  left:70px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  align-items:center;
  gap:35px;
}

.menu a{
  color:#123F82;
  text-decoration:none;
  font-size:20px;
  font-weight:700;
}

.menu a:hover{
  color:#0B2E5C;
}

.logo{
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:12px;
}

.logo img{
  height:380px;
  width:auto;
  display:block;
  object-fit:contain;
}

.whatsapp-fixo{
  position:absolute;
  right:35px;
  top:50%;
  transform:translateY(-50%);
  width:60px;
  height:60px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:30px;
  text-decoration:none;
  box-shadow:0 8px 22px rgba(0,0,0,0.25);
  z-index:1001;
}

.whatsapp-fixo:hover{
  transform:translateY(-50%) scale(1.08);
}

@media(max-width:768px){

  header{
    height:135px;
    flex-direction:column;
  }

  .menu{
    position:absolute;
    left:15px;
    top:18px;
    transform:none;
    gap:12px;
  }

  .menu a{
    font-size:13px;
  }

  .logo img{
    height:170px;
  }

  .whatsapp-fixo{
    right:14px;
    top:22px;
    width:48px;
    height:48px;
    font-size:24px;
  }
}

/* =================================
   CTA PREMIUM CLEAN
================================= */

.cta-box{

  border:1px solid rgba(255,255,255,0.22);

  padding:60px 50px;

  border-radius:24px;

  background:rgba(255,255,255,0.72);

  backdrop-filter:blur(10px);

  -webkit-backdrop-filter:blur(10px);

  box-shadow:
  0 10px 35px rgba(0,0,0,0.18);

}

.cta-box h2{
  color:#111;

  text-shadow:none;

  font-weight:800;
}

.cta-box h2 span{

  color:#123F82;

  font-weight:800;

  text-shadow:
  0 1px 2px rgba(255,255,255,0.35);

}

/* =================================
   TEXOS PRETOS NO CTA
================================= */

.cta-box p{
  color:#111;
}

.destaque{
  color:#111;
}

/* =========================
   RESPONSIVO GERAL CELULAR
========================= */

html, body{
  width:100%;
  overflow-x:hidden;
}

img{
  max-width:100%;
}

/* HEADER MOBILE CORRIGIDO */

@media(max-width:768px){

  header{
    height:110px !important;
    padding:0 15px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .logo{
    padding-top:0 !important;
  }

  .logo img{
    width:150px !important;
    height:auto !important;
    max-height:90px !important;
    object-fit:contain !important;
  }

  .menu{
    position:absolute !important;
    left:10px !important;
    top:15px !important;

    display:flex !important;
    gap:10px !important;
  }

  .menu a{
    font-size:13px !important;
    font-weight:700 !important;
    text-decoration:none !important;
  }

  .whatsapp-fixo{
    width:48px !important;
    height:48px !important;

    right:12px !important;
    top:28px !important;

    font-size:22px !important;
  }

  /* HERO MOBILE */

  .hero{
    min-height:100vh !important;
    height:auto !important;

    padding:150px 18px 70px !important;

    background-position:center !important;
  }

  .hero-content{
    width:100% !important;
    max-width:100% !important;

    padding:30px 22px !important;
    margin-top:0 !important;
  }

  .hero h1{
    font-size:30px !important;
    line-height:1.2 !important;
  }

  .hero p{
    font-size:15px !important;
    line-height:1.6 !important;
  }

  .btn{
    width:100% !important;
    max-width:280px !important;
    font-size:14px !important;
  }

}

/* =========================
   AJUSTE FINAL MOBILE
========================= */

@media(max-width:768px){

  /* HEADER MOBILE */
  header{
    height:95px !important;
    padding:0 12px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    position:fixed !important;
  }

  .menu{
    position:absolute !important;
    left:12px !important;
    top:18px !important;

    display:flex !important;
    gap:12px !important;
  }

  .menu a{
    font-size:12px !important;
    font-weight:700 !important;
  }

  .logo{
    padding-top:18px !important;
  }

  .logo img{
    width:120px !important;
    height:auto !important;
    max-height:55px !important;
  }

  .whatsapp-fixo{
    width:46px !important;
    height:46px !important;

    right:12px !important;
    top:24px !important;

    font-size:22px !important;
  }

  /* HERO MOBILE */
  .hero{
    padding:130px 16px 60px !important;
    min-height:100vh !important;
    background-position:center top !important;
  }

  .hero-content{
    padding:26px 20px !important;
    border-radius:18px !important;
  }

  .hero h1{
    font-size:29px !important;
  }

  /* CTA ELEVADOR MOBILE */
  .cta-elevador{
    min-height:100vh !important;

    padding:125px 14px 60px !important;

    background-image:
      linear-gradient(rgba(0,0,0,0.20), rgba(0,0,0,0.20)),
      url('elevador-hero.png') !important;

    background-size:cover !important;

    background-position:left center !important;
  }

  .cta-container{
    width:100% !important;
  }

  .seta{
    font-size:42px !important;
    margin-bottom:18px !important;
  }

  .cta-box{
    width:100% !important;
    max-width:330px !important;

    padding:28px 20px !important;

    border-radius:20px !important;

    background:rgba(255,255,255,0.70) !important;

    backdrop-filter:blur(8px) !important;
    -webkit-backdrop-filter:blur(8px) !important;
  }

  .cta-box h2{
    font-size:26px !important;
    line-height:1.15 !important;
    margin-bottom:22px !important;
    color:#111 !important;
  }

  .cta-box h2 span{
    font-size:26px !important;
    line-height:1.15 !important;
    color:#123F82 !important;
  }

  .cta-box p{
    color:#111 !important;
    font-size:14px !important;
    line-height:1.6 !important;
  }

  .btn-cta{
    width:100% !important;
    max-width:240px !important;
    font-size:14px !important;
  }

}

/* =========================
   AJUSTE FINAL RESPONSIVO
========================= */

html{
  scroll-behavior:smooth;
}

section{
  scroll-margin-top:120px;
}

body{
  overflow-x:hidden;
}

/* HEADER DESKTOP */

header{
  height:95px !important;
  padding:0 30px !important;
  background:#fff !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  position:fixed !important;
  top:0 !important;
  left:0 !important;
  width:100% !important;
  z-index:9999 !important;

  box-shadow:0 2px 12px rgba(0,0,0,0.08);
}

.logo{
  padding:0 !important;
}

.logo img{
  width:170px !important;
  height:auto !important;
  max-height:80px !important;
  object-fit:contain !important;
}

.menu{
  position:absolute !important;
  left:35px !important;
  top:50% !important;
  transform:translateY(-50%) !important;

  display:flex !important;
  gap:28px !important;
}

.menu a{
  color:#123F82 !important;
  text-decoration:none !important;
  font-size:18px !important;
  font-weight:700 !important;
}

.whatsapp-fixo{
  position:absolute !important;
  right:30px !important;
  top:50% !important;
  transform:translateY(-50%) !important;

  width:54px !important;
  height:54px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  background:#25D366 !important;
  color:#fff !important;
  border-radius:50% !important;
  font-size:26px !important;

  z-index:10000 !important;
}

/* MOBILE */

@media(max-width:768px){

  header{
    height:82px !important;
    padding:0 15px !important;
  }

  .logo img{
    width:120px !important;
    max-height:58px !important;
  }

  .whatsapp-fixo{
    width:46px !important;
    height:46px !important;
    right:14px !important;
    font-size:22px !important;
  }

  .menu{
    position:fixed !important;
    left:50% !important;
    bottom:18px !important;
    top:auto !important;

    transform:translateX(-50%) !important;

    background:#ffffff !important;

    padding:12px 18px !important;

    border-radius:999px !important;

    display:flex !important;
    gap:18px !important;

    box-shadow:0 8px 25px rgba(0,0,0,0.18);

    z-index:10001 !important;
  }

  .menu a{
    font-size:13px !important;
    font-weight:800 !important;
    color:#123F82 !important;
    white-space:nowrap !important;
  }

  section{
    scroll-margin-top:95px;
  }

  .hero{
    min-height:100vh !important;
    height:auto !important;
    padding:120px 16px 90px !important;
    background-position:center center !important;
  }

  .hero-content{
    width:100% !important;
    max-width:100% !important;
    padding:28px 20px !important;
    border-radius:18px !important;
  }

  .hero h1{
    font-size:30px !important;
    line-height:1.18 !important;
  }

  .hero p{
    font-size:15px !important;
    line-height:1.6 !important;
  }

  .btn{
    width:100% !important;
    max-width:260px !important;
    font-size:14px !important;
  }

  .cta-elevador{
    min-height:100vh !important;
    padding:100px 14px 90px !important;
    background-position:left center !important;
  }

  .cta-box{
    width:100% !important;
    max-width:340px !important;
    padding:28px 20px !important;
    border-radius:20px !important;
  }

  .cta-box h2{
    font-size:26px !important;
    line-height:1.15 !important;
  }

  .cta-box h2 span{
    font-size:26px !important;
    line-height:1.15 !important;
  }

  .cta-box p{
    font-size:14px !important;
    line-height:1.6 !important;
  }

  .cards-servicos,
  .entregas-grid,
  .porque-grid{
    grid-template-columns:1fr !important;
  }

  .sobre-container,
  .contato-container{
    flex-direction:column !important;
  }

  .sobre-imagem img{
    height:auto !important;
    max-height:360px !important;
  }

  .contato-mapa iframe{
    height:330px !important;
  }
}

/* =========================
   LOGOTIPO DEFINITIVO
========================= */

header{
  height:120px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  background:#fff !important;

  position:fixed !important;
  top:0;
  left:0;
  width:100%;

  z-index:9999;
}

.logo{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  padding:0 !important;
  margin:0 !important;
}

.logo img{

  width:280px !important;

  max-width:none !important;

  height:auto !important;

  max-height:none !important;

  object-fit:contain !important;

  display:block !important;
}

/* MOBILE */

@media(max-width:768px){

  header{
    height:95px !important;
  }

  .logo img{

    width:200px !important;

    max-width:none !important;

    height:auto !important;

    max-height:none !important;
  }

}

/* =================================
   AJUSTE CTA MOBILE CENTRALIZADO
================================= */

@media(max-width:768px){

  .cta-elevador{

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:120px 16px 140px !important;

    background-size:cover !important;

    /* MOSTRA MAIS DA FOTO */
    background-position:center center !important;
  }

  .cta-container{

    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;
  }

  .cta-box{

    margin:0 auto !important;

    width:100% !important;
    max-width:340px !important;

    text-align:center !important;
  }

  .cta-box h2{
    text-align:center !important;
  }

  .cta-box p{
    text-align:center !important;
  }

  .btn-cta{

    display:flex !important;

    align-items:center !important;
    justify-content:center !important;

    margin:25px auto 0 auto !important;
  }

}

/* =========================
   CORREÇÃO FINAL FAQ
========================= */

.faq h2,
.faq h2 span{
  color:#fff !important;
  text-shadow:none !important;
}

/* =========================
   FUNDO MOBILE ELEVADOR
========================= */

@media screen and (max-width:768px){

  .cta-elevador{

    background:
      linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
      url("elevador-hero.png") !important;

    background-size:cover !important;

    background-position:15% center !important;

    background-repeat:no-repeat !important;
  }

}

/* =========================
   CORREÇÃO GRID ENTREGAS
========================= */

@media(max-width:1300px){

  .entregas-grid{
    grid-template-columns:repeat(2, 1fr) !important;
  }

  .entrega-card h3{
    font-size:26px !important;
    line-height:1.25 !important;
  }

}

@media(max-width:768px){

  .entregas-grid{
    grid-template-columns:1fr !important;
  }

  .entrega-card h3{
    font-size:24px !important;
  }

}

/* CORREÇÃO CARD ENTREGAS */

.entrega-card{
  overflow:visible !important;
  min-width:0 !important;
}

.entrega-card h3{
  word-break:break-word !important;
}

/* ESTILIZANDO BOTÃO PRIMEIRA SESSÃO */

.hero-btn{
  background:#0d3b8e;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:16px 34px;
  border-radius:12px;

  text-decoration:none;
  font-weight:600;

  transition:0.3s;
}

.hero-btn i{
  font-size:20px;
  color:#fff;
}

.hero-btn:hover{
  background:#1148aa;
  transform:translateY(-2px);
}
