.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  min-height: var(--header-height);
  color: var(--color-white);
  background: rgb(9 29 40 / 94%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.brand {
  display: inline-flex;
  flex: none;
  text-decoration: none;
}

.brand-logo {
  width: 13.1rem;
  height: 3.5rem;
  display: block;
  background-image: url("../assets/brand/bravos-logo-transparent.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 139% auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-left: auto;
}

.primary-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: #dce8e4;
  font-size: var(--text-sm);
  font-weight: 650;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.primary-nav a:hover {
  color: var(--color-white);
}

.nav-toggle {
  width: 3rem;
  height: 3rem;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: var(--color-white);
  background: transparent;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.5rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 2;
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 1.35rem;
  flex: none;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: var(--color-white);
  background: var(--color-green-700);
  border-color: var(--color-green-700);
  box-shadow: var(--shadow-green);
}

.button-primary:hover {
  background: #03662d;
  border-color: #03662d;
}

.button-secondary {
  color: var(--color-white);
  background: transparent;
  border-color: rgb(255 255 255 / 38%);
}

.button-secondary:hover {
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 70%);
}

.button-light {
  color: var(--color-navy-950);
  background: var(--color-white);
  border-color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.button-light:hover {
  background: var(--color-mint-50);
}

.button-large {
  min-height: 3.75rem;
  padding-inline: 1.6rem;
}

.button-compact {
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  font-size: var(--text-sm);
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(4.5rem, 8vw, 8rem) 0 0;
  color: #d9e4e2;
  background:
    radial-gradient(circle at 76% 22%, rgb(9 158 68 / 15%), transparent 27rem),
    linear-gradient(140deg, var(--color-navy-950), var(--color-navy-900) 65%, #0b2935);
}

.hero::before,
.site-footer::before {
  position: absolute;
  inset: -12%;
  z-index: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 6%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 6%) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  content: "";
  pointer-events: none;
  transform: translate3d(-3%, -2%, 0) scale(1.06);
  animation: technical-grid-drift 12s ease-in-out infinite alternate;
  will-change: transform;
}

.hero::before {
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 70%), transparent 85%);
}

.hero::after,
.site-footer::after {
  position: absolute;
  z-index: 0;
  width: clamp(19rem, 38vw, 36rem);
  aspect-ratio: 1;
  border: 1px solid rgb(96 223 143 / 28%);
  border-radius: 46% 54% 61% 39% / 52% 40% 60% 48%;
  background:
    radial-gradient(circle at 45% 45%, rgb(9 158 68 / 24%), transparent 63%),
    repeating-radial-gradient(circle at 48% 48%, transparent 0 4.4rem, rgb(96 223 143 / 9%) 4.45rem 4.52rem);
  box-shadow:
    0 0 0 3rem rgb(9 158 68 / 3%),
    0 0 7rem rgb(9 158 68 / 12%);
  content: "";
  pointer-events: none;
  transform: translate3d(0, 0, 0) rotate(-8deg);
  animation: technical-halo-drift 11s ease-in-out infinite alternate;
  will-change: transform;
}

.hero::after {
  display: none;
}

@keyframes technical-grid-drift {
  to {
    transform: translate3d(3%, 2%, 0) scale(1.06);
  }
}

@keyframes technical-halo-drift {
  to {
    transform: translate3d(-4rem, 2.5rem, 0) rotate(8deg) scale(1.04);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-8);
}

.hero h1 {
  max-width: 9ch;
  margin-top: var(--space-5);
  color: var(--color-white);
}

.hero-highlight {
  max-width: 18ch;
  margin-top: var(--space-3);
  color: #7bdfa0;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.lead {
  max-width: 42rem;
  margin-top: var(--space-6);
  color: #cad8d6;
  font-size: var(--text-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.hero-note {
  margin-top: var(--space-4);
  color: #aabbb8;
  font-size: var(--text-sm);
}

.hero-note::before {
  color: #76d79a;
  content: "✓ ";
  font-weight: 800;
}

.hero-media {
  position: relative;
  align-self: end;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  inset: -1rem 1rem 1rem -1rem;
  border: 1px solid rgb(119 220 156 / 34%);
  border-radius: var(--radius-lg);
  content: "";
}

.hero-media img {
  position: relative;
  width: 100%;
  min-height: 38rem;
  object-fit: cover;
  object-position: 52% center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-md);
}

.hero-media-card {
  position: absolute;
  left: -2rem;
  bottom: 2.5rem;
  max-width: 17rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-3);
  padding: var(--space-4);
  color: var(--color-ink);
  background: rgb(255 255 255 / 94%);
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero-media-card .status-dot {
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.35rem;
  background: var(--color-green-600);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(9 158 68 / 15%);
}

.hero-media-card strong,
.hero-media-card small {
  grid-column: 2;
}

.hero-media-card small {
  color: var(--color-muted);
  line-height: 1.4;
}

.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--space-8);
  padding: var(--space-6) 0;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.proof-strip > div {
  display: grid;
  gap: 0.2rem;
  padding-inline: var(--space-5);
  border-left: 1px solid rgb(255 255 255 / 12%);
}

.proof-strip > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-strip strong {
  display: inline-block;
  color: var(--color-white);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  transform-origin: left center;
}

.proof-strip strong.is-counting {
  animation: counter-emphasis 480ms ease-out both;
}

@keyframes counter-emphasis {
  from {
    opacity: 0.45;
    transform: translateY(0.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.proof-strip span {
  color: #afc0bd;
  font-size: var(--text-sm);
}

.proof-strip > p {
  grid-column: 1 / -1;
  margin-top: var(--space-4);
  color: #8fa49f;
  font-size: 0.72rem;
}

.section-light {
  background: var(--color-sand-50);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.situation-card {
  position: relative;
  min-height: 23rem;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.situation-card:hover {
  border-color: #9bcab0;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.situation-card svg {
  width: 3rem;
  height: 3rem;
  padding: 0.65rem;
  color: var(--color-green-700);
  background: var(--color-green-100);
  border-radius: var(--radius-sm);
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.card-index {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  color: #9aaba4;
  font-size: var(--text-sm);
  font-weight: 750;
}

.situation-card h3 {
  margin-top: var(--space-6);
}

.situation-card p {
  margin-top: var(--space-4);
}

.situation-card a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  align-self: flex-start;
  margin-top: auto;
  color: var(--color-green-700);
  font-weight: 750;
  text-decoration: none;
}

.section-navy {
  color: #c8d5d4;
  background: var(--color-navy-900);
}

.section-heading-inverse h2 {
  color: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--space-4);
}

.service-card {
  grid-column: span 2;
  position: relative;
  min-height: 22rem;
  padding: var(--space-6);
  overflow: hidden;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-md);
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.service-card:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.service-card:last-child {
  grid-column: 4 / span 2;
}

.service-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  color: #62e69a;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform var(--transition-base);
}

@media (hover: hover) {
  .service-card:hover {
    background: linear-gradient(145deg, rgb(9 158 68 / 18%), rgb(255 255 255 / 7%));
    border-color: rgb(102 213 143 / 58%);
    box-shadow: 0 1.25rem 3rem rgb(0 0 0 / 22%);
    transform: translateY(-0.35rem);
  }

  .service-card:hover .service-icon {
    transform: translateY(-0.15rem) scale(1.08);
  }
}

.service-number {
  margin-top: var(--space-4);
  color: #86e2a8;
  font-size: var(--text-sm);
  font-weight: 800;
}

.service-card h3 {
  max-width: 20ch;
  margin-top: var(--space-4);
  color: var(--color-white);
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
}

.service-card > p:not(.service-number) {
  max-width: 38rem;
  margin-top: var(--space-4);
}

.service-card ul {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding: 0;
  list-style: none;
}

.service-card li::before {
  margin-right: var(--space-2);
  color: #86e2a8;
  content: "✓";
  font-weight: 800;
}

.section-process {
  background: var(--color-mint-50);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.process-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.text-link,
.recognition-link {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  color: var(--color-green-700);
  font-weight: 800;
  text-decoration: none;
}

.process-list {
  display: grid;
  gap: var(--space-4);
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.process-list li > span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--color-navy-900);
  border-radius: 50%;
  font-weight: 800;
}

.process-list h3 {
  font-size: 1.35rem;
}

.process-list p {
  margin-top: var(--space-3);
}

.field-section {
  background: var(--color-white);
}

.field-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.field-media {
  position: relative;
  margin: 0;
}

.field-media::before {
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: 45%;
  height: 45%;
  border-top: 3px solid var(--color-green-600);
  border-left: 3px solid var(--color-green-600);
  content: "";
}

.field-media img {
  position: relative;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.field-points {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.field-points > div {
  display: grid;
  gap: var(--space-1);
  padding-left: var(--space-4);
  border-left: 3px solid var(--color-green-600);
}

.field-points strong {
  color: var(--color-ink);
}

.field-points span {
  color: var(--color-muted);
}

.authority-section {
  color: #cbd8d5;
  background:
    radial-gradient(circle at 15% 100%, rgb(9 158 68 / 18%), transparent 24rem),
    var(--color-navy-950);
}

.authority-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.authority-copy h2 {
  color: var(--color-white);
}

.authority-copy strong {
  color: var(--color-white);
}

.recognition-link {
  color: #8be3ab;
}

.credential-card {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.credential-card::before {
  position: absolute;
  top: 0;
  left: var(--space-6);
  width: 4rem;
  height: 4px;
  background: var(--color-green-600);
  content: "";
}

.credential-label {
  color: #8be3ab;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credential-card h3 {
  margin-top: var(--space-4);
  color: var(--color-white);
}

.credential-card dl {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.credential-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.credential-card dt {
  color: #91a5a1;
}

.credential-card dd {
  color: var(--color-white);
  font-weight: 700;
  text-align: right;
}

.credential-note {
  margin-top: var(--space-5);
  color: #91a5a1;
  font-size: var(--text-xs);
}

.faq-section {
  background: var(--color-sand-100);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-list {
  border-top: 1px solid #cbd6d1;
}

.faq-list details {
  border-bottom: 1px solid #cbd6d1;
}

.faq-list summary {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  color: var(--color-ink);
  font-size: 1.08rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  width: 2rem;
  height: 2rem;
  display: grid;
  flex: none;
  place-items: center;
  color: var(--color-green-700);
  background: var(--color-white);
  border-radius: 50%;
  content: "+";
  font-size: 1.35rem;
  transition: transform var(--transition-fast);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 48rem;
  padding: 0 var(--space-7) var(--space-5) 0;
}

.final-cta {
  padding-block: var(--space-9);
  color: #c8d8d3;
  background: var(--color-green-700);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-7);
}

.final-cta h2 {
  max-width: 18ch;
  margin-top: var(--space-4);
  color: var(--color-white);
}

.final-cta p:not(.eyebrow) {
  max-width: 43rem;
  margin-top: var(--space-4);
  font-size: var(--text-lg);
}

.final-cta .eyebrow {
  color: var(--color-white);
}

.final-cta .eyebrow span {
  background: var(--color-white);
}

.site-footer {
  position: relative;
  overflow: clip;
  padding: var(--space-8) 0 var(--space-5);
  color: #aebebb;
  background: var(--color-navy-950);
}

.site-footer::before {
  opacity: 0.78;
  mask-image: linear-gradient(to top, rgb(0 0 0 / 75%), transparent 96%);
}

.site-footer::after {
  top: -13rem;
  right: -5rem;
  opacity: 0.85;
}

.footer-grid,
.footer-legal {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: var(--space-7);
}

.brand-footer {
  margin-bottom: var(--space-4);
}

.footer-grid > div:first-child p {
  max-width: 31rem;
}

.footer-grid h2 {
  margin-bottom: var(--space-4);
  color: var(--color-white);
  font-size: var(--text-sm);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-grid a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-3);
  color: #8be3ab;
  font-weight: 700;
}

.footer-grid address {
  font-style: normal;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: var(--space-5);
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: #7f9490;
  font-size: var(--text-xs);
}

.whatsapp-float {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: var(--z-floating);
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.75rem 1rem;
  color: var(--color-white);
  background: var(--color-green-700);
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-green);
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.whatsapp-float:hover {
  background: #03662d;
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 1.65rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
