/* ============================================
   SEGURIDAD PRIVADA SOLIDEZ — Estilos globales
   ============================================ */

:root {
  --navy-900: #060d1a;
  --navy-800: #0a1628;
  --navy-700: #122240;
  --navy-600: #1a3058;
  --gold-500: #c9a227;
  --gold-400: #dbb84a;
  --gold-300: #e8cc6e;
  --slate-100: #f0f4f8;
  --slate-200: #dce3ec;
  --slate-400: #8a9bb0;
  --slate-600: #5a6d82;
  --white: #ffffff;
  --success: #2d8a5e;
  --shadow: 0 4px 24px rgba(6, 13, 26, 0.18);
  --shadow-lg: 0 12px 48px rgba(6, 13, 26, 0.28);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --container-content: 80%;
  --container-header: 90%;
  --toolbar-height: 40px;
  --header-height: 88px;
  --site-header-total: calc(var(--toolbar-height) + var(--header-height));
  --whatsapp-green: #25d366;
  --whatsapp-green-dark: #128c7e;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--navy-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---- Tipografía ---- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.lead {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 60ch;
}

.gold { color: var(--gold-500); }

/* ---- Layout ---- */

.container {
  width: min(var(--container-content), 100% - 2rem);
  margin-inline: auto;
}

.toolbar > .container,
.header > .container {
  width: min(var(--container-header), 100% - 2rem);
}

.section {
  padding: 5rem 0;
  scroll-margin-top: var(--site-header-total);
}

.section--pull-up {
  margin-top: -50px;
}

.section--dark {
  background: var(--navy-800);
  color: var(--white);
}

.section--sectors {
  position: relative;
  overflow: hidden;
}

.section--sectors::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6, 13, 26, 0.88) 0%, rgba(10, 22, 40, 0.8) 50%, rgba(6, 13, 26, 0.9) 100%),
    url("../assets/foto-005.png") center center / cover no-repeat;
  z-index: 0;
}

.section--sectors > .container {
  position: relative;
  z-index: 1;
}

.section--light {
  background: var(--slate-100);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__header p {
  margin-top: 1rem;
  color: var(--slate-600);
  max-width: 55ch;
  margin-inline: auto;
}

.section--dark .section__header p {
  color: var(--slate-400);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

/* ---- Botones ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.btn--primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

.btn--dark {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.btn--dark:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ---- Toolbar ---- */

.toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--toolbar-height);
  background: var(--navy-900);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.toolbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.toolbar__group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.toolbar__link,
.toolbar__text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #c5d0dc;
  transition: var(--transition);
  white-space: nowrap;
}

.toolbar__link:hover {
  color: var(--white);
}

.toolbar__link--wa {
  color: #5fe89e;
  font-weight: 600;
}

.toolbar__link--wa:hover {
  color: #86efac;
}

.toolbar__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: currentColor;
}

/* ---- Header / Nav ---- */

.header {
  position: fixed;
  top: var(--toolbar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 1px 12px rgba(6, 13, 26, 0.06);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo__img {
  height: 72px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer .logo__img--footer {
  height: 56px;
  width: 56px;
  filter: brightness(0) invert(1);
}

.logo__name--header {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.6vw, 1.05rem);
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.02em;
  line-height: 1.25;
  max-width: 14rem;
}

.header .logo__name--header {
  color: var(--navy-900);
}

.header .logo__highlight {
  color: #7a6210;
  font-weight: 800;
}

.logo__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--navy-900);
  font-weight: 800;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer .logo__name {
  color: var(--white);
}

.logo__tagline {
  font-size: 0.65rem;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-900);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: #7a6210;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-800);
  transition: var(--transition);
}

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  background: var(--navy-900);
  overflow: hidden;
  padding-top: var(--site-header-total);
}

.hero__container {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--site-header-total) - 100px);
  display: flex;
  align-items: center;
  padding-block: 3rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6, 13, 26, 0.88) 0%, rgba(10, 22, 40, 0.78) 45%, rgba(6, 13, 26, 0.85) 100%),
    url("../assets/foto-004.jpg") center center / cover no-repeat;
}

.hero__accent {
  position: absolute;
  right: -10%;
  top: 20%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__shield {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 30vw, 380px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 52rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-500);
}

.hero__desc {
  font-size: 1.125rem;
  color: var(--slate-400);
  margin-bottom: 2.5rem;
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 0.25rem;
}

/* ---- Page Hero (subpages) ---- */

.page-hero {
  background: var(--navy-800);
  padding: calc(var(--site-header-total) + 3rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
}

.page-hero h1 {
  color: var(--white);
  position: relative;
}

.page-hero p {
  color: var(--slate-400);
  margin-top: 1rem;
  max-width: 55ch;
  margin-inline: auto;
  position: relative;
}

/* ---- Cards ---- */

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--navy-800);
}

.card p {
  color: var(--slate-600);
  font-size: 0.9375rem;
}

.card--dark {
  background: var(--navy-700);
  border-color: rgba(255, 255, 255, 0.08);
}

.card--dark h3 { color: var(--white); }
.card--dark p { color: var(--slate-400); }

.card--dark .card__icon {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
}

/* ---- Service items ---- */

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  transition: var(--transition);
}

.service-item:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow);
}

.service-item__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-500);
  opacity: 0.4;
  line-height: 1;
}

.service-item h3 {
  margin-bottom: 0.5rem;
}

.service-item p {
  color: var(--slate-600);
  font-size: 0.9375rem;
}

.service-item ul {
  margin-top: 0.75rem;
}

.service-item li {
  color: var(--slate-600);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-item li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 700;
}

/* ---- Product cards ---- */

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-500);
}

.product-card__img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.product-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(6, 13, 26, 0.3));
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.5rem;
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.875rem;
  color: var(--slate-600);
  margin-bottom: 1rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ---- About / Features ---- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-grid__visual {
  position: relative;
}

.about-box {
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
}

.about-box h3 {
  color: var(--gold-500);
  margin-bottom: 1rem;
  position: relative;
}

.about-box p {
  color: var(--slate-400);
  font-size: 0.9375rem;
  position: relative;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-list__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-list__icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 162, 39, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-list__item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-list__item p {
  font-size: 0.875rem;
  color: var(--slate-600);
}

/* ---- CTA Banner ---- */

.cta-banner {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6, 13, 26, 0.84) 0%, rgba(10, 22, 40, 0.78) 50%, rgba(6, 13, 26, 0.86) 100%),
    url("../assets/foto-003.jpg") center center / cover no-repeat;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: var(--slate-400);
  margin-bottom: 2rem;
  max-width: 50ch;
  margin-inline: auto;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ---- Contact ---- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--navy-800);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info__item h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  margin-bottom: 0.25rem;
}

.contact-info__item p {
  color: var(--slate-600);
  font-size: 0.9375rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: var(--transition);
  background: var(--slate-100);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---- Footer ---- */

.footer {
  background: var(--navy-900);
  color: var(--slate-400);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer .logo__name { font-size: 1.1rem; }

.footer__desc {
  font-size: 0.875rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  margin-bottom: 1.25rem;
}

.footer__links {
  list-style: disc;
  padding-left: 1.15rem;
}

.footer__links li {
  margin-bottom: 0.6rem;
  padding-left: 0.25rem;
}

.footer__links li::marker {
  color: var(--gold-500);
}

.footer__links a {
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--gold-500);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer__legal {
  opacity: 0.7;
}

.footer__bottom-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.footer__privacy-link {
  color: var(--gold-500);
  transition: var(--transition);
}

.footer__privacy-link:hover {
  color: var(--gold-400);
}

/* ---- Página legal ---- */

.legal-page {
  padding-top: 3rem;
}

.legal-content {
  max-width: 780px;
  margin-inline: auto;
}

.legal-content__intro {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--slate-200);
}

.legal-content h2 {
  font-size: 1.35rem;
  color: var(--navy-800);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-700);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: var(--slate-600);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.legal-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-list li {
  color: var(--slate-600);
  font-size: 0.9375rem;
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--gold-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--navy-800);
}

.legal-content__contact {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--slate-100);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold-500);
}

.legal-content__contact p {
  margin-bottom: 0.5rem;
}

.legal-content__contact p:last-child {
  margin-bottom: 0;
}

/* ---- WhatsApp gadget ---- */

.whatsapp-gadget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
}

.whatsapp-gadget__card {
  position: absolute;
  bottom: calc(100% + 1rem);
  right: 0;
  width: min(320px, calc(100vw - 2rem));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: var(--transition);
  border: 1px solid var(--slate-200);
}

.whatsapp-gadget__card--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-gadget__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border: none;
  background: var(--slate-100);
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--slate-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-gadget__close:hover {
  background: var(--slate-200);
  color: var(--navy-800);
}

.whatsapp-gadget__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-right: 1.5rem;
}

.whatsapp-gadget__avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 2px solid var(--gold-500);
}

.whatsapp-gadget__header strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy-800);
  line-height: 1.3;
}

.whatsapp-gadget__status {
  display: block;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 500;
}

.whatsapp-gadget__status::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  margin-right: 0.35rem;
  vertical-align: middle;
}

.whatsapp-gadget__bubble {
  background: #e7fce8;
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: var(--navy-800);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.whatsapp-gadget__chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--whatsapp-green);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.whatsapp-gadget__chat:hover {
  background: var(--whatsapp-green-dark);
  color: var(--white);
}

.whatsapp-gadget__chat svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.whatsapp-gadget__fab {
  position: relative;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-gadget__fab:hover {
  background: var(--whatsapp-green-dark);
  transform: scale(1.05);
}

.whatsapp-gadget__fab svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-gadget__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp-green);
  animation: whatsapp-pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ---- Process steps ---- */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-step__circle {
  width: 64px;
  height: 64px;
  background: var(--navy-800);
  border: 3px solid var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-500);
  margin: 0 auto 1.25rem;
}

.process-step h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--slate-600);
}

/* ---- Category filter ---- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--slate-200);
  border-radius: 100px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--slate-600);
}

.filter-btn:hover,
.filter-btn--active {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
}

/* ---- Trust badges ---- */

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.trust-badge__icon {
  font-size: 1.5rem;
}

/* ---- Responsive ---- */

@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    gap: 2rem;
  }

  .hero__shield {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --toolbar-height: 36px;
  }

  .toolbar__link--hide-mobile,
  .toolbar__text--hide-mobile {
    display: none;
  }

  .toolbar__group {
    gap: 0.75rem;
  }

  .nav {
    position: fixed;
    top: var(--site-header-total);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow);
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__link {
    padding: 0.875rem 0;
    width: 100%;
    border-bottom: 1px solid var(--slate-200);
  }

  .logo__img {
    height: 58px;
  }

  .logo__name--header {
    font-size: 0.72rem;
    max-width: 9.5rem;
  }

  .nav__cta {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle--open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle--open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: 3.5rem 0;
  }

  .cta-banner {
    padding: 2.5rem 1.5rem;
  }

  .whatsapp-gadget {
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-gadget__fab {
    width: 56px;
    height: 56px;
  }
}
