

:root {
  --navy: #0b0f4a;       
  --accent: #f28c28;     
  --bg: #f7f7f9;
  --text: #111827;
  --muted: #6b7280;
  --border: rgba(17, 24, 39, 0.08);
  --shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}


.text-navy {
  color: var(--navy) !important;
}

.text-muted-soft {
  color: var(--muted) !important;
}


.navbar {
  backdrop-filter: blur(6px);
}

.navbar-brand span {
  letter-spacing: 0.6px;
}

.nav-link {
  color: rgba(17, 24, 39, 0.75) !important;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--navy) !important;
}


.logo-badge {
  padding: 10px 45px;              /* antes: 6px 10px */
  border-radius: 50px;              /* antes: 14px */
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 115px;                     /* antes: 90px */
  width: auto;
  object-fit: contain;
  display: block;
}



.btn-accent {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #111;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 14px;
}

.btn-accent:hover {
  filter: brightness(0.95);
}


.btn,
.form-control,
.form-select,
.card {
  border-radius: 16px;
}


.section {
  scroll-margin-top: 90px;
}


.card-soft {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}


.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}


footer {
  color: var(--muted);
}

@media (max-width: 768px) {
  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo-badge {
    padding: 8px 12px; /* más aire */
  }

  .brand-logo {
    height: 68px;   /* MÁS grande que antes */
    max-height: 70px;
  }

  .btn-accent {
    width: 100%;
    justify-content: center;
  }
}


/* =========================
   WhatsApp Floating Button
   ========================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #25d366;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  color: #ffffff;
}

.avatar-placeholder {
  height: 48px;
  width: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--navy);
  flex: 0 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

.shadow-sm {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.section img {
  opacity: 0.95;
}
