/* Reset de box-sizing: hace que el padding y border se incluyan en el ancho/alto */
*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "inter", sans-serif;
}

/* Valores base opcionales */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.15;
  background-color: #1a1a1a;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background-color: #1a1a1a;
  color: white;
}

/*¨hero desktp*/

.wrapper-hero {
  display: block;
}

/* HERO DESKTOP ONLY */

.peak-hero-desktop {
  display: none;
}

/* Solo desktop */
@media (min-width: 1024px) {
  .wrapper-hero {
    display: none;
  }
  .peak-hero-desktop {
    display: block;
    padding: px 0;
    background-image: url(assets/desktop-hero.png);
    background-repeat: no-repeat; /* ⬅️ no se repite */
    background-position: center; /* ⬅️ ajusta según diseño */
    background-size: cover;
  }

  .peak-hero-desktop-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 64px;
  }

  /* Texto */
  .peak-hero-desktop-content {
    max-width: 560px;
  }

  .peak-hero-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .peak-hero-title .highlight {
    background: #0597ff;
    padding: 2px 6px;
    border-radius: 4px;
  }

  .peak-hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 32px;
  }

  /* Visual */
  .peak-hero-desktop-visual {
    position: relative;
  }

  .peak-hero-dashboard {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
  }
}

/* GENERAL CSS STYLES */

.container-peak {
  padding: 0px 36px;
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}

a {
  color: white;
  text-decoration: none;
}

.peak-button {
  background-color: #0597ff;
  padding: 24px;
  gap: 12px;
  font-weight: bold;
  border-radius: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.peak-button:hover {
  transform: translateY(-3px);
  background-color: #007fe0;
  box-shadow: 0 12px 30px rgba(5, 151, 255, 0.45);
}

.peak-button:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(5, 151, 255, 0.35);
}

.container-peak-cards {
  padding-left: 32px;
  max-width: 1500px;
  margin: 0 auto;
}

/*HEADER */

.wrapper-menu {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 32px 0;
  align-items: center;
}
.button-hedear {
  border: 1px solid white;
  padding: 12px 24px;
  border-radius: 54px;
  display: none;
}

.image-hero img {
  width: 100%;
  height: auto;
}

.hero-button-mobile {
  margin-top: 54px;
  padding-bottom: 10px;
}

/*INFO */

/* PEAK ADS SECTION */

.hero-section {
  position: relative;
  overflow: hidden;
}

.peak-ads-section {
  padding: 80px 0;
}

.peak-ads-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  text-align: left;
}

.peak-ads-pretitle {
  display: flex;
  flex-direction: column;
  margin-top: 54px;
}
.peak-ads-pretitle p {
  margin-left: 16px;
}

.peak-ads-pretitle span {
  border-radius: 64px;
  border: 0.4px solid #fff;
  background: var(--Gris, #2e2e2e);
  padding: 18px;
  font-weight: bold;
  font-size: 24px;
}

.peak-ads-title {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.peak-ads-title span {
  color: #0597ff;
}

.peak-ads-description {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 16px;
}

.peak-ads-description.muted {
  color: #ffffff;
}

.peak-ads-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px 0;
}

.peak-ads-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.peak-ads-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.peak-ads-card p {
  font-size: 14px;
  color: #bdbdbd;
  margin: 0;
}

.card-icon {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 8px;
  color: #0597ff;
}

.peak-ads-cta {
  margin-top: 24px;
}

/* DESKTOP */

@media (min-width: 768px) {
  .peak-ads-title {
    font-size: 40px;
  }

  .peak-ads-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* CARDS */

/* PEAK METHOD SECTION */

.peak-method-section {
  padding: 80px 0;
}

.peak-method-title {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.peak-method-description {
  font-size: 15px;
  color: #bdbdbd;
  line-height: 1.6;
  margin-bottom: 32px;
}

.peak-method-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.peak-method-item {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: unset;
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 18px 20px;
  height: 100px;
}

.peak-method-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #e0e0e0;
}

.peak-method-item strong {
  font-weight: 600;
}

.peak-method-item .muted {
  color: #a0a0a0;
}

.peak-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #18c964;
  color: #0b0b0b;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.peak-method-wrapper {
  margin: 54px 0px;
}

/* DESKTOP */

@media (min-width: 768px) {
  .peak-method-title {
    font-size: 34px;
  }
}

/*slider/*

/* PEAK SCENARIOS SECTION */

.peak-scenarios-section {
  padding: 80px 0;
}

.peak-scenarios-wrapper {
  max-width: 100%;
  margin-top: 64px;
}

.peak-scenarios-title {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 32px;
}

.peak-scenarios-swiper {
  padding-bottom: 40px;
}

.peak-scenario-card {
  height: 150px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  background-color: #111;
  overflow: hidden;
}

/* Overlay oscuro */
.peak-scenario-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
}

.peak-scenario-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Pagination dots */
.peak-scenarios-swiper .swiper-pagination-bullet {
  background: #555;
  opacity: 1;
}

.peak-scenarios-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

/* Footer text */
.peak-scenarios-footer {
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.6;
  color: #d0d0d0;
  max-width: 720px;
}

/* DESKTOP */

@media (min-width: 768px) {
  .peak-scenarios-title {
    font-size: 36px;
  }

  .peak-scenario-card {
    height: 240px;
  }
}

/*CARDS */

/* PEAK PROCESS SECTION */

.peak-process-section {
  padding: 100px 0;
  position: relative;
}

/* Fondo decorativo detrás */
.peak-process-bg {
  background-color: #2e2e2e;
  padding: 32px 0px;
  margin: 54px 0px;
  overflow: hidden;
  position: relative;

  background-image: url(assets/bg-logo.png);
  background-repeat: no-repeat; /* ⬅️ evita que se repita */
  background-position: left top; /* ⬅️ ajústalo según diseño */
}
.peak-process-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.peak-process-title {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 40px;
  max-width: 720px;
  padding-right: 32px;
}

.peak-process-card {
  border-radius: 32px;
  overflow: hidden;
  background: #0b0b0b;
}

/* Imagen superior */
.peak-process-image {
  height: 260px;
  background-size: cover;
  background-position: center;
}

/* Bloque azul inferior */
.peak-process-content {
  background: linear-gradient(135deg, #0597ff, #0077cc);
  padding: 32px;
}

.peak-process-step {
  font-size: 28px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.peak-process-content h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.peak-process-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Swiper spacing */
.peak-process-swiper {
  padding-bottom: 40px;
}

.peak-process-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.peak-process-swiper .swiper-pagination-bullet-active {
  background: white;
}

/* DESKTOP */

@media (min-width: 768px) {
  .peak-process-title {
    font-size: 38px;
  }

  .peak-process-image {
    height: 320px;
  }
}

/* PEAK PROMISE SECTION */

.peak-promise-section {
  padding: 100px 0;
  margin-top: 54px;
}

/* Fondo azul con textura */
.peak-promise-bg {
  background-image: url("assets/bg-last.png"); /* ⬅️ IMAGEN PLACEHOLDER */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 64px 0px;
}

.peak-promise-wrapper {
  max-width: 1500px;
  margin: 0 auto;
}

/* Eyebrow */
.peak-promise-eyebrow {
  display: block;
  font-size: 18<svg xmlns= "http://www.w3.org/2000/svg" width= "15" height= "16"
    viewBox= "0 0 15 16" fill= "none" > <path d=
    "M14.7253 8.62553C15.0916 8.12329 15.0916 7.30764 14.7253 6.8054L10.0376 0.376683C9.67137 -0.125561 9.07662 -0.125561 8.71039 0.376683C8.34416 0.878926 8.34416 1.69457 8.71039 2.19681L11.7984 6.43173H0.937546C0.418966 6.43173 0 7.0063 0 7.71748C0 8.42865 0.418966 9.00322 0.937546 9.00322H11.7984L8.71039 13.2381C8.34416 13.7404 8.34416 14.556 8.71039 15.0583C9.07662 15.5605 9.67137 15.5605 10.0376 15.0583L14.7253 8.62955V8.62553Z"
    fill= "#2E2E2E" / > </svg>px;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 16px;
}

/* Title */
.peak-promise-title {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 24px;
}

/* Text */
.peak-promise-text {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 24px;
}

/* Highlight line */
.peak-promise-highlight {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* CTA Button */
.peak-promise-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: white;
  color: #111;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.peak-promise-button span {
  font-size: 20px;
}

/* Hover */
.peak-promise-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* DESKTOP */

@media (min-width: 768px) {
  .peak-promise-bg {
    padding: 80px 72px;
  }

  .peak-promise-title {
    font-size: 38px;
  }
}

/* PEAK BRANDS SECTION */

.peak-brands-section {
  margin: 54px 0px;
  overflow: hidden;
}

.peak-brands-title {
  font-size: 28px;
  margin-bottom: 40px;
  margin: 54px auto;
  padding: 0px 36px;
}
.peak-brand-wrapper {
  max-width: 1500px;
  margin: 0 auto;
}

/* Marquee wrapper */
.peak-brands-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Track animado */
.peak-brands-track {
  display: flex;
  width: max-content;
  animation: peak-marquee 25s linear infinite;
}

/* Logo */
.peak-brand-logo {
  flex: 0 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.peak-brand-logo img {
  max-height: 60px;
  width: 154px;
  height: 154px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.peak-brand-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Animación infinita */
@keyframes peak-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* DESKTOP */

@media (min-width: 768px) {
  .peak-brands-title {
    font-size: 36px;
  }

  .peak-brand-logo img {
    max-height: 70px;
  }
}

/* PEAK IMPACT SECTION */

.peak-impact-section {
  padding: 100px 0;
}

.peak-impact-wrapper {
  max-width: 1500px;
  margin: 0 auto;
}

.peak-impact-title {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.peak-impact-subtitle {
  font-size: 16px;
  color: #bdbdbd;
  margin-bottom: 40px;
  max-width: 720px;
}

/* Swiper */
.peak-impact-swiper {
  padding: 40px 0 60px;
}

/* Card base */
.peak-impact-card {
  background: #0b0b0b;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid #0597ff;
  transform: scale(0.9);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.4;
}

/* Imagen */
.peak-impact-image img {
  width: 100%;
  display: block;
}

/* Contenido */
.peak-impact-content {
  padding: 24px;
}

.peak-impact-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.peak-impact-content p {
  font-size: 14px;
  color: #d0d0d0;
  margin-bottom: 16px;
}

.peak-impact-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.peak-impact-content li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* SLIDE ACTIVO = ZOOM */
.swiper-slide-active .peak-impact-card {
  transform: scale(1);
  opacity: 1;
}

/* CTA */
.peak-impact-cta {
  margin-top: 40px;
}

/* DESKTOP */
@media (min-width: 768px) {
  .peak-impact-title {
    font-size: 38px;
  }

  .peak-impact-card {
    max-width: 520px;
    margin: 0 auto;
  }
}

.highlight {
  background-color: #0597ff;
  padding: 2px;
}

h2.peak-cta-title {
  color: #fff;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 36px */
}

.peak-cta-wrapper {
  margin: 64px 0px;
}

/* MEDIAQUERIES */
@media (min-width: 768px) {
  .peak-method-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .peak-ads-wrapper {
    margin-top: 94px;
  }
  .bg-pretitle {
    max-width: 400px;
  }

  .button-hedear {
    display: block;
  }

  .wrapper-menu {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 32px 0;
    align-items: center;
  }
}

.wrapper-desktop {
  max-width: 350px;
  margin-top: 32px;
}

/* Swiper container */
.peak-impact-swiper {
  perspective: 1200px;
  padding: 40px 0 60px;
}

/* Slide */
.peak-impact-swiper .swiper-slide {
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0.35;
}

/* Card */
.peak-impact-card {
  border-radius: 28px;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* Slide activo (CENTRO) */
.peak-impact-swiper .swiper-slide-active {
  opacity: 1;
  z-index: 3;
}

/* Slides vecinos */
.peak-impact-swiper .swiper-slide-prev,
.peak-impact-swiper .swiper-slide-next {
  opacity: 0.6;
  z-index: 2;
}

/* Slides más lejanos */
.peak-impact-swiper .swiper-slide-prev-prev,
.peak-impact-swiper .swiper-slide-next-next {
  opacity: 0.25;
  z-index: 1;
}

.wrapper-desktop-cards {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

/*Footer*/

footer {
  border-top: 1px solid #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 32px 16px;
  margin-top: 64px;
  gap: 24px;
  text-align: center;
}

.wrapper-footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.wrapper-icons {
  padding-top: 32px;
  display: flex;
  gap: 12px;
}

.wrapper-icons img {
  width: 36px;
  height: 36px;
}




 /* PEAK VIDEO SECTION */

      .peak-video-section {
        padding: 100px 0;
      }

      .peak-video-wrapper {
        max-width: 1400px;
        margin: 0 auto;
      }

      /* Header */
      .peak-video-header {
        max-width: 820px;
        margin-bottom: 40px;
      }

      .peak-video-title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 12px;
      }

      .peak-video-stars {
        font-size: 20px;
        color: #f5c518; /* amarillo estrellas */
      }

      /* Swiper */
      .peak-video-swiper {
        padding-bottom: 48px;
      }

      /* Card */
      .peak-video-card {
        border-radius: 24px;
        overflow: hidden;
        background: #0b0b0b;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
      }

      .peak-video-card video {
        width: 100%;
        height: 600px;
        display: block;
        object-fit: cover;
        border-radius: 24px;
      }

      /* Pagination */
      .peak-video-swiper .swiper-pagination-bullet {
        background: #555;
        opacity: 1;
      }

      .peak-video-swiper .swiper-pagination-bullet-active {
        background: #fff;
      }

      /* DESKTOP */
      @media (min-width: 768px) {
        .peak-video-title {
          font-size: 36px;
        }
      }