/* ==============================
   RESET GENERAL
============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;

  overflow-x: hidden;

  font-family: "Poppins", sans-serif;

  background: #ffffff;

  color: #1f2937;

  line-height: 1.6;
}

a {
  color: inherit;

  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;

  display: block;
}

button,
input,
textarea {
  font-family: inherit;
}

/* ==============================
   VARIABLES
============================== */

:root {
  --primary: #f59e0b;
  --primary-dark: #f97316;

  --secondary: #111827;

  --text: #1f2937;
  --text-light: #64748b;

  --white: #ffffff;

  --gray-light: #f8fafc;
  --gray: #e2e8f0;

  --radius: 16px;

  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* ==============================
   HEADER
============================== */

.header {
  position: sticky;

  top: 0;

  z-index: 1000;

  width: 100%;

  border-bottom: 1px solid rgba(17, 24, 39, 0.06);

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(14px);
}

/* ==============================
   NAVBAR
============================== */

.navbar {
  width: 100%;
  max-width: 1180px;

  min-height: 78px;

  margin: 0 auto;

  padding: 0 24px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}

/* ==============================
   LOGO
============================== */

.logo {
  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #111827;

  font-size: 21px;

  font-weight: 800;

  letter-spacing: -0.5px;

  white-space: nowrap;
}

/* ==============================
   LINKS NAVBAR
============================== */

.nav-links {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 32px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  position: relative;

  display: inline-block;

  padding: 27px 0;

  color: #4b5563;

  font-size: 13.5px;

  font-weight: 500;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-links a:hover {
  color: #111827;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 19px;

  width: 0;
  height: 2px;

  border-radius: 20px;

  background: linear-gradient(90deg, var(--primary), var(--primary-dark));

  transform: translateX(-50%);

  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ==============================
   ACCIONES NAVBAR
============================== */

.nav-actions {
  flex-shrink: 0;

  display: flex;

  align-items: center;

  gap: 10px;
}

.btn-login,
.btn-register {
  min-height: 44px;

  padding: 0 17px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  border-radius: 11px;

  font-size: 13px;

  font-weight: 600;

  white-space: nowrap;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.btn-login {
  border: 1px solid #e5e7eb;

  background: #ffffff;

  color: #111827;

  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.btn-login:hover {
  transform: translateY(-1px);

  border-color: #d1d5db;

  background: #f9fafb;

  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.btn-register {
  border: 1px solid transparent;

  background: linear-gradient(135deg, var(--primary), var(--primary-dark));

  color: #ffffff;

  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.22);
}

.btn-register:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.3);
}

.btn-login i,
.btn-register i {
  font-size: 13px;
}

/* ===================================
   HERO
=================================== */

.hero {
  position: relative;

  width: 100%;

  min-height: 650px;

  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  align-items: center;

  overflow: hidden;

  background: #fbfdff;
}

/* DECORACIÓN */

.hero::before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  right: -170px;
  top: -120px;

  z-index: 0;

  border-radius: 50%;

  background: repeating-linear-gradient(
    -35deg,
    rgba(245, 158, 11, 0.1) 0px,
    rgba(245, 158, 11, 0.1) 3px,
    transparent 3px,
    transparent 18px
  );
}

.hero::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  left: -160px;
  bottom: -140px;

  z-index: 0;

  border-radius: 50%;

  background: repeating-linear-gradient(
    45deg,
    rgba(249, 115, 22, 0.08) 0px,
    rgba(249, 115, 22, 0.08) 3px,
    transparent 3px,
    transparent 15px
  );
}

/* ===================================
   HERO CONTENT
=================================== */

.hero-content {
  position: relative;

  z-index: 5;

  width: 100%;
  max-width: 610px;

  margin-left: auto;

  padding: 90px 25px 90px 30px;
}

.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 22px;

  padding: 9px 15px;

  border: 1px solid #ffedd5;

  border-radius: 999px;

  background: #fff7ed;

  color: #d97706;

  font-size: 13px;

  font-weight: 700;
}

.hero h1 {
  max-width: 680px;

  margin-bottom: 23px;

  color: #14213d;

  font-size: clamp(46px, 5vw, 70px);

  line-height: 1.03;

  letter-spacing: -2.5px;

  font-weight: 800;
}

.hero p {
  max-width: 560px;

  margin-bottom: 32px;

  color: #64748b;

  font-size: 17px;

  line-height: 1.8;
}

/* ===================================
   HERO BUTTONS
=================================== */

.hero-actions {
  display: flex;

  align-items: center;

  gap: 14px;

  flex-wrap: wrap;
}

.hero .btn-primary,
.hero .btn-secondary {
  min-height: 52px;

  padding: 0 23px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  border-radius: 11px;

  font-size: 14px;

  font-weight: 700;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.hero .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));

  color: #ffffff;

  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.23);
}

.hero .btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
}

.hero .btn-secondary {
  border: 1px solid #e2e8f0;

  background: #ffffff;

  color: #334155;
}

.hero .btn-secondary:hover {
  transform: translateY(-3px);

  border-color: var(--primary);

  color: #d97706;
}

/* ===================================
   HERO VISUAL
=================================== */

.hero-image {
  position: relative;

  z-index: 3;

  width: 100%;
  max-width: 650px;

  height: 570px;

  justify-self: start;
}

.floating-center {
  position: absolute;

  top: 50%;
  left: 50%;

  z-index: 3;

  transform: translate(-50%, -50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 15px;
}

.center-circle {
  position: relative;

  width: 175px;
  height: 175px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--primary), var(--primary-dark));

  color: #ffffff;

  font-size: 64px;

  box-shadow: 0 25px 60px rgba(245, 158, 11, 0.3);
}

.center-circle::before {
  content: "";

  position: absolute;

  width: 210px;
  height: 210px;

  border: 1px dashed rgba(245, 158, 11, 0.35);

  border-radius: 50%;

  animation: rotateCircle 20s linear infinite;
}

.floating-center span {
  padding: 8px 15px;

  border: 1px solid #f1f5f9;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.95);

  color: #475569;

  font-size: 13px;

  font-weight: 700;

  white-space: nowrap;

  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
}

/* ===================================
   FLOATING ICONS
=================================== */

.floating-icon {
  position: absolute;

  width: 82px;
  height: 82px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(226, 232, 240, 0.8);

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.92);

  color: var(--primary);

  font-size: 30px;

  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);

  backdrop-filter: blur(8px);

  animation: floating 4s ease-in-out infinite;
}

.icon-gas {
  top: 70px;
  left: 80px;

  animation-delay: 0s;
}

.icon-egg {
  top: 90px;
  right: 60px;

  animation-delay: 0.7s;
}

.icon-delivery {
  top: 270px;
  right: 5px;

  animation-delay: 1.3s;
}

.icon-shopping {
  right: 110px;
  bottom: 55px;

  animation-delay: 0.4s;
}

.icon-food {
  left: 65px;
  bottom: 70px;

  animation-delay: 1.8s;
}

/* ===================================
   ANIMACIONES HERO
=================================== */

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ==============================
   SECCIONES GENERALES
============================== */

.how-it-works,
.services,
.benefits {
  width: 100%;

  padding: 110px 24px;
}

.section-header {
  position: relative;

  z-index: 2;

  width: 100%;

  max-width: 720px;

  margin: 0 auto 65px;

  text-align: center;
}

.section-label {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 16px;

  padding: 8px 14px;

  border: 1px solid #ffedd5;

  border-radius: 999px;

  background: #fff7ed;

  color: #d97706;

  font-size: 12px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1.2px;
}

.section-header h2 {
  margin-bottom: 15px;

  color: #14213d;

  font-size: clamp(34px, 4vw, 48px);

  line-height: 1.1;

  letter-spacing: -1.5px;

  font-weight: 800;
}

.section-header p {
  max-width: 620px;

  margin: 0 auto;

  color: #64748b;

  font-size: 16px;

  line-height: 1.8;
}

/* ===================================
   HOW IT WORKS
=================================== */

.how-it-works {
  position: relative;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.how-it-works::before {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  top: -180px;
  right: -120px;

  border-radius: 50%;

  background: repeating-linear-gradient(
    45deg,
    rgba(245, 158, 11, 0.08) 0px,
    rgba(245, 158, 11, 0.08) 3px,
    transparent 3px,
    transparent 16px
  );
}

/* ===================================
   STEPS
=================================== */

.steps {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1120px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 26px;
}

.steps::before {
  content: "";

  position: absolute;

  top: 72px;

  left: 16.5%;
  right: 16.5%;

  z-index: 0;

  height: 2px;

  background: linear-gradient(
    90deg,
    rgba(245, 158, 11, 0.15),
    rgba(245, 158, 11, 0.55),
    rgba(245, 158, 11, 0.15)
  );
}

.step-card {
  position: relative;

  z-index: 2;

  min-width: 0;

  padding: 38px 30px 34px;

  border: 1px solid rgba(226, 232, 240, 0.9);

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.95);

  text-align: center;

  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);

  border-color: rgba(245, 158, 11, 0.35);

  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.step-count {
  position: absolute;

  top: 20px;
  right: 22px;

  color: #f1f5f9;

  font-size: 40px;

  font-weight: 900;

  line-height: 1;
}

.step-number {
  position: relative;

  width: 76px;
  height: 76px;

  margin: 0 auto 24px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 22px;

  background: linear-gradient(135deg, #fff7ed, #ffedd5);

  color: var(--primary);

  font-size: 28px;

  box-shadow:
    inset 0 0 0 1px rgba(245, 158, 11, 0.08),
    0 10px 25px rgba(245, 158, 11, 0.1);
}

.step-number::after {
  content: "";

  position: absolute;

  width: 12px;
  height: 12px;

  right: -4px;
  bottom: -4px;

  border: 3px solid #ffffff;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.step-card h3 {
  margin-bottom: 12px;

  color: #1e293b;

  font-size: 20px;

  font-weight: 700;

  letter-spacing: -0.3px;
}

.step-card p {
  max-width: 290px;

  margin: 0 auto;

  color: #64748b;

  font-size: 14px;

  line-height: 1.75;
}

/* ===================================
   SERVICES
=================================== */

.services {
  position: relative;

  overflow: hidden;

  background: #ffffff;
}

.services::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  left: -220px;
  bottom: -220px;

  border-radius: 50%;

  background: repeating-linear-gradient(
    45deg,
    rgba(245, 158, 11, 0.06) 0px,
    rgba(245, 158, 11, 0.06) 3px,
    transparent 3px,
    transparent 18px
  );
}

/* ===================================
   SERVICES GRID
=================================== */

.services-grid {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1120px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;
}

.service-card {
  position: relative;

  min-width: 0;

  min-height: 340px;

  padding: 28px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  overflow: hidden;

  border: 1px solid #e8edf3;

  border-radius: 24px;

  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);

  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);

  border-color: rgba(245, 158, 11, 0.35);

  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

.service-card::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -90px;
  right: -90px;

  border-radius: 50%;

  background: rgba(245, 158, 11, 0.05);
}

.service-top {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 20px;
}

.service-badge {
  padding: 7px 11px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 999px;

  background: #ecfdf5;

  color: #15803d;

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.7px;
}

.service-icon {
  width: 78px;
  height: 78px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 22px;

  background: linear-gradient(135deg, #fff7ed, #ffedd5);

  color: var(--primary);

  font-size: 30px;

  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.12);
}

.service-content {
  position: relative;

  z-index: 2;

  margin-top: 40px;
}

.service-content h3 {
  margin-bottom: 12px;

  color: #172033;

  font-size: 26px;

  font-weight: 800;

  letter-spacing: -0.7px;
}

.service-content p {
  margin-bottom: 26px;

  color: #64748b;

  font-size: 15px;

  line-height: 1.75;
}

.service-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: #d97706;

  font-size: 14px;

  font-weight: 700;

  transition:
    gap 0.25s ease,
    color 0.25s ease;
}

.service-link:hover {
  gap: 12px;

  color: var(--primary-dark);
}

.featured-service {
  border-color: rgba(245, 158, 11, 0.22);

  background: linear-gradient(145deg, #fffdf8 0%, #ffffff 55%, #fff7ed 100%);
}

.coming-soon {
  border-style: dashed;

  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.coming-soon .service-icon {
  background: #eef2f7;

  color: #94a3b8;

  box-shadow: none;
}

.coming-badge {
  background: #f1f5f9;

  color: #64748b;
}

.disabled-link {
  color: #94a3b8;

  cursor: default;
}

.disabled-link:hover {
  gap: 8px;

  color: #94a3b8;
}

/* ===================================
   BENEFITS
=================================== */

.benefits {
  position: relative;

  overflow: hidden;

  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.benefits::before {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  right: -180px;
  top: 70px;

  border-radius: 50%;

  background: repeating-linear-gradient(
    -45deg,
    rgba(245, 158, 11, 0.06) 0px,
    rgba(245, 158, 11, 0.06) 3px,
    transparent 3px,
    transparent 17px
  );
}

.benefits-grid {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1120px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 22px;
}

.benefit-card {
  position: relative;

  min-width: 0;

  min-height: 250px;

  padding: 30px 26px;

  overflow: hidden;

  border: 1px solid rgba(226, 232, 240, 0.95);

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.96);

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-7px);

  border-color: rgba(245, 158, 11, 0.3);

  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.09);
}

.benefit-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  opacity: 0;

  background: linear-gradient(90deg, var(--primary), var(--primary-dark));

  transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 62px;
  height: 62px;

  margin-bottom: 24px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  background: linear-gradient(135deg, #fff7ed, #ffedd5);

  color: var(--primary);

  font-size: 24px;

  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.1);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-3px) rotate(-4deg);

  background: linear-gradient(135deg, var(--primary), var(--primary-dark));

  color: #ffffff;
}

.benefit-card h3 {
  margin-bottom: 12px;

  color: #172033;

  font-size: 19px;

  font-weight: 800;

  letter-spacing: -0.4px;
}

.benefit-card p {
  color: #64748b;

  font-size: 14px;

  line-height: 1.75;
}

/* ===================================
   CTA
=================================== */

.cta {
  width: 100%;

  padding: 110px 24px;

  background: #ffffff;
}

.cta-content {
  position: relative;

  width: 100%;
  max-width: 1120px;

  min-height: 420px;

  margin: 0 auto;

  padding: 65px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(0, 0.75fr);

  align-items: center;

  gap: 50px;

  overflow: hidden;

  border-radius: 32px;

  background: linear-gradient(135deg, #111827 0%, #172033 55%, #1e293b 100%);

  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
}

.cta-content::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  right: -150px;
  top: -180px;

  border-radius: 50%;

  background: repeating-linear-gradient(
    -45deg,
    rgba(245, 158, 11, 0.15) 0px,
    rgba(245, 158, 11, 0.15) 3px,
    transparent 3px,
    transparent 18px
  );
}

.cta-content::after {
  content: "";

  position: absolute;

  width: 250px;
  height: 250px;

  left: -120px;
  bottom: -150px;

  border-radius: 50%;

  background: repeating-linear-gradient(
    45deg,
    rgba(249, 115, 22, 0.09) 0px,
    rgba(249, 115, 22, 0.09) 3px,
    transparent 3px,
    transparent 16px
  );
}

.cta-text {
  position: relative;

  z-index: 3;
}

.cta-label {
  display: inline-flex;

  align-items: center;

  margin-bottom: 18px;

  padding: 8px 13px;

  border: 1px solid rgba(245, 158, 11, 0.22);

  border-radius: 999px;

  background: rgba(245, 158, 11, 0.12);

  color: #fbbf24;

  font-size: 12px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.cta-text h2 {
  max-width: 650px;

  margin-bottom: 18px;

  color: #ffffff;

  font-size: clamp(38px, 4.5vw, 55px);

  line-height: 1.08;

  font-weight: 800;

  letter-spacing: -1.8px;
}

.cta-text p {
  max-width: 560px;

  margin-bottom: 30px;

  color: #cbd5e1;

  font-size: 16px;

  line-height: 1.8;
}

.cta .btn-primary {
  min-height: 54px;

  padding: 0 24px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  border-radius: 12px;

  background: linear-gradient(135deg, var(--primary), var(--primary-dark));

  color: #ffffff;

  font-size: 14px;

  font-weight: 700;

  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta .btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 17px 34px rgba(245, 158, 11, 0.35);
}

/* ===================================
   CTA VISUAL
=================================== */

.cta-visual {
  position: relative;

  z-index: 3;

  min-height: 280px;
}

.cta-main-icon {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 145px;
  height: 145px;

  transform: translate(-50%, -50%);

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 38px;

  background: linear-gradient(135deg, var(--primary), var(--primary-dark));

  color: #ffffff;

  font-size: 54px;

  box-shadow: 0 25px 50px rgba(245, 158, 11, 0.3);

  animation: ctaMainFloat 5s ease-in-out infinite;
}

.cta-floating-icon {
  position: absolute;

  width: 64px;
  height: 64px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.1);

  color: #fbbf24;

  font-size: 23px;

  backdrop-filter: blur(8px);

  animation: ctaFloat 4s ease-in-out infinite;
}

.cta-icon-one {
  top: 15px;
  left: 10px;
}

.cta-icon-two {
  top: 25px;
  right: 5px;

  animation-delay: 0.8s;
}

.cta-icon-three {
  right: 35px;
  bottom: 10px;

  animation-delay: 1.4s;
}

@keyframes ctaFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes ctaMainFloat {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, calc(-50% - 10px));
  }
}

/* ===================================
   FOOTER
=================================== */

.footer {
  position: relative;

  width: 100%;

  padding: 80px 24px 28px;

  overflow: hidden;

  background: linear-gradient(180deg, #0f172a 0%, #0b1120 100%);

  color: #ffffff;
}

.footer::before {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  right: -170px;
  top: -200px;

  border-radius: 50%;

  background: repeating-linear-gradient(
    -45deg,
    rgba(245, 158, 11, 0.07) 0px,
    rgba(245, 158, 11, 0.07) 3px,
    transparent 3px,
    transparent 18px
  );
}

.footer-container {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1120px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(260px, 1.6fr)
    repeat(3, minmax(0, 1fr));

  gap: 55px;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  display: inline-flex;

  align-items: center;

  gap: 11px;

  margin-bottom: 22px;

  color: #ffffff;

  font-size: 21px;

  font-weight: 800;

  letter-spacing: -0.5px;
}

.footer-logo-icon {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 12px;

  background: linear-gradient(135deg, var(--primary), var(--primary-dark));

  color: #ffffff;

  font-size: 18px;

  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}

.footer-brand > p {
  margin-bottom: 26px;

  color: #94a3b8;

  font-size: 14px;

  line-height: 1.8;
}

/* SOCIALS */

.footer-socials {
  display: flex;

  align-items: center;

  gap: 10px;
}

.footer-socials a {
  width: 40px;
  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 11px;

  background: rgba(255, 255, 255, 0.04);

  color: #94a3b8;

  font-size: 16px;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);

  border-color: rgba(245, 158, 11, 0.35);

  background: rgba(245, 158, 11, 0.1);

  color: var(--primary);
}

/* FOOTER COLUMN */

.footer-column {
  min-width: 0;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 12px;
}

.footer-column h4 {
  position: relative;

  margin-bottom: 12px;

  color: #ffffff;

  font-size: 15px;

  font-weight: 700;
}

.footer-column h4::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 25px;
  height: 2px;

  border-radius: 999px;

  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.footer-column > a {
  color: #94a3b8;

  font-size: 14px;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-column > a:hover {
  transform: translateX(4px);

  color: var(--primary);
}

/* CONTACT */

.footer-contact {
  gap: 18px;
}

.contact-item {
  display: flex;

  align-items: flex-start;

  gap: 12px;
}

.contact-item > i {
  width: 36px;
  height: 36px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  background: rgba(245, 158, 11, 0.1);

  color: var(--primary);

  font-size: 14px;
}

.contact-item span {
  display: block;

  margin-bottom: 2px;

  color: #e2e8f0;

  font-size: 13px;

  font-weight: 700;
}

.contact-item p {
  color: #64748b;

  font-size: 12px;

  line-height: 1.5;
}

/* FOOTER BOTTOM */

.footer-bottom {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1120px;

  margin: 55px auto 0;

  padding-top: 25px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-bottom p {
  color: #64748b;

  font-size: 12px;
}

.footer-bottom-links {
  display: flex;

  align-items: center;

  gap: 12px;
}

.footer-bottom-links a {
  color: #64748b;

  font-size: 12px;

  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

.footer-bottom-links span {
  width: 3px;
  height: 3px;

  border-radius: 50%;

  background: #475569;
}

/* ===================================
   RESPONSIVE - LAPTOP PEQUEÑA
=================================== */

@media (max-width: 1100px) {
  .navbar {
    gap: 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-content {
    padding-left: 24px;
  }

  .floating-icon {
    width: 74px;
    height: 74px;

    font-size: 27px;
  }

  .icon-gas {
    left: 45px;
  }

  .icon-egg {
    right: 35px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===================================
   RESPONSIVE - TABLET
=================================== */

@media (max-width: 950px) {
  /* NAVBAR */

  .navbar {
    min-height: 72px;

    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  /* HERO */

  .hero {
    min-height: auto;

    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 760px;

    margin: 0 auto;

    padding: 75px 28px 25px;

    text-align: center;
  }

  .hero h1 {
    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    font-size: clamp(45px, 8vw, 64px);
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    width: min(100%, 600px);

    height: 480px;

    margin: 0 auto;

    justify-self: center;
  }

  /* HOW */

  .how-it-works,
  .services,
  .benefits {
    padding: 90px 20px;
  }

  .steps {
    max-width: 600px;

    grid-template-columns: 1fr;

    gap: 20px;
  }

  .steps::before {
    display: none;
  }

  /* SERVICES */

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coming-soon {
    grid-column: 1 / -1;
  }

  /* CTA */

  .cta {
    padding: 90px 20px;
  }

  .cta-content {
    grid-template-columns: 1fr;

    padding: 55px 40px;

    gap: 20px;

    text-align: center;
  }

  .cta-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-visual {
    width: 100%;
    max-width: 400px;

    min-height: 250px;

    margin: 0 auto;
  }

  /* FOOTER */

  .footer {
    padding: 70px 20px 26px;
  }

  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 45px;
  }

  .footer-brand {
    max-width: 100%;
  }
}

/* ===================================
   RESPONSIVE - TABLET PEQUEÑA
=================================== */

@media (max-width: 768px) {
  .navbar {
    min-height: 68px;

    padding: 0 16px;
  }

  .logo {
    font-size: 18px;
  }

  .btn-login,
  .btn-register {
    min-height: 40px;

    padding: 0 13px;

    font-size: 11.5px;
  }

  /* HERO */

  .hero-content {
    padding: 60px 22px 20px;
  }

  .hero-badge {
    margin-bottom: 18px;

    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 18px;

    font-size: 44px;

    letter-spacing: -1.8px;
  }

  .hero p {
    margin-bottom: 27px;

    font-size: 15px;
  }

  .hero-image {
    height: 420px;

    max-width: 470px;
  }

  .center-circle {
    width: 145px;
    height: 145px;

    font-size: 52px;
  }

  .center-circle::before {
    width: 180px;
    height: 180px;
  }

  .floating-icon {
    width: 66px;
    height: 66px;

    border-radius: 18px;

    font-size: 24px;
  }

  .icon-gas {
    top: 55px;
    left: 35px;
  }

  .icon-egg {
    top: 60px;
    right: 35px;
  }

  .icon-delivery {
    top: 200px;
    right: 10px;
  }

  .icon-shopping {
    right: 65px;
    bottom: 40px;
  }

  .icon-food {
    left: 55px;
    bottom: 45px;
  }

  /* TITULOS */

  .section-header {
    margin-bottom: 48px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .section-header p {
    font-size: 14.5px;
  }

  /* SERVICE */

  .service-card {
    min-height: 320px;
  }

  /* CTA */

  .cta-content {
    padding: 48px 30px;

    border-radius: 26px;
  }
}

/* ===================================
   RESPONSIVE - CELULAR
=================================== */

@media (max-width: 600px) {
  /* NAVBAR */

  .navbar {
    min-height: 64px;

    padding: 0 14px;

    gap: 10px;
  }

  .logo {
    max-width: 55%;

    overflow: hidden;

    font-size: 16px;

    text-overflow: ellipsis;
  }

  .nav-actions {
    gap: 6px;
  }

  .btn-login {
    display: none;
  }

  .btn-register {
    min-height: 39px;

    padding: 0 12px;

    gap: 6px;

    border-radius: 10px;

    font-size: 11px;
  }

  .btn-register i {
    font-size: 11px;
  }

  /* HERO */

  .hero::before {
    width: 400px;
    height: 400px;

    right: -220px;
    top: -100px;
  }

  .hero::after {
    width: 200px;
    height: 200px;

    left: -130px;
    bottom: -100px;
  }

  .hero-content {
    padding: 48px 18px 15px;
  }

  .hero-badge {
    margin-bottom: 16px;

    padding: 7px 11px;

    font-size: 10px;
  }

  .hero h1 {
    max-width: 460px;

    margin-bottom: 17px;

    font-size: clamp(34px, 10vw, 40px);

    line-height: 1.08;

    letter-spacing: -1.4px;
  }

  .hero p {
    max-width: 430px;

    margin-bottom: 24px;

    font-size: 14px;

    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;

    flex-direction: column;

    gap: 10px;
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    width: 100%;

    max-width: 420px;

    min-height: 48px;

    padding: 0 18px;

    font-size: 12px;
  }

  /* HERO VISUAL */

  .hero-image {
    width: 100%;

    max-width: 360px;

    height: 335px;
  }

  .center-circle {
    width: 112px;
    height: 112px;

    font-size: 40px;
  }

  .center-circle::before {
    width: 142px;
    height: 142px;
  }

  .floating-center {
    gap: 12px;
  }

  .floating-center span {
    padding: 7px 12px;

    font-size: 10px;
  }

  .floating-icon {
    width: 52px;
    height: 52px;

    border-radius: 15px;

    font-size: 19px;
  }

  .icon-gas {
    top: 45px;
    left: 28px;
  }

  .icon-egg {
    top: 45px;
    right: 28px;
  }

  .icon-delivery {
    top: 155px;
    right: 3px;
  }

  .icon-shopping {
    right: 43px;
    bottom: 28px;
  }

  .icon-food {
    left: 43px;
    bottom: 28px;
  }

  /* SECCIONES */

  .how-it-works,
  .services,
  .benefits {
    padding: 70px 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-label {
    margin-bottom: 13px;

    padding: 7px 11px;

    font-size: 10px;

    letter-spacing: 0.9px;
  }

  .section-header h2 {
    font-size: 31px;

    letter-spacing: -1px;
  }

  .section-header p {
    font-size: 13.5px;

    line-height: 1.7;
  }

  /* STEPS */

  .steps {
    max-width: 100%;
  }

  .step-card {
    padding: 30px 22px;
  }

  .step-number {
    width: 64px;
    height: 64px;

    margin-bottom: 20px;

    border-radius: 18px;

    font-size: 23px;
  }

  .step-count {
    top: 18px;
    right: 18px;

    font-size: 32px;
  }

  .step-card h3 {
    font-size: 18px;
  }

  .step-card p {
    font-size: 13px;
  }

  /* SERVICES */

  .services-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;

    padding: 23px;

    border-radius: 20px;
  }

  .service-content {
    margin-top: 30px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .service-content p {
    margin-bottom: 20px;

    font-size: 13.5px;
  }

  .service-icon {
    width: 62px;
    height: 62px;

    border-radius: 18px;

    font-size: 23px;
  }

  .service-badge {
    padding: 6px 9px;

    font-size: 9px;
  }

  /* BENEFITS */

  .benefits-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .benefit-card {
    min-height: auto;

    padding: 24px 22px;
  }

  .benefit-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 19px;

    border-radius: 15px;

    font-size: 21px;
  }

  .benefit-card h3 {
    font-size: 17px;
  }

  .benefit-card p {
    font-size: 13px;
  }

  /* CTA */

  .cta {
    padding: 70px 16px;
  }

  .cta-content {
    min-height: auto;

    padding: 42px 22px;

    gap: 30px;

    border-radius: 22px;
  }

  .cta-text h2 {
    font-size: 32px;

    letter-spacing: -1.2px;
  }

  .cta-text p {
    margin-bottom: 24px;

    font-size: 14px;
  }

  .cta .btn-primary {
    width: 100%;

    min-height: 48px;

    font-size: 12px;
  }

  .cta-visual {
    min-height: 190px;
  }

  .cta-main-icon {
    width: 100px;
    height: 100px;

    border-radius: 26px;

    font-size: 37px;
  }

  .cta-floating-icon {
    width: 45px;
    height: 45px;

    border-radius: 13px;

    font-size: 17px;
  }

  .cta-icon-one {
    left: 5px;
  }

  .cta-icon-two {
    right: 5px;
  }

  .cta-icon-three {
    right: 25px;
  }

  /* FOOTER */

  .footer {
    padding: 55px 16px 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;

    gap: 36px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    font-size: 18px;
  }

  .footer-brand > p {
    font-size: 13px;
  }

  .footer-bottom {
    margin-top: 40px;

    align-items: flex-start;

    flex-direction: column;

    gap: 14px;
  }
}

/* ===================================
   RESPONSIVE - CELULAR PEQUEÑO
=================================== */

@media (max-width: 420px) {
  .navbar {
    padding: 0 12px;
  }

  .logo {
    font-size: 14px;
  }

  .btn-register {
    padding: 0 10px;

    font-size: 10px;
  }

  /* HERO */

  .hero-content {
    padding: 42px 15px 10px;
  }

  .hero h1 {
    font-size: 32px;

    letter-spacing: -1px;
  }

  .hero p {
    font-size: 13px;
  }

  .hero-image {
    max-width: 320px;

    height: 300px;
  }

  .center-circle {
    width: 100px;
    height: 100px;

    font-size: 35px;
  }

  .center-circle::before {
    width: 128px;
    height: 128px;
  }

  .floating-icon {
    width: 46px;
    height: 46px;

    border-radius: 13px;

    font-size: 17px;
  }

  .icon-gas {
    left: 20px;
  }

  .icon-egg {
    right: 20px;
  }

  .icon-delivery {
    top: 145px;
  }

  .icon-shopping {
    right: 36px;
  }

  .icon-food {
    left: 36px;
  }

  /* SECTION */

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 13px;
  }

  /* CTA */

  .cta-content {
    padding: 38px 18px;
  }

  .cta-text h2 {
    font-size: 29px;
  }
}

/* ===================================
   RESPONSIVE - 360PX
=================================== */

@media (max-width: 360px) {
  .logo {
    font-size: 13px;
  }

  .btn-register {
    min-height: 37px;

    padding: 0 9px;
  }

  .btn-register i {
    display: none;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero-badge {
    font-size: 9px;
  }

  .hero-image {
    height: 280px;
  }

  .floating-center span {
    font-size: 9px;
  }

  .service-top {
    gap: 10px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
  }
}

/* ===================================
   FOCUS
=================================== */

.nav-links a:focus-visible,
.btn-login:focus-visible,
.btn-register:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.service-link:focus-visible,
.footer a:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.25);

  outline-offset: 3px;
}

/* ===================================
   REDUCIR MOVIMIENTO
=================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .floating-icon,
  .center-circle::before,
  .cta-main-icon,
  .cta-floating-icon {
    animation: none;
  }
}

/* ===================================
   BOTÓN MENÚ HAMBURGUESA
=================================== */

.menu-toggle {
  width: 42px;
  height: 42px;

  display: none;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  border: 1px solid #e2e8f0;

  border-radius: 11px;

  background: #ffffff;

  color: #334155;

  font-size: 17px;

  cursor: pointer;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.menu-toggle:hover {
  color: #d97706;

  border-color: rgba(245, 158, 11, 0.35);

  background: #fff7ed;
}

.menu-toggle:active {
  transform: scale(0.96);
}

/* ===================================
   MENÚ MÓVIL
=================================== */

.mobile-menu {
  display: none;
}

/* ===================================
   TABLET / MÓVIL
=================================== */

@media (max-width: 950px) {
  /* OCULTAMOS NAV DESKTOP */

  .nav-links,
  .nav-actions {
    display: none;
  }

  /* MOSTRAMOS HAMBURGUESA */

  .menu-toggle {
    display: flex;
  }

  /* MENÚ */

  .mobile-menu {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    display: block;

    max-height: 0;

    overflow: hidden;

    visibility: hidden;

    opacity: 0;

    border-top: 1px solid transparent;

    background: rgba(255, 255, 255, 0.98);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);

    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  /* ABIERTO */

  .mobile-menu.active {
    max-height: 500px;

    visibility: visible;

    opacity: 1;

    border-top-color: #edf1f5;
  }

  .mobile-menu-nav {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding: 14px 20px 22px;

    display: flex;

    flex-direction: column;

    gap: 5px;
  }

  /* LINKS */

  .mobile-menu-link {
    min-height: 48px;

    padding: 0 14px;

    display: flex;

    align-items: center;

    gap: 12px;

    border-radius: 11px;

    color: #475569;

    font-size: 13px;

    font-weight: 600;

    transition:
      color 0.2s ease,
      background 0.2s ease,
      transform 0.2s ease;
  }

  .mobile-menu-link i {
    width: 20px;

    color: #f59e0b;

    text-align: center;
  }

  .mobile-menu-link:hover {
    transform: translateX(3px);

    color: #111827;

    background: #f8fafc;
  }

  /* SEPARADOR */

  .mobile-menu-divider {
    height: 1px;

    margin: 9px 0;

    background: #edf1f5;
  }

  /* LOGIN */

  .mobile-login {
    min-height: 47px;

    padding: 0 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border: 1px solid #e2e8f0;

    border-radius: 11px;

    background: #ffffff;

    color: #334155;

    font-size: 12px;

    font-weight: 700;
  }

  /* REGISTER */

  .mobile-register {
    min-height: 47px;

    margin-top: 5px;

    padding: 0 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 11px;

    background: linear-gradient(135deg, #f59e0b, #f97316);

    color: white;

    font-size: 12px;

    font-weight: 700;

    box-shadow: 0 9px 22px rgba(245, 158, 11, 0.2);
  }
}
