/* ====== Vars & base ====== */
:root{
  --pink:#ff1daa;
  --bg:#070707;
  --bg-2:#0d0d0d;
  --text:#f2f2f2;
  --muted:#141414;
  --white:#ffffff;
  --container:1200px;
  --radius:16px;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0}
body{
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}
.container{max-width:var(--container);margin:0 auto;padding:0 20px}
a{color:inherit;text-decoration:none}

/* ====== Buttons ====== */
.btn{display:inline-flex;align-items:center;gap:10px;padding:12px 18px;border-radius:999px;font-weight:800}
.btn-primary{background:linear-gradient(90deg,var(--pink),#ff1daa);color:#fff;box-shadow:0 12px 40px rgba(255,29,170,.15)}
.btn-outline{border:1px solid rgba(255,255,255,.12);color:#fff}
.btn:hover{transform:translateY(-2px)}

/* ====== Floating actions ====== */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  overflow: hidden !important; /* Garante que nada ultrapasse os limites */
  white-space: nowrap; /* Evita que os elementos quebrem linha */
}

.floating-buttons a {
  width: 60px;
  height: 60px;
  background-color: #25D366; /* Verde do WhatsApp */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 50%; /* Isso faz os botões ficarem redondos */
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-buttons a.instagram-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); /* Gradiente do Instagram */
}

.floating-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

/* ====== HERO ====== */
.hero{position:relative;overflow:hidden;isolation:isolate}
.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(1200px 400px at 50% -10%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(180deg,#000, #0a0a0a 60%, #000 100%);
  filter:saturate(0.2) contrast(1.1);
  z-index:-2;
}
/* poses laterais (silhuetas) */
.pose{position:absolute;bottom:-8px;width:min(36vw,420px);opacity:.25;filter:grayscale(100%) blur(1px);z-index:-1}
.pose-left{left:-40px;transform:scaleX(-1) rotate(-2deg)}
.pose-right{right:-40px;transform:rotate(2deg)}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url("img/banner.png") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #fff;
  isolation: isolate;
}

/* Overlay para contraste */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* LOGO FLUORESCENTE TOP-LEFT */
.hero-logo-bg {
  position: absolute;
  top: 30px;
  left: 10px;
  z-index: 5; /* acima da overlay */
  pointer-events: none;
}

.hero-logo-bg img {
  width: 5ch; /* ainda maior */
  opacity: 0.5; /* bem mais visível */
  filter: drop-shadow(0 0 20px rgba(255,29,170,0.9))
          drop-shadow(0 0 50px rgba(255,29,170,0.6))
          drop-shadow(0 0 80px rgba(255,29,170,0.5));
  animation: neonGlow 2s infinite alternate;
}

/* animação glow pulsando */
@keyframes neonGlow {
  from {
    filter: drop-shadow(0 0 10px rgba(255,29,170,0.7))
            drop-shadow(0 0 30px rgba(255,29,170,0.6));
  }
  to {
    filter: drop-shadow(0 0 25px rgba(255,29,170,1))
            drop-shadow(0 0 60px rgba(255,29,170,0.9))
            drop-shadow(0 0 90px rgba(255,29,170,0.7));
  }
}

/* Conteúdo central, mas empurrado para baixo */
.hero-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* joga conteúdo para baixo */
  padding-bottom: 12vh;      /* distância do rodapé */
}

/* ===== Ajustes títulos do HERO ===== */

/* CONSULTORIA ONLINE */
.title-outline {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(40px, 8vw, 100px);
  margin: 0 0 12px 0;   /* espaço embaixo para não colidir */
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px #ff1daa;
  text-shadow: 0 0 25px rgba(0,0,0,.9);
  line-height: 1.1;
}

.title-outline span {
  -webkit-text-stroke: 2px #fff;
}

/* VANESSA OLIVA */
.hero .title-script {
  font-family: "Alex Brush", cursive;
  font-size: clamp(42px, 6vw, 90px); /* maior mas sem sobrepor */
  line-height: 1;
  margin-top: 0;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0,0,0,.6);
  -webkit-font-smoothing: antialiased;
}

/* BOTÕES */
.hero-ctas {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  justify-content: center;
  top: -20%; /* ajustado para ficar abaixo do texto */
}

@media (max-width: 768px) {
  /* Logo mais para o canto esquerdo */
  .hero-ctas {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  justify-content: center;

}
  }

/* Ajustar espaçamento dos botões em telas pequenas */
@media (max-width: 480px) {
  .hero-ctas {
    margin-top: 10px; /* diminui a distância */
  }

  .hero-center {
    padding-bottom: 90px; /* opcional, para encurtar a área */
  }
}


/* ===== AJUSTES RESPONSIVOS ===== */
.hero-logo-bg img {
  width: clamp(280px, 20vw, 260px);
}

.btn {
  font-size: clamp(14px, 2vw, 18px);
  padding: 12px 20px;
  
}

/* Tablets */
@media (max-width: 768px) {
  .hero-logo-bg img {
    width: clamp(120px, 28vw, 200px);
  }
  .hero-inner {
    padding-bottom: 8vh;
  }
}

/* Celulares */
@media (max-width: 480px) {
  .hero-logo-bg {
    top: 20px;
    left: -40px;
  }
  .hero-logo-bg img {
    width: 220px;
  }
  .hero-inner {
    padding-bottom: 6vh;
  }
}

/* Responsividade títulos */
@media (max-width: 900px) {
  .hero .title-script { font-size: clamp(60px, 6vw, 64px); }
  .title-outline { font-size: clamp(28px, 7vw, 72px); }
}

@media (max-width: 560px) {
  .hero .title-script { font-size: 45px; margin-bottom: 6px; }
  .title-outline { font-size: 36px; margin-bottom: 6px; }
  .hero-ctas { margin-top: 10px; }
}

/* ====== Sections ====== */
.section{padding:80px 0}
.section-dark{background:linear-gradient(180deg,#080808 0%, #0c0c0c 100%)}
.section-light{background:linear-gradient(180deg,#0d0d0d 0%, #121212 100%)}
h2{font-weight:900;font-size:32px;margin:0 0 16px;text-transform:uppercase;letter-spacing:1px}
.lead{opacity:.9}
.accent{color:var(--pink);font-weight:900}

/* Split/two-col */
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center}
.split.reverse{grid-template-columns:.9fr 1.1fr}
.split img{width:100%;border-radius:12px}

/* Phone mockup */
.phone-wrap{display:flex;justify-content:center}
.phone{width:320px;height:640px;border-radius:34px;background:#0a0a0a;padding:18px;border:6px solid #070707;box-shadow:0 30px 80px rgba(0,0,0,.6)}
.phone-screen{width:100%;height:100%;overflow:hidden;border-radius:18px;background:#000}
.phone-screen video{width:100%;height:100%;object-fit:cover}

/* Bullets simples */
.bullets{margin:14px 0 0 0;padding:0 0 0 18px}
.bullets li{margin:8px 0}

/* ===== SOBRE VANESSA ===== */
#sobre .split-media img {
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  object-fit: cover;
}
#sobre .split-text p {
  margin-bottom: 12px;
  line-height: 1.05;
}

/* Galeria antes/depois */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 18px;
}

.before-after {
  background: #0b0b0b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Definindo altura fixa para alinhar tudo */
.before-after img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Legenda */
.before-after figcaption {
  text-align: center;
  padding: 12px;
  background: rgba(0,0,0,.45);
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  width: 100%;
}

/* Responsividade */
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Planos */
.plans{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:20px}
.plan{background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));padding:24px;border-radius:14px;border:1px solid rgba(255,255,255,.06);position:relative}
.plan .price{font-size:20px;font-weight:900;margin:8px 0 12px}
.plan .ribbon{position:absolute;top:12px;left:12px;background:var(--pink);padding:6px 10px;border-radius:8px;font-weight:900}
.featured{box-shadow:0 24px 60px rgba(255,29,170,.08);transform:translateY(-6px)}

/* CTA final */
.final-cta{background:linear-gradient(180deg,#070707,#050505)}
.cta-flex{display:flex;gap:24px;align-items:center}
.cta-photo{width:300px;border-radius:16px;object-fit:cover}

/* Rodapé */
.site-footer{padding:28px 0;background:#060606;border-top:1px solid rgba(255,255,255,.06);text-align:center}
.footer-row{display:flex;gap:20px;justify-content:space-between;align-items:center;flex-wrap:wrap}
.footer-row a{color:var(--pink)}
.copyright{opacity:.7;margin-top:8px}

/* ====== Responsivo ====== */
@media (max-width:1100px){
  .pose{width:min(40vw,360px)}
  .hero-photo{width:min(52vw,520px)}
}
@media (max-width:900px){
  .hero-inner{padding:80px 20px 40px}
  .split,.split.reverse{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .plans{grid-template-columns:1fr}
  .cta-flex{flex-direction:column}
}
@media (max-width:560px){
  h2{font-size:22px}
  .title-impact{font-size:44px;-webkit-text-stroke:1.5px #000}
  .floating-actions{right:12px;bottom:12px}
}

.avant {
  color: #75756a;
}
