/* ===========================
   ESTILOS GENERALES
=========================== */
body{
  margin:0;
  font-family: 'Poppins', sans-serif;
  background:#111;
  color:white;
}

h1,h2,h3,h4,p{
  margin:0;
}

/* HERO */
.hero{
  height:100vh;
  background:url("img/hero-johnwilliam.jpg") no-repeat center center/cover;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.hero-box{
  background:rgba(0,0,0,0.55);
  border-radius:22px;
  padding:40px;
  max-width:480px;
  backdrop-filter:blur(6px);
}

.hero-box h1{
  font-size:42px;
  font-weight:700;
  line-height:1.2;
}

.hero-box p{
  margin-top:15px;
  font-size:18px;
}

.btn-hero{
  display:inline-block;
  background:#7DBAC4;
  color:#000;
  text-decoration:none;
  padding:14px 25px;
  border-radius:12px;
  font-weight:700;
  margin-top:28px;
  font-size:18px;
}

/* SERVICIOS */
.servicios{
  padding:60px 20px;
  text-align:center;
}

.serv-grid{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.serv-card{
  background:#1a1a1a;
  padding:25px;
  border-radius:14px;
  border:1px solid #2f2f2f;
}

.serv-card h3{
  font-size:18px;
  margin-bottom:10px;
}

/* GALERIA */
.galeria{
  padding:60px 20px;
  text-align:center;
}

.galeria h2{
  margin-bottom:25px;
}

.galeria .grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.galeria .grid img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:18px;
}

/* BOTONES CTA */
.btn-cta{
  display:inline-block;
  margin-top:22px;
  padding:14px 28px;
  background:transparent;
  border:2px solid #7DBAC4;
  color:#7DBAC4;
  text-decoration:none;
  border-radius:12px;
  font-size:17px;
  font-weight:700;
  transition:0.25s;
}

.btn-cta:hover{
  background:#7DBAC4;
  color:#000;
}

/* FORMULARIO */
.formulario-box{
  max-width:450px;
  margin:0 auto;
  margin-top:25px;
}

.input{
  width:100%;
  background:#fff;
  padding:14px;
  border-radius:12px;
  margin-bottom:14px;
  border:none;
  font-size:16px;
  color:#000;
}

/* TESTIMONIOS */
.testimonios{
  padding:60px 20px;
  text-align:center;
}

.test-grid{
  display:grid;
  gap:20px;
}

.test-card{
  background:#181818;
  padding:25px;
  border-radius:18px;
  border:1px solid #2c2c2c;
}

.test-quote{
  font-size:40px;
  color:#7DBAC4;
}

.test-text{
  margin:10px 0;
  line-height:1.6;
}

.test-name{
  margin-top:5px;
  font-weight:700;
  color:#7DBAC4;
}

/* CTA FINAL */
.cta-final{
  padding:60px 20px;
  background:#07333d;
  text-align:center;
}

.cta-final h2{
  margin-bottom:15px;
}

.cta-final p{
  margin-bottom:20px;
}

/* FOOTER */
.footer-bianky{
  text-align:center;
  padding:40px 20px;
  background:#07333d;
}

.bianky-logo{
  width:70px;
  margin-bottom:8px;
}

.phone{
  color:#ccc;
  font-size:14px;
}

/* CHATBOT – CORREGIDO */
.chat-bubble{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #0E3F47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

/* ICONO DE 3 PUNTOS */
.chat-bubble::before {
    content: "...";
    font-size: 32px;
    color: white;
    font-weight: 700;
    margin-bottom: 4px;
}

/* ELIMINAR CÍRCULO FANTASMA */
.chat-bubble::after {
    display: none !important;
}

.chat-card{
  display:none;
}

/* RESPONSIVE */
@media (max-width: 600px){

  .hero{
    height:100vh;
    padding:25px 15px;
    display:flex;
    justify-content:center;
  }

  .hero-box{
    width:92%;
    padding:30px 20px;
    text-align:center;
  }

  .hero-box h1{
    font-size:30px;
  }

  .galeria .grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .galeria .grid img{
    height:170px;
    border-radius:14px;
  }
}
