:root {
  --azul: #0072bc;
  --azul2: #0d8fd3;
  --azulOsc: #082946;
  --verde: #72c943;
  --verde2: #a8df57;
  --naranja: #f59b12;
  --celeste: #eef8ff;
  --gris: #f5f8fc;
  --borde: #dfe8f2;
  --texto: #16243b;
  --muted: #657487;
  --shadow: 0 14px 34px rgba(10, 35, 70, 0.10);
  --shadow2: 0 8px 20px rgba(10, 35, 70, 0.075);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--texto);
  background: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font-family: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* BARRAS SUPERIORES */
.top-strip {
  background: linear-gradient(90deg, #128fd0, #68bf42);
  color: white;
  font-size: 10.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  overflow: hidden;
}

.top-strip .container {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  white-space: nowrap;
}

.topbar {
  background: #062743;
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.top-info,
.top-social {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-social a {
  width: 29px;
  height: 29px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.2s ease;
}

.top-social a:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* HEADER */
.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 22px rgba(12, 35, 70, 0.08);
  border-bottom: 1px solid rgba(223, 232, 242, 0.95);
}

.nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: 64px;
  height: auto;
}

.brand strong {
  display: block;
  color: #173a5f;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 900;
}

.brand small {
  display: block;
  color: #50708f;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #243a59;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 22px 0;
  position: relative;
  line-height: 1;
}

.nav-link:hover,
.nav-link.active {
  color: var(--azul);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 11px;
  width: 100%;
  height: 4px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--azul), var(--verde), var(--naranja));
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 410px;
  background: white;
  border: 1px solid var(--borde);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transition: 0.18s ease;
  z-index: 1002;
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.drop-btn {
  border: 1px solid var(--borde);
  background: #fff;
  border-radius: 13px;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: 0.2s ease;
}

.drop-btn:hover {
  background: var(--celeste);
  transform: translateY(-2px);
}

.drop-btn i {
  width: 33px;
  height: 33px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  flex: 0 0 33px;
  background: linear-gradient(135deg, var(--azul), var(--azul2));
}

.drop-btn b {
  display: block;
  color: #173350;
  font-size: 13px;
  margin-bottom: 3px;
  font-weight: 900;
}

.drop-btn small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.search-btn,
.back-site-btn {
  height: 39px;
  border-radius: 10px;
  padding: 0 14px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.search-btn {
  background: white;
  color: var(--azul);
  border: 1px solid #cfe0ef;
}

.back-site-btn {
  background: linear-gradient(135deg, var(--azul), var(--azul2));
  color: white;
  box-shadow: 0 10px 20px rgba(0, 114, 188, 0.18);
}

.hamb {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--azul);
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* HERO */
.hab-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 5%, rgba(255, 255, 255, 0.24) 0 110px, transparent 112px),
    radial-gradient(circle at 96% 92%, rgba(114, 201, 67, 0.42) 0 230px, transparent 232px),
    linear-gradient(135deg, #074b78 0%, #0072bc 52%, #72c943 100%);
  color: white;
  padding: 38px 0 32px;
}

.hab-hero::before {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  pointer-events: none;
}

.hab-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}

.hero-kicker,
.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .28);
  color: white;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 12px;
}

.hab-hero h1 {
  font-size: clamp(42px, 5.4vw, 66px);
  line-height: .92;
  letter-spacing: -2.3px;
  font-weight: 950;
  margin-bottom: 12px;
}

.hab-hero h1 span {
  display: block;
  color: #c7f36b;
}

.hab-hero p {
  max-width: 700px;
  color: #eef8ff;
  font-size: 15px;
  line-height: 1.48;
  font-weight: 750;
  margin-bottom: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  border: 0;
  border-radius: 11px;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  transition: 0.2s ease;
  line-height: 1.1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--azul);
}

.btn-green {
  background: linear-gradient(135deg, var(--verde), var(--verde2));
  color: white;
}

.hero-panel {
  justify-self: end;
  width: min(430px, 100%);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .30);
  box-shadow: 0 24px 60px rgba(7, 30, 58, .22);
  backdrop-filter: blur(5px);
}

.hero-panel-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  font-size: 25px;
  margin-bottom: 12px;
}

.hero-panel h2 {
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -.7px;
  margin-bottom: 8px;
}

.hero-panel p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.45;
}

/* INTRO */
.intro-section {
  padding: 24px 0 12px;
}

.intro-head {
  display: grid;
  grid-template-columns: 1fr minmax(290px, 390px);
  gap: 20px;
  align-items: end;
}

.mini-kicker {
  color: var(--azul);
  background: #eef8ff;
  border: 0;
  margin-bottom: 9px;
}

.intro-head h2 {
  color: #082946;
  font-size: 34px;
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -1px;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 10px;
}

.intro-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--azul), var(--verde), var(--naranja));
}

.intro-head p {
  color: #617185;
  max-width: 790px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.local-search {
  height: 46px;
  border-radius: 15px;
  border: 1px solid #d5e5f4;
  background: #ffffff;
  box-shadow: var(--shadow2);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}

.local-search i {
  color: var(--azul);
  font-size: 20px;
}

.local-search input {
  border: 0;
  outline: 0;
  width: 100%;
  color: #233b58;
  font-size: 13.5px;
  font-weight: 750;
}

/* CONTENIDO */
.hab-shell {
  padding: 12px 0 32px;
}

.tabs-card {
  border-radius: 24px;
  border: 1px solid #dfe8f2;
  background: #ffffff;
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.tabs-head {
  padding: 19px 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  border-bottom: 1px solid #dfe8f2;
}

.tabs-head h2 {
  color: #082946;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 950;
}

.tabs-head p {
  color: #657487;
  font-size: 13px;
  font-weight: 700;
}

.tabs-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #f7fbff;
  border-bottom: 1px solid #dfe8f2;
}

.tab-btn {
  min-height: 72px;
  border: 0;
  border-right: 1px solid #dfe8f2;
  background: transparent;
  color: #31445f;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 10px 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  transition: .18s ease;
}

.tab-btn:last-child {
  border-right: 0;
}

.tab-btn i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eef8ff;
  color: var(--azul);
  font-size: 17px;
}

.tab-btn:hover {
  background: #ffffff;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--azul), var(--azul2));
  color: #ffffff;
}

.tab-btn.active i {
  background: rgba(255, 255, 255, .18);
  color: #ffffff;
}

.tab-content {
  padding: 20px;
}

.hab-panel {
  display: none;
  animation: fadeIn .18s ease both;
}

.hab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-title {
  margin-bottom: 16px;
}

.panel-title span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef8ff;
  color: var(--azul);
  font-size: 10.5px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 9px;
}

.panel-title h3 {
  color: #082946;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.04;
  letter-spacing: -.9px;
  font-weight: 950;
  margin-bottom: 7px;
}

.panel-title p {
  color: #657487;
  font-size: 14px;
  line-height: 1.48;
  font-weight: 700;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: start;
}

.req-card,
.benefit-card {
  border-radius: 22px;
  border: 1px solid #dfe8f2;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(10, 35, 70, .06);
  padding: 18px;
}

.req-card.soft {
  background:
    radial-gradient(circle at 96% 0%, rgba(114, 201, 67, .09) 0 100px, transparent 102px),
    linear-gradient(135deg, #fbfdff, #ffffff);
}

.req-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #082946;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
  margin-bottom: 12px;
}

.req-card h4 i {
  color: var(--azul);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 9px;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: #415772;
  font-size: 13.4px;
  line-height: 1.42;
  font-weight: 720;
}

.check-list li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf8e3;
  color: var(--verde);
  font-size: 12px;
  font-weight: 900;
}

.action-box {
  margin-top: 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 95% 0%, rgba(255,255,255,.22) 0 70px, transparent 72px),
    linear-gradient(135deg, #082946, #0072bc 58%, #72c943);
  color: #ffffff;
  padding: 17px;
}

.action-box strong {
  display: block;
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 6px;
}

.action-box p {
  color: #eef8ff;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 700;
  margin-bottom: 11px;
}

.action-box a {
  min-height: 34px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--azul);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 950;
}

/* BENEFICIO */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(0, 114, 188, .055);
}

.benefit-card > span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--azul), var(--azul2));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 950;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.benefit-card h4 {
  color: #082946;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.35px;
  font-weight: 950;
  margin-bottom: 11px;
  position: relative;
  z-index: 2;
}

.benefit-card .check-list {
  position: relative;
  z-index: 2;
}

/* NOTA */
.remember-box {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid #ffd89d;
  background: #fff8ec;
  color: #7a4a00;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.remember-box i {
  color: var(--naranja);
  font-size: 23px;
}

.remember-box p {
  font-size: 13px;
  line-height: 1.48;
  font-weight: 750;
}

/* FOOTER */
footer {
  background: #081d37;
  color: white;
  margin-top: 24px;
  padding-top: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1fr;
  gap: 22px;
  padding-bottom: 28px;
}

.footer-brand img {
  width: 95px;
  background: white;
  border-radius: 10px;
  padding: 6px;
  margin-bottom: 12px;
}

footer h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

footer p,
footer li {
  font-size: 13px;
  line-height: 1.7;
  color: #d2dbe8;
  list-style: none;
}

.numbers {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
}

.numbers li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.numbers b {
  color: #ffb427;
}

.footer-bottom {
  background: #061426;
  color: #d2dbe8;
  padding: 12px 0;
  font-size: 12px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* FLOTANTES */
.float-help,
.float-wp {
  position: fixed;
  right: 18px;
  z-index: 2500;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.20);
}

.float-help {
  bottom: 92px;
  width: 64px;
  height: 64px;
  background: #ffffff;
  border: 4px solid #dff3ff;
  overflow: hidden;
  padding: 0;
  animation: toroFloat 2.5s ease-in-out infinite;
}

.float-help img,
#assistantToro {
  width: 54px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
  transform: scale(0.92);
}

.assistant-bubble {
  position: fixed;
  right: 88px;
  bottom: 106px;
  z-index: 2499;
  background: #ffffff;
  color: #07182d;
  border: 1px solid var(--borde);
  border-radius: 999px;
  padding: 9px 13px;
  box-shadow: var(--shadow2);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.assistant-bubble::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 7px solid #ffffff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.float-wp {
  bottom: 18px;
  width: 58px;
  height: 58px;
  background: #25d366;
  font-size: 30px;
}

@keyframes toroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .menu {
    gap: 14px;
  }

  .hab-hero-grid,
  .intro-head,
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-self: stretch;
    width: 100%;
  }

  .tabs-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .top-strip,
  .topbar {
    display: none;
  }

  .container {
    width: min(94%, 520px);
  }

  .nav {
    min-height: 64px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    gap: 7px;
  }

  .brand img {
    width: 48px;
    flex: 0 0 48px;
  }

  .brand strong {
    font-size: 12px;
    max-width: 130px;
  }

  .brand small {
    display: none;
  }

  .hamb {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
  }

  .menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px;
    gap: 0;
    transform: translateY(-140%);
    transition: 0.25s ease;
    max-height: calc(100vh - 64px);
    overflow: auto;
  }

  .menu.open {
    transform: translateY(0);
  }

  .nav-link {
    padding: 12px 0;
    justify-content: space-between;
    width: 100%;
  }

  .nav-link.active::after {
    display: none;
  }

  .dropdown {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    margin: 4px 0 10px;
  }

  .nav-item.open .dropdown {
    display: block;
    transform: none;
  }

  .nav-item:hover .dropdown {
    transform: none;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    margin-left: auto;
    gap: 6px;
  }

  .search-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    border-radius: 12px;
    font-size: 0;
  }

  .search-btn i {
    font-size: 18px;
  }

  .back-site-btn {
    display: none;
  }

  .hab-hero {
    padding: 28px 0 24px;
  }

  .hab-hero h1 {
    font-size: 38px;
    letter-spacing: -1.4px;
  }

  .hab-hero p {
    font-size: 13.5px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 40px;
  }

  .hero-panel {
    padding: 17px;
    border-radius: 20px;
  }

  .intro-section {
    padding-top: 20px;
  }

  .intro-head h2 {
    font-size: 28px;
  }

  .intro-head p {
    font-size: 13px;
  }

  .local-search {
    height: 44px;
  }

  .tabs-head {
    display: block;
    padding: 16px;
  }

  .tabs-head h2 {
    font-size: 22px;
    margin-bottom: 5px;
  }

  .tabs-row {
    grid-template-columns: 1fr;
  }

  .tab-btn {
    min-height: 54px;
    display: flex;
    justify-content: flex-start;
    text-align: left;
    padding: 10px 14px;
    border-right: 0;
    border-bottom: 1px solid #dfe8f2;
  }

  .tab-btn i {
    min-width: 34px;
  }

  .tab-content {
    padding: 16px;
  }

  .panel-title h3 {
    font-size: 24px;
  }

  .panel-title p,
  .check-list li {
    font-size: 12.8px;
  }

  .req-card,
  .benefit-card {
    padding: 16px;
    border-radius: 20px;
  }

  .remember-box {
    border-radius: 16px;
    padding: 14px;
  }

  .remember-box p {
    font-size: 12.5px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .float-help {
    width: 56px;
    height: 56px;
    right: 15px;
    bottom: 82px;
  }

  .float-help img,
  #assistantToro {
    width: 48px;
    height: 48px;
  }

  .assistant-bubble {
    display: none;
  }

  .float-wp {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 18px;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 42px;
    flex-basis: 42px;
  }

  .brand strong {
    font-size: 11.5px;
    max-width: 116px;
  }

  .hab-hero h1 {
    font-size: 34px;
  }
}

/* ===== V2 PORTADA COMO TRANSPARENCIA + HEADER HABILITACIONES + TORO ===== */
/* Portada centrada como Gobierno Abierto, menú Habilitaciones y toro corregido */

/* PORTADA SIMPLE TIPO TRANSPARENCIA */
.hab-hero {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 88% 3%, rgba(255, 255, 255, 0.22) 0 110px, transparent 112px),
    radial-gradient(circle at 94% 92%, rgba(114, 201, 67, 0.38) 0 230px, transparent 232px),
    linear-gradient(135deg, #074b78 0%, #0072bc 52%, #72c943 100%) !important;
  color: #ffffff !important;
  padding: 30px 0 28px !important;
  text-align: center !important;
}

.hab-hero::before {
  content: "" !important;
  position: absolute !important;
  right: -90px !important;
  top: -90px !important;
  width: 340px !important;
  height: 340px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.11) !important;
  pointer-events: none !important;
}

.hab-hero-simple .hab-hero-center {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  place-items: center !important;
  min-height: 88px !important;
}

.hab-hero h1 {
  max-width: 100% !important;
  margin: 0 auto 10px !important;
  text-align: center !important;
  font-size: clamp(34px, 4.3vw, 50px) !important;
  line-height: 1 !important;
  letter-spacing: -1.4px !important;
}

.hab-hero h1 span {
  display: inline !important;
  color: #c7f36b !important;
}

.hab-hero p {
  max-width: 760px !important;
  margin: 0 auto !important;
  color: #eef8ff !important;
  font-size: 14.5px !important;
  line-height: 1.45 !important;
  font-weight: 800 !important;
  text-align: center !important;
}

/* Ya no se usa panel lateral ni botones en portada */
.hero-kicker,
.hero-actions,
.hero-panel {
  display: none !important;
}

/* HEADER: item activo Habilitaciones */
.nav-link.active {
  color: var(--azul) !important;
}

.nav-link.active::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 11px !important;
  width: 100% !important;
  height: 4px !important;
  border-radius: 6px !important;
  background: linear-gradient(90deg, var(--azul), var(--verde), var(--naranja)) !important;
}

/* TORO ASISTENTE */
.float-help {
  width: 64px !important;
  height: 64px !important;
  right: 18px !important;
  bottom: 92px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 4px solid #dff3ff !important;
  overflow: hidden !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.float-help img,
#assistantToro {
  width: 54px !important;
  height: 54px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  max-width: none !important;
  transform: scale(0.92) !important;
}

/* Ajuste de espacio debajo de portada */
.intro-section {
  padding-top: 22px !important;
}

/* Responsive */
@media (max-width: 780px) {
  .hab-hero {
    padding: 25px 0 23px !important;
  }

  .hab-hero-simple .hab-hero-center {
    min-height: 72px !important;
  }

  .hab-hero h1 {
    font-size: 34px !important;
    line-height: 1 !important;
    letter-spacing: -1.2px !important;
  }

  .hab-hero p {
    max-width: 310px !important;
    font-size: 12.5px !important;
    line-height: 1.35 !important;
  }

  .float-help {
    width: 56px !important;
    height: 56px !important;
    right: 15px !important;
    bottom: 82px !important;
  }

  .float-help img,
  #assistantToro {
    width: 48px !important;
    height: 48px !important;
    transform: scale(0.92) !important;
  }
}
