:root {
  --rdh-navy: #031c3f;
  --rdh-blue: #073f87;
  --rdh-blue-bright: #0b57a5;
  --rdh-green: #71d576;
  --rdh-orange: #ff842d;
  --rdh-white: #ffffff;
  --rdh-muted: #c6d4e4;
}

.refuel-diesel-hero,
.refuel-diesel-hero *,
.refuel-diesel-hero *::before,
.refuel-diesel-hero *::after {
  box-sizing: border-box;
}

.refuel-diesel-hero {
  position: relative;
  width: 100vw;
  min-height: clamp(570px, calc(100svh - 90px), 650px);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  color: var(--rdh-white);
  background: var(--rdh-navy);
  font-family: inherit;
  isolation: isolate;
}

.refuel-diesel-hero a {
  text-decoration: none;
}

.refuel-diesel-hero svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.refuel-diesel-hero__media,
.refuel-diesel-hero__veil,
.refuel-diesel-hero__motion {
  position: absolute;
  inset: 0;
}

.refuel-diesel-hero__media {
  z-index: -3;
  left: 47%;
  overflow: hidden;
}

.refuel-diesel-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(3, 29, 64, 0.04), rgba(3, 23, 52, 0.38));
}

.refuel-diesel-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 61%;
  filter: saturate(.94) contrast(1.04);
  transform: scale(1.015);
  animation: rdh-image-breathe 14s ease-in-out infinite alternate;
}

.refuel-diesel-hero__veil {
  z-index: -2;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 132, 45, .18), transparent 20%),
    linear-gradient(92deg, #031c3f 0%, #06366f 42%, rgba(4, 47, 98, .93) 53%, rgba(3, 34, 73, .2) 82%),
    linear-gradient(180deg, rgba(3, 27, 61, .12), rgba(2, 21, 48, .45));
}

.refuel-diesel-hero__motion {
  z-index: -1;
  pointer-events: none;
}

.refuel-diesel-hero__arc {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
}

.refuel-diesel-hero__arc--one {
  top: -190px;
  right: -130px;
  width: 590px;
  height: 590px;
  border-right-color: rgba(255, 132, 45, .62);
  animation: rdh-orbit 22s linear infinite;
}

.refuel-diesel-hero__arc--two {
  right: 14%;
  bottom: -260px;
  width: 480px;
  height: 480px;
  border-top-color: rgba(113, 213, 118, .5);
  animation: rdh-orbit-reverse 27s linear infinite;
}

.refuel-diesel-hero__signal {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rdh-orange);
  box-shadow: 0 0 0 8px rgba(255, 132, 45, .12), 0 0 24px rgba(255, 132, 45, .55);
}

.refuel-diesel-hero__signal--one {
  top: 18%;
  right: 12%;
  animation: rdh-signal-one 8s ease-in-out infinite alternate;
}

.refuel-diesel-hero__signal--two {
  right: 35%;
  bottom: 18%;
  width: 7px;
  height: 7px;
  background: var(--rdh-green);
  box-shadow: 0 0 0 8px rgba(113, 213, 118, .12), 0 0 24px rgba(113, 213, 118, .5);
  animation: rdh-signal-two 9s ease-in-out infinite alternate;
}

.refuel-diesel-hero__container {
  position: relative;
  display: flex;
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  min-height: inherit;
  margin: 0 auto;
  padding: 48px 0 44px;
}

.refuel-diesel-hero__copy {
  width: min(610px, 52%);
}

.refuel-diesel-hero__eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
  gap: 10px;
  color: var(--rdh-green);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.refuel-diesel-hero__eyebrow span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rdh-orange), var(--rdh-green));
}

.refuel-diesel-hero h1 {
  max-width: 600px;
  margin: 0;
  color: var(--rdh-white);
  font-size: clamp(28px, 2.6vw, 32px);
  font-weight: 620;
  letter-spacing: -.032em;
  line-height: 1.14;
  text-wrap: balance;
}

.refuel-diesel-hero h1 span {
  display: block;
  margin-top: 7px;
  color: var(--rdh-green);
}

.refuel-diesel-hero__lead {
  max-width: 570px;
  margin: 20px 0 0;
  color: var(--rdh-muted);
  font-size: 15px;
  line-height: 1.7;
}

.refuel-diesel-hero__actions {
  display: flex;
  align-items: center;
  margin-top: 25px;
  gap: 10px;
}

.refuel-diesel-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  padding: 0 20px;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.refuel-diesel-hero__button strong {
  font-weight: 760;
}

.refuel-diesel-hero__button--primary {
  min-width: 184px;
  color: #032755;
  background: var(--rdh-green);
  box-shadow: 0 0 0 0 rgba(113, 213, 118, .38), 0 16px 34px rgba(0, 17, 42, .28);
  animation: rdh-primary-pulse 2.6s ease-out infinite;
}

.refuel-diesel-hero__button--primary > span {
  display: grid;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: rgba(3, 39, 85, .09);
  place-items: center;
}

.refuel-diesel-hero__button--whatsapp {
  color: var(--rdh-white);
  border-color: rgba(255, 255, 255, .27);
  background: rgba(255, 255, 255, .075);
  backdrop-filter: blur(10px);
}

.refuel-diesel-hero__button--whatsapp > svg {
  color: var(--rdh-green);
}

.refuel-diesel-hero__button:hover,
.refuel-diesel-hero__button:focus-visible {
  transform: translateY(-2px);
}

.refuel-diesel-hero__button--primary:hover,
.refuel-diesel-hero__button--primary:focus-visible {
  color: #032755;
  background: #8be18f;
  box-shadow: 0 19px 42px rgba(0, 17, 42, .36);
}

.refuel-diesel-hero__button--whatsapp:hover,
.refuel-diesel-hero__button--whatsapp:focus-visible {
  color: var(--rdh-white);
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .14);
}

.refuel-diesel-hero__help {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 11.5px;
  line-height: 1.4;
}

.refuel-diesel-hero__help svg {
  width: 16px;
  height: 16px;
  color: var(--rdh-orange);
}

.refuel-diesel-hero__help strong {
  color: var(--rdh-white);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: rgba(255, 132, 45, .62);
  text-underline-offset: 3px;
}

.refuel-diesel-hero__help:hover,
.refuel-diesel-hero__help:focus-visible {
  color: var(--rdh-white);
}

.refuel-diesel-hero__assurance {
  display: flex;
  align-items: center;
  margin-top: 24px;
  gap: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 10.5px;
}

.refuel-diesel-hero__assurance > span {
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  gap: 7px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.refuel-diesel-hero__assurance > span:first-child {
  padding-left: 0;
}

.refuel-diesel-hero__assurance > span:last-child {
  padding-right: 0;
  border-right: 0;
}

.refuel-diesel-hero__assurance svg {
  width: 15px;
  height: 15px;
  color: var(--rdh-green);
}

.refuel-diesel-hero__assurance b {
  font-weight: 620;
}

.refuel-diesel-hero__delivery-card {
  position: absolute;
  right: 0;
  bottom: 47px;
  display: grid;
  grid-template-columns: 39px 1fr 8px;
  align-items: center;
  min-width: 226px;
  padding: 12px 14px;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 15px;
  background: rgba(3, 29, 65, .72);
  box-shadow: 0 18px 42px rgba(0, 20, 49, .25);
  backdrop-filter: blur(13px);
}

.refuel-diesel-hero__delivery-icon {
  display: grid;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(113, 213, 118, .3);
  border-radius: 12px;
  color: var(--rdh-green);
  background: rgba(113, 213, 118, .1);
  place-items: center;
}

.refuel-diesel-hero__delivery-card > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.refuel-diesel-hero__delivery-card small {
  color: rgba(255, 255, 255, .58);
  font-size: 8.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.refuel-diesel-hero__delivery-card strong {
  color: var(--rdh-white);
  font-size: 12px;
  font-weight: 700;
}

.refuel-diesel-hero__delivery-card > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rdh-orange);
  box-shadow: 0 0 0 0 rgba(255, 132, 45, .4);
  animation: rdh-status-pulse 1.8s ease-out infinite;
}

.refuel-diesel-hero :where(a):focus-visible {
  outline: 3px solid rgba(113, 213, 118, .95);
  outline-offset: 3px;
}

@keyframes rdh-primary-pulse {
  0% { box-shadow: 0 0 0 0 rgba(113, 213, 118, .42), 0 16px 34px rgba(0, 17, 42, .28); }
  55% { box-shadow: 0 0 0 12px rgba(113, 213, 118, 0), 0 16px 34px rgba(0, 17, 42, .28); }
  100% { box-shadow: 0 0 0 0 rgba(113, 213, 118, 0), 0 16px 34px rgba(0, 17, 42, .28); }
}

@keyframes rdh-status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 132, 45, .45); }
  75%, 100% { box-shadow: 0 0 0 9px rgba(255, 132, 45, 0); }
}

@keyframes rdh-image-breathe {
  from { transform: scale(1.015); }
  to { transform: scale(1.055); }
}

@keyframes rdh-orbit {
  to { transform: rotate(360deg); }
}

@keyframes rdh-orbit-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes rdh-signal-one {
  from { transform: translate(0, 0); }
  to { transform: translate(-70px, 46px); }
}

@keyframes rdh-signal-two {
  from { transform: translate(0, 0); }
  to { transform: translate(62px, -42px); }
}

@media (max-width: 1024px) {
  .refuel-diesel-hero__copy {
    width: min(590px, 60%);
  }

  .refuel-diesel-hero__media {
    left: 43%;
  }

  .refuel-diesel-hero__delivery-card {
    right: 12px;
  }
}

@media (max-width: 767px) {
  .refuel-diesel-hero {
    min-height: clamp(520px, 66svh, 570px);
  }

  .refuel-diesel-hero__media {
    top: 34%;
    left: 0;
  }

  .refuel-diesel-hero__media img {
    object-position: 54% 58%;
    filter: saturate(.92) contrast(1.05);
  }

  .refuel-diesel-hero__veil {
    background:
      radial-gradient(circle at 88% 48%, rgba(255, 132, 45, .16), transparent 22%),
      linear-gradient(180deg, #031c3f 0%, #063873 43%, rgba(4, 48, 99, .84) 62%, rgba(3, 25, 57, .56) 100%);
  }

  .refuel-diesel-hero__arc--one {
    top: auto;
    right: -180px;
    bottom: -70px;
    width: 420px;
    height: 420px;
  }

  .refuel-diesel-hero__arc--two,
  .refuel-diesel-hero__signal--two {
    display: none;
  }

  .refuel-diesel-hero__signal--one {
    top: auto;
    right: 14%;
    bottom: 18%;
  }

  .refuel-diesel-hero__container {
    align-items: flex-start;
    width: calc(100% - 32px);
    padding: 23px 0 76px;
  }

  .refuel-diesel-hero__copy {
    width: 100%;
  }

  .refuel-diesel-hero h1 {
    max-width: 360px;
    font-size: clamp(24px, 6.7vw, 26px);
    font-weight: 600;
    line-height: 1.16;
  }

  .refuel-diesel-hero h1 span {
    margin-top: 4px;
  }

  .refuel-diesel-hero__lead {
    max-width: 355px;
    margin-top: 13px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .refuel-diesel-hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    margin-top: 16px;
    gap: 8px;
  }

  .refuel-diesel-hero__button {
    min-height: 49px;
    padding: 0 15px;
    border-radius: 12px;
    font-size: 12px;
  }

  .refuel-diesel-hero__button--primary {
    min-width: 0;
  }

  .refuel-diesel-hero__button--whatsapp {
    width: 50px;
    padding: 0;
  }

  .refuel-diesel-hero__button--whatsapp strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .refuel-diesel-hero__help {
    margin-top: 11px;
    font-size: 10.5px;
  }

  .refuel-diesel-hero__assurance {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 11px 8px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 13px;
    background: rgba(3, 27, 61, .65);
    backdrop-filter: blur(11px);
  }

  .refuel-diesel-hero__assurance > span {
    padding: 0 8px;
    gap: 5px;
  }

  .refuel-diesel-hero__assurance svg {
    width: 13px;
    height: 13px;
  }

  .refuel-diesel-hero__assurance b {
    font-size: 8.5px;
    white-space: nowrap;
  }

  .refuel-diesel-hero__delivery-card {
    right: 16px;
    bottom: 62px;
    min-width: 198px;
    padding: 9px 11px;
    border-radius: 13px;
  }

  .refuel-diesel-hero__delivery-icon {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 370px) {
  .refuel-diesel-hero {
    min-height: 545px;
  }

  .refuel-diesel-hero__container {
    width: calc(100% - 26px);
  }

  .refuel-diesel-hero__assurance b {
    font-size: 7.8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .refuel-diesel-hero *,
  .refuel-diesel-hero *::before,
  .refuel-diesel-hero *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
