#envios.envios-section {
  --color-acento: #a9518b;
  background: #000000 !important;
  padding: clamp(36px, 6vw, 90px) 0;
}

.envios-panel {
  background-color: #0b0b0b;
  border-radius: var(--layout-shell-radius, 14px);
  padding: clamp(24px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45);
}

.envios-copy .pre-title {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--color-acento);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.envios-copy .title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.envios-copy .subtitle-medium {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.envios-copy .subtitle {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.envios-carriers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.envios-carrier-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, #151515 0%, #0d0d0d 100%);
  text-decoration: none;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.envios-carrier-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.envios-carrier-card__logo img {
  width: 130px;
  height: auto;
  display: block;
}

.envios-carrier-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.envios-carrier-card__title {
  margin: 0;
  font-weight: 700;
  color: #ffffff;
}

.envios-carrier-card__cta {
  font-size: 0.9rem;
  color: var(--color-acento);
}

.envios-carrier-card__cta i {
  margin-right: 0.35rem;
}

.envios-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 1rem;
}

.envios-illustration img {
  width: 100%;
  max-width: 520px;
  height: auto;
  animation: truck-bob 1.2s ease-in-out infinite;
  will-change: transform;
}

.envios-illustration::after {
  content: "";
  position: absolute;
  bottom: 12px;
  width: 45%;
  height: 16px;
  background: radial-gradient(50% 60% at 50% 50%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0) 70%);
  filter: blur(1.5px);
  animation: shadow-bob 1.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes truck-bob {
  0%,
  100% {
    transform: translateY(0) rotate(-0.2deg);
  }
  50% {
    transform: translateY(-6px) rotate(0.2deg);
  }
}

@keyframes shadow-bob {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.35;
  }
  50% {
    transform: scaleX(0.94);
    opacity: 0.28;
  }
}

@media (max-width: 991.98px) {
  .envios-panel {
    padding: clamp(20px, 7vw, 48px);
  }
}

@media (max-width: 575.98px) {
  .envios-panel {
    border-radius: var(--layout-shell-radius-sm, 12px);
  }

  .envios-carrier-card {
    flex-direction: column;
    text-align: center;
  }

  .envios-carrier-card__logo img {
    margin: 0 auto;
  }

  .envios-illustration::after {
    width: 60%;
  }
}
