/* ======== ESTRUCTURA Y COLORES ======== */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
  background-color: #fff;
  color: #000;
  scroll-behavior: smooth;
}

/* === Barras laterales === */
.side-bar {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 5;
}
.side-bar.left { left: 0; background-color: #E10600; }
.side-bar.right { right: 0; background-color: #00A859; }

/* NAV */
.nav-spacer { height: 50px; } /* compensar nav fijo */
.navbar { z-index: 1200; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }
.navbar .nav-link { color: #222; margin-left: .5rem; margin-right: .5rem; }
.navbar .nav-link.active { font-weight:700; color:#0033CC; }

/* Franjas horizontales - mantengo tu estilo */
.franja { border-top: 4px dashed #000; border-bottom: 4px dashed #000; padding: 2rem 1rem !important; position: relative; z-index: 10; }
.franja-amarilla { background-color: #FFF200; border-top: none; }
.franja-roja { background-color: #E10600; color: #fff; }
.franja-blanca { background-color: #fff; color: #000; }
.franja-verde { background-color: #00A859; color: #000; }
.franja-azul { background-color: #0033CC; color: #fff; border-bottom: none; }

/* Tipografía y elementos */
h1,h2 { font-weight:800; letter-spacing:1px;}
h2 { margin-bottom: 1.5em !important;}
p { font-size:1.3rem; line-height:1.7; margin-bottom: 2rem !important;}
.testimonial { border-radius: 8px; }
.text-muted, .accordion-button { font-weight: bold;}
.text-muted { letter-spacing:1px;}

/* Foto chica de Claudia */
.clau-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.imagen-flotante {
  float: left; /* O right para la derecha */
  margin-right: 1.5em; /* Espacio a la derecha de la imagen */
  margin-bottom: 3em; /* Espacio debajo si el texto termina */
  max-width: 150px;
}

/* Cards testimonios */
.card.testimonial { border: none; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.06); border-radius: 10px; }


/* Form */
.form-control { border-radius: 10px; border: none; box-shadow: 0 2px 6px rgba(0,0,0,.12); }
.btn { border-radius: 10px; transition: transform .15s ease; }
.btn:hover { transform: translateY(-2px); }

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 8px rgba(0,0,0,.25);
  z-index: 1300;
  display:flex; align-items:center; justify-content:center;
}
.whatsapp-float:hover { background-color:#1ebe5b; text-decoration:none; }

/* Responsive */
@media (max-width: 768px) {
  .side-bar { display: none; }
  .clau-photo { width: 110px; height:110px; }
  .nav-spacer { height: 60px; }
  p { font-size: 1rem; }
}
