/*
Theme Name: Prime Assessoria
Author: José Luis
Version: 1.0
*/



/* =========================
   VARIÁVEIS
========================= */
:root{
  --laranja-principal:#ff6a00;
  --laranja-claro:#ff9e00;
  --roxo-principal:#6a0dad;
  --roxo-magenta:#b5179e;
  --preto-principal:#111111;
}

/* =========================
   BASE
========================= */
body{
  font-family:'Segoe UI', sans-serif;
  margin:0;
  background:#f8f9fa;
}

/* =========================
   HEADER CLEAN COM GRADIENTE CENTRAL
========================= */
header{
   padding:10px 0;
  box-shadow:0 6px 25px rgba(0,0,0,0.06);
}

.navbar{
  background:transparent !important;
}

.navbar-brand img{
  max-height:130px;
}

.nav-link{
  color:#111 !important;
  font-weight:600;
  position:relative;
  transition:.3s;
 text-transform: uppercase;
 
}

.nav-link:hover{
  color:var(--laranja-principal) !important;
}

/* =========================
   HERO
========================= */
.hero{
  padding:40px 0;
  position:relative;
 background:
    Linear-gradient(135deg, #EC4899 0%, #FBBF24 50%, #FFFFFF 100%);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:3rem;
  font-weight:800;
}

.hero h1 span{
  background:linear-gradient(90deg,
      var(--laranja-principal),
      var(--roxo-magenta));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero p{
  margin:20px 0;
  font-size:1.1rem;
  color:#555;
}
/* =========================
  Quem somos
========================= */

.quem-somos {font-size: 20px; text-align: justify; font-weight:400; padding:10px 0} 



/* =========================
   FORM PREMIUM
========================= */
.form-box{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.form-group{
  position:relative;
  margin-bottom:20px;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:14px;
  border:1px solid #ddd;
  border-radius:10px;
  outline:none;
  font-size:14px;
}

.form-group label{
  position:absolute;
  top:14px;
  left:14px;
  color:#777;
  transition:.3s;
  pointer-events:none;
  background:#fff;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label{
  top:-8px;
  left:10px;
  font-size:12px;
  color:var(--laranja-principal);
}

/* =========================
   BOTÃO PRINCIPAL
========================= */
.btn-prime{
  width:100%;
  padding:14px;
  border:none;
  border-radius:50px;
  font-weight:600;
  color:#fff;
  background:linear-gradient(90deg,
      var(--laranja-principal),
      var(--laranja-claro));
  transition:.3s;
  cursor:pointer;
}

button a:hover , a{ text-decoration:none; color:#FFF;}

.btn-prime:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(255,106,0,.4);
  opacity:.95;
}

#statusMsg{
  margin-top:15px;
  font-weight:600;
}

/* =========================
   TÍTULOS COM FAIXA GRADIENTE
========================= */
.section-title{
  display:inline-block;
  padding:12px 45px;
  border-radius:50px;
  background:linear-gradient(90deg,
      var(--laranja-principal),
      var(--roxo-magenta));
  color:#fff;
  font-weight:600;
  margin-bottom:50px;
  font-size:20px;
}

/* =========================
   SECTIONS
========================= */
section{
  padding:100px 0;
}

/* =========================
   CARDS
========================= 
.service-card{
  border:none;
  border-radius:18px;
  transition:.4s;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(0,0,0,.15);
} */

/* CARDS */
.service-card {
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all .3s ease;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}


.card-img-top {
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* =========================
   FOOTER
========================= */
footer{
  background: #111;
  color:#ccc;
  padding:70px 0 30px 0;
}

.footer-col{
  margin-bottom:30px;
}

.footer-title{
  font-weight:700;
  margin-bottom:20px;
  color:#fff;
  position:relative;
}

.footer-title::after{
  content:"";
  display:block;
  width:40px;
  height:3px;
  margin-top:8px;
  background:linear-gradient(90deg,
        var(--laranja-principal),
        var(--roxo-magenta));
}

footer ul{
  list-style:none;
  padding:0;
}

footer ul li{
  margin-bottom:10px;
}

footer a{
  color:#ccc;
  text-decoration:none;
  transition:.3s;
}

footer a:hover{
  color:var(--laranja-principal);
}

/* BOTÕES SOCIAIS */
.social-buttons{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.social-btn{
  padding:10px 15px;
  border-radius:50px;
  text-align:center;
  font-weight:600;
  color:#fff !important;
  text-decoration:none;
  transition:.3s;
}

.instagram{
  background:linear-gradient(90deg,#ff6a00,#b5179e);
}

.facebook{
  background:#1877f2;
}

.tiktok{
  background:#000;
}

.social-btn:hover{
  transform:translateY(-3px);
  opacity:.9;
}

/* RODAPÉ FINAL */
.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.1);
  font-size:14px;
  color:#888;
}


/* HERO DA CATEGORIA */
.category-hero{
  padding:100px 0;
  text-align:center;
  background:linear-gradient(90deg,
        rgba(255,106,0,0.08),
        rgba(181,23,158,0.08));
}

.page-title{
  font-size:2.8rem;
  font-weight:800;
  background:linear-gradient(90deg,
        var(--laranja-principal),
        var(--roxo-magenta));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* LISTA */
.category-list{
  padding:80px 0;
}

/* CARD PRODUTO */
.product-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.4s;
}

.card-text{height:60px; 
}

.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.product-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.product-content{
  padding:25px;
}

.product-content h4{
  font-weight:700;
  margin-bottom:15px;
}


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

.hero-fixo{
  position:relative;
  height:650px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,#111,#1b1b1b);
}

.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.15));
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:600px;
  color:#fff;
  animation:fadeUp .8s ease forwards;
  padding: 5px 50px;
}

.hero-badge{
  display:inline-block;
  background:rgba(255,255,255,0.15);
  padding:6px 14px;
  border-radius:30px;
  font-size:13px;
  margin-bottom:20px;
}

.hero-content h1{
  font-size:3.2rem;
  font-weight:800;
  line-height:1.2;
}

.hero-content h1 span{
  background:linear-gradient(90deg,
      var(--laranja-principal),
      var(--roxo-magenta));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-content p{
  font-size:1.1rem;
  margin:25px 0 35px;
  color:#ddd;
}

.btn-hero{
  padding:16px 42px;
  font-size:17px;
  font-weight:700;
  border-radius:50px;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(90deg,
        var(--laranja-principal),
        var(--roxo-magenta));
  box-shadow:0 15px 40px rgba(255,106,0,.35);
  transition:.3s;
  display:inline-block;
}

.btn-hero:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(255,106,0,.45);
}

/* =========================
   Depoimentos 
========================= */

.foto-cliente{
width:60px;
height:60px;
border-radius:50%;
object-fit:cover;
}

/* estrelas */

.estrelas{
color:#fbbc04;
font-size:18px;
letter-spacing:2px;
}

/* card premium */

.depoimento-premium{
border-radius:12px;
transition:all .3s ease;
}

/* hover elegante */

.depoimento-premium:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}
/* foto redonda */

.cliente-foto{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
display:block;
margin-left:auto;
margin-right:auto;
}

/* estrelas google */

.estrelas{
color:#fbbc04;
font-size:20px;
letter-spacing:3px;
}
.bg-depoimentos{
background:#f1f3f5;
border-top:1px solid #e5e5e5;
}

/* Modal Form --*/
.whatsapp-modal{

border-radius:15px;
overflow:hidden;

}

.whatsapp-modal .modal-header{

background:#25d366;
color:white;

}

.whatsapp-modal input,
.whatsapp-modal textarea{

border-radius:10px;

}

.btn-success{

background:#25d366;
border:none;

}


@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* =========================
CONTEÚDO REFORÇADO
========================= */

.conteudo-servico{
  padding:120px 0;
  background:#ffffff;
}

.titulo-servico h2{
  font-size:2.8rem;
  font-weight:800;
  margin:15px 0 20px;
}

.titulo-servico .subtitulo{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:var(--laranja-principal);
  font-weight:600;
}

.titulo-servico .lead{
  font-size:1.2rem;
  color:#666;
  max-width:750px;
  margin:0 auto;
}

.beneficio-box{
  background:#fff;
  padding:35px 25px;
  border-radius:18px;
  border:1px solid #eee;
  text-align:center;
  transition:.3s;
  height:100%;
}

.beneficio-box h5{
  font-weight:700;
  margin-bottom:15px;
}

.beneficio-box p{
  font-size:15px;
  color:#666;
}

.beneficio-box:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

