.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  color: white;
  background: #0a0a0a;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.86) 36%, rgba(5, 5, 5, 0.22) 69%, rgba(5, 5, 5, 0.06) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.84) 0%, transparent 35%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 840px;
  align-items: center;
  padding-top: calc(var(--header-height) + 34px);
  padding-bottom: 130px;
}

.hero-content {
  width: min(750px, 70%);
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 6vw, 5.65rem);
  line-height: 0.97;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: #e3e3df;
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
  line-height: 1.6;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
  color: #f1f1ed;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-benefits span {
  color: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 7, 7, 0.7);
  backdrop-filter: blur(12px);
}

.hero-rail-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-rail p {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  margin: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-rail p:first-child {
  padding-left: 0;
}

.hero-rail p:last-child {
  border-right: 0;
}

.hero-rail strong {
  color: var(--orange);
  font-size: 0.75rem;
}

.services {
  position: relative;
  overflow: hidden;
}

.services::after {
  position: absolute;
  z-index: -1;
  top: 80px;
  right: -150px;
  width: 400px;
  height: 400px;
  border: 1px solid #e3e3df;
  border-radius: 50%;
  content: "";
}

.service-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-panel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.service-panel--dark {
  display: flex;
  align-items: end;
  color: white;
  background:
    linear-gradient(155deg, transparent 0 37%, rgba(255, 90, 0, 0.13) 37% 38%, transparent 38%),
    var(--ink);
}

.service-panel--dark::before {
  position: absolute;
  top: -75px;
  right: -55px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 90, 0, 0.55);
  border-radius: 50%;
  content: "";
}

.service-panel--campanas {
  display: grid;
  grid-template-rows: 47% 53%;
  align-items: stretch;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.service-panel--campanas::before {
  display: none;
}

.service-panel--photo {
  display: grid;
  grid-template-rows: 47% 53%;
  background: white;
  box-shadow: var(--shadow);
}

.service-photo-wrap {
  position: relative;
  overflow: hidden;
}

.service-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-photo-wrap--campanas::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(17, 17, 17, 0.42));
  pointer-events: none;
}

.service-photo-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: white;
  background: var(--ink);
  border-left: 3px solid var(--orange);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-copy {
  position: relative;
  z-index: 2;
  padding: 44px;
}

.service-panel--dark .service-copy {
  padding-top: 130px;
}

.service-panel--campanas .service-copy {
  padding-top: 44px;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--orange);
  font-family: "Arial Black", sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
  opacity: 0.95;
  z-index: 3;
}

.service-panel--campanas .service-number {
  top: 32px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.service-panel--photo .service-number {
  top: 32px;
  color: #ecece8;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 34px;
  padding: 12px;
  border: 1px solid rgba(255, 90, 0, 0.7);
  border-radius: 50%;
}

.service-icon svg {
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-copy h3 {
  max-width: 470px;
  margin-bottom: 18px;
  font-family: "Arial Black", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.05rem);
}

.service-copy > p:not(.kicker) {
  max-width: 470px;
  margin-bottom: 25px;
  color: #c8c8c4;
}

.service-panel--photo .service-copy > p:not(.kicker) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
  font-size: 0.9rem;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

.check-list--dark {
  color: #3f3f3d;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  color: white;
  border-bottom: 1px solid var(--orange);
  font-size: 0.84rem;
  font-weight: 800;
}

.text-link--dark {
  color: var(--ink);
}

.assurance {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.assurance::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 8px;
  content: "";
  background: var(--orange);
}

.assurance-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.assurance-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.assurance-intro h2 {
  margin-bottom: 24px;
}

.assurance-intro > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: #b8b8b4;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.assurance-item {
  min-height: 260px;
  padding: 34px;
  border-top: 1px solid #3a3a38;
  border-left: 1px solid #3a3a38;
}

.assurance-item:nth-child(even) {
  border-right: 1px solid #3a3a38;
}

.assurance-item:nth-last-child(-n + 2) {
  border-bottom: 1px solid #3a3a38;
}

.assurance-index {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 54px;
  color: var(--orange);
  border: 1px solid #555;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.assurance-item h3 {
  margin-bottom: 12px;
}

.assurance-item p {
  margin-bottom: 0;
  color: #a9a9a5;
  font-size: 0.92rem;
}

.sectors {
  background: #ededE8;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cacaC5;
  border-bottom: 1px solid #cacaC5;
}

.sector-item {
  min-height: 280px;
  padding: 30px 26px;
  border-right: 1px solid #cacaC5;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.sector-item:last-child {
  border-right: 0;
}

.sector-item span {
  display: block;
  margin-bottom: 98px;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 900;
}

.sector-item h3 {
  margin-bottom: 10px;
}

.sector-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.process {
  background: white;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 240px;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.process-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-list li::before {
  position: absolute;
  top: 17px;
  right: -6px;
  z-index: 1;
  width: 11px;
  height: 11px;
  border: 3px solid white;
  border-radius: 50%;
  content: "";
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.process-list li:last-child::before {
  display: none;
}

.process-list li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 90px;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 8px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact {
  position: relative;
  overflow: hidden;
  color: white;
  background: #151515;
}

.contact::after {
  position: absolute;
  right: -190px;
  bottom: -330px;
  width: 700px;
  height: 700px;
  border: 2px solid rgba(255, 90, 0, 0.22);
  border-radius: 50%;
  content: "";
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: start;
}

.contact-copy {
  padding-top: 36px;
}

.contact-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
}

.contact-copy > p:not(.eyebrow):not(.coverage) {
  color: #b8b8b3;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 0;
  margin: 40px 0 22px;
  border-top: 1px solid #3d3d3a;
  border-bottom: 1px solid #3d3d3a;
}

.contact-channel-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-size: 1.3rem;
}

.contact-channel small {
  display: block;
  color: #999995;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-channel a {
  font-size: 1.35rem;
  font-weight: 800;
}

.coverage {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
}

.coverage span {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(30, 164, 99, 0.12);
}

.quote-form {
  padding: 42px;
  color: var(--ink);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading strong {
  color: var(--orange-dark);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.73rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid #d3d3ce;
  border-radius: 4px;
  outline: none;
  background: #fbfbf9;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9b9b97;
}

.button--submit {
  width: 100%;
  margin-top: 24px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 10px 0 -10px;
  color: #3e6f54;
  font-size: 0.78rem;
  text-align: center;
}

.site-footer {
  color: white;
  background: #080808;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.8fr;
  gap: 60px;
  padding-block: 64px;
}

.brand--footer {
  color: white;
  align-self: start;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 5px;
  font-size: 0.88rem;
}

.footer-contact p {
  margin-bottom: 10px;
  color: #777773;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact span {
  color: #b9b9b5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  color: #7f7f7b;
  border-top: 1px solid #282826;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom i {
  padding-inline: 6px;
  color: var(--orange);
  font-style: normal;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: white;
  background: #1fa463;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-whatsapp svg {
  width: 25px;
}

html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

html.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

