:root {
  --orange1: #ff6a00;
  --orange2: #ff9a00;
  --bg: #070707;
  --card-bg: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
}

/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at 20% 20%, #111, #000);
  color: white;
  -webkit-font-smoothing: antialiased;
}

/* GRADIENT OVERLAY */
body::after {
  content: "";
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, #000, transparent);
  opacity: 0.6;
  pointer-events: none;
}

/* NAVBAR PRO */
.navbar {
  position: fixed;
  width: 100%;
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
  transition: 0.3s;
  z-index: 1000;
}

/*  OCULTAMOS BOTON INICIO SESION */
.navbar .btn {
  display: none;
}

/*.logo {
  color: var(--orange2);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
}*/

/*  LOGO */
.logo {
  font-weight: 700;
  font-size: 52px;
  letter-spacing: 1.5px;

  background: linear-gradient(135deg, #ff6a00, #ff9a00, #ffd580);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 20px rgba(255, 140, 0, 0.25);

  position: relative;
  cursor: pointer;
  transition: 0.3s ease;
 /* transform: translateX(40px);*/
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(255, 140, 0, 0.6);
}

.logo::after {
  content: "";
  position: absolute;
  inset: -5px;
  background: radial-gradient(circle, rgba(255,106,0,0.4), transparent 70%);
  filter: blur(10px);
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}

.logo:hover::after {
  opacity: 1;
}

.logo::after {
  content: "";
  position: absolute;
  inset: -5px;
  background: radial-gradient(circle, rgba(255,106,0,0.4), transparent 70%);
  filter: blur(10px);
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}

.logo:hover::after {
  opacity: 1;
}

/* NAV LINKS */
.nav-links a {
  margin: 0 12px;
  color: #aaa;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--orange2);
  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  width: 100%;
}

/* BUTTONS PRO */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 10px 20px;
  border-radius: 14px;

  border: none;
  cursor: pointer;

  font-weight: 500;
  line-height: 1;

  text-decoration: none;
  transition: all 0.25s ease;
}

/* PRIMARIO (naranja) */
.btn.primary {
  background: linear-gradient(135deg, var(--orange1), var(--orange2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,106,0,.4);
}

.btn.primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255,106,0,.6);
}

/* SECUNDARIO */
.btn.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
}

.btn.secondary:hover {
  border-color: var(--orange2);
}


.orders-btn {
  display: inline-flex;
  text-decoration: none;
  color: white;
}



/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 90px 60px 60px;
  margin-top: 40px;
  position: relative;
  min-height: 85vh;
  align-items: center;
}

/* GLOW PRO */
.bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--orange1), transparent 70%);
  filter: blur(140px);
  top: -200px;
  right: -200px;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(30px); }
}

.hero h1 {
  font-size: 68px;
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero p {
  font-size: 18px;
  margin: 20px 0;
  color: #bbb;
}

.hero span {
  color: var(--orange2);
}

/* HERO IMAGE */
.hero-img img {
  width: 600px;
  margin-left: auto;
  transform: translate(-130px, 30px);
  transition: 0.4s;
}

.hero-img img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* CARDS PRO */
.card {
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffcf8a, #ffb35c);
  color: #1a1a1a;
  text-align: center;
  box-shadow: 0 15px 35px rgba(255, 140, 0, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(25deg);
  top: -100%;
  left: -100%;
  transition: 0.6s;
}


/*.card.large {
  max-height: 220px;
  overflow: hidden;
}*/

.card.large p {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* máximo 4 líneas */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card.large img {
  width: 10px;
  margin-bottom: 10px;
}

.card:hover::before {
  top: 100%;
  left: 100%;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 60px;
  align-items: stretch;
}

/* CARD BASE NUEVA */
.info-card {
  border-radius: 22px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  color: #1a1a1a;

  background: linear-gradient(145deg, #ffcf8a, #ffb35c);
  box-shadow: 0 15px 35px rgba(255, 140, 0, 0.25);

  transition: 0.3s ease;
   min-height: 160px;      /* controla altura base */
}
.info-card:hover {
  transform: translateY(-8px);
}


.info-grid .card,
.info-grid .card-block {
  min-height: 120px;   /* antes ~320px → ahora más compacto */
  padding: 20px;       /* menos aire interno */
}

/*
.orders {
  text-align: center;
  padding: 40px 20px 60px;
  margin-top: -10px;
}*/

.orders .categories {
  margin-bottom: 30px;
}

.orders .big {
  margin-top: 20px;
  padding: 14px 40px;
}

.big {
  font-size: 16px;
  border-radius: 16px;
}

/*  CATEGORIAS */

/*.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 15px;
  margin-top: 20px;
}*/

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  justify-items: center;
  align-items: center;
}

.category-item {
  background: rgba(255, 255, 255, 0.22); /* MUCHO más claro */
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 18px;
  padding: 12px;

  color: #111; /* texto oscuro para contraste */
  text-align: center;

  cursor: pointer;
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 93px;
  height: 93px;
  aspect-ratio: 1 / 1;
}

.category-item {
  font-size: 35px; /* emoji grande */
}

.category-item span {
  font-size: 12px;
  color: #111;
  opacity: 1;
  margin-top: 4px;
  font-weight: 500;
}

.category-item img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}



.category-item:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-6px) scale(1.05);
  border-color: var(--orange2);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.25);
}

/* SECTIONS */

section:not(.two-cards) {
  text-align: center;
}

.two-cards {
  padding: 80px 60px !important;
}

/* BLOQUE COMO FUNCIONA */

.steps-grid .card {
  padding: 12px 16px;
}

/* tamaño del emoji */
.step .emoji {
  font-size: 60px;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

/* hover más pro */
.step:hover .emoji {
  transform: scale(1.2);
}

/* separación entre pasos */
.steps-grid {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 55px;
  margin-top: 30px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, #ff6a00, #ff9a00);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
}

.step {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.reveal.active .step {
  opacity: 1;
  transform: translateY(0);
}

/* FLEX GROUPS */
/*.steps-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}*/

/* SEARCH PRO */
.search-box {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.search-box input {
  padding: 14px;
  width: 260px;
  border-radius: 12px 0 0 12px;
  border: none;
  outline: none;
}

.search-box button {
  background: linear-gradient(135deg, var(--orange1), var(--orange2));
  border: none;
  padding: 14px;
  border-radius: 0 12px 12px 0;
  cursor: pointer;
}

/* APP SECTION */
/*.app {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
}*/

.app-text h2,
.app-text p,
.app-text ul,
.app-text li {
  text-align: left;
}

/*.app-text {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}*/

/*.app-text {
  width: 55%;
  flex-shrink: 0;
}*/

.app-text {
  flex: 1;
  max-width: 500px;
}

.phone {
  flex: 1;
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-left: 0;   /* 👈 CLAVE */
  overflow: hidden;
}

.phone img {
  width: 330px;              /* 👈 tamaño grande real */
  max-width: none;
  height: auto;

  /*filter: drop-shadow(0 15px 30px rgba(0,0,0,0.35));*/

  transform: translateY(50px) translateX(-10px);
  position: relative;
  object-fit: contain;
}

.phone::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
  height: 100%;
  /*background: linear-gradient(to left, rgba(42,18,0,0.6), transparent);*/
  pointer-events: none;
}

.store-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* App Store (más pequeña por ejemplo) */
.store-buttons .appstore {
  height: 63px;
  width: auto;
}

/* Google Play (más grande) */
.store-buttons .googleplay {
  height: 54px;
  width: auto;
}

.store-buttons img {
  height: 45px;      /* ajusta aquí el tamaño */
  width: auto;       /* mantiene proporción */
  cursor: pointer;   /* opcional: efecto botón */
  transition: transform 0.2s ease;
}

.store-buttons img:hover {
  transform: scale(1.05); /* efecto al pasar el ratón */
}

/*.store-buttons {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.store-buttons img {
  height: 45px;
  cursor: pointer;
  transition: 0.3s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}*/

/* FOOTER */
/* FOOTER BASE */
.footer {
  display: flex;              
  justify-content: space-between;
  align-items: flex-start;

  width: 100%;                
  padding: 10px 30px;
  background: wheat;
  background: linear-gradient(145deg, #ffcf8a, #ffb35c);
}

.footer-center h4,
.footer-right h4 {
  margin-top: 0;
}

/*.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; 
}*/

/* IZQUIERDA */
.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: center; /* 👈 centra vertical real */
  gap: 2px;

}

.footer-logo {
  width: 90px;           /* tamaño real (el que cuenta para el contenedor) */
  transform: scale(4.4);  /* tamaño visual (más grande) */
  transform-origin: top;
}

.footer-left p {
  font-size: 16px;
  transform: translateY(10px) translateX(35px);
}

/* CENTRO (ENLACES) */
.footer-center {
  display: flex;
  /*margin-left: 10px;*/
  gap: 160px;
  align-items: flex-start; /* 👈 importante */

}

.footer-center div {
  display: flex;
  flex-direction: column;
}

.footer-center h4 {
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-center a {
  font-size: 12px;
  margin: 2px 0;
  text-decoration: none;
  color: rgba(0,0,0,0.75);
}

/* DERECHA */

.footer-right {
  display: flex;
  flex-direction: column;

  align-items: flex-start;
  justify-content: flex-start;

  /*margin-top: 13px; 
  transform: translateX(-100px);*/
  gap: 5px;
}

.footer-right h4 {
  font-size: 13px;
  margin: 6px;
}

.socials {
  display: flex;
  gap: 25px;
}

.socials i {
  font-size: 22px;
  color: black;
  cursor: pointer;
  transition: 0.3s;
  gap: 55px;
}

.socials i:hover {
  transform: scale(1.15);
}

.download-text {
  font-size: 12px;
  margin-top: 6px;  /* separa de redes */
  margin-bottom: 2px;
}

.download-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.download-row p {
  font-size: 15px;
  margin: 0;
  color: black;
}

.store-buttons {
  display: flex;
  gap: 8px;
}

.store-buttons img {
  height: 42px;
}


/*  BLOQUE WHAT*/

.footer-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* botón vertical */
.whatsapp-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 14px 18px;
  border-radius: 16px;

  background: #25D366;
  color: white;
  text-decoration: none;

  transition: 0.25s ease;
}

/* ICONO GRANDE */
.whatsapp-box i {
  font-size: 38px;   /* 👈 aquí lo haces grande */
}

/* TEXTO ABAJO */
.whatsapp-box span {
  font-size: 13px;
  font-weight: 500;
}

/* hover */
.whatsapp-box:hover {
  transform: translateY(-3px) scale(1.03);
  background: #1ebe5d;
}


/*  COPYRIGHT */

.footer-bottom {
  text-align: center;
  padding: 2PX 0;
  font-size: 11px;
  background: #f5b95f;
  border-top: 1px solid rgba(0,0,0,0.1);
}


/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/*  NUEVO BLOQUE APP  */

.features {
  padding: 0;
  margin: 10px 0;
  list-style: none;
}

.features li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
   gap: 14px;        /* 👈 más espacio entre icono y texto */
  margin-bottom: 12px; /* 👈 separación entre frases */
}

/* círculo naranja */
.check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange1), var(--orange2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  box-shadow: 0 5px 15px rgba(255,106,0,.4);
}

/* el ✔ dentro */
.check::before {
  content: "✔";
}

/*NUEVO BLOQUE GRID*/

.two-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  padding: 80px 60px;
  align-items: stretch;
}

.two-cards > div {
  width: 100%;
}

.card-block {
  background: linear-gradient(135deg, #2a1200, #2a1200);
  border: 1px solid rgba(255, 106, 0, 0.25);
  border-radius: 25px;
  padding: 40px;
  color: white;
  width: 100%;
  max-width: 100%;
  overflow: hidden;

  
 

  display: flex;
  flex-direction: column;
  justify-content: space-between;


  height: 100%;
  min-height: 420px; /* 👈 clave para igualdad */
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  
}

 .card-block.orders {
  padding-left: 30px;
}
  

.card-block {
  flex: 1;
}

.card-block h2 {
  margin-bottom: 20px;
}

.card-block .categories {
  flex-wrap: wrap;
}

/* para que la app no se rompa */
.card-block.app {
  display: flex;
  flex-direction: row; /* 👈 FALTABA ESTO */
  justify-content: space-between;
  /*align-items: center;*/
  gap: 20px;
  height: 320px; /* 👈 altura fija */
  overflow: hidden; /* 👈 clave para recortar */
  align-items: flex-start;
}
.card-block.app,
.card-block.app * {
  text-align: left;
}

.card-block:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
  box-shadow: 0 25px 70px rgba(255, 106, 0, 0.15);
}

.card,
.card-block {
  background: linear-gradient(145deg, #ffcf8a, #ffb35c);
  color: #1a1a1a;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(255, 140, 0, 0.25);
}

.why {
  margin-top: 0;
  padding-top: 5px; /* ajusta según quieras */
}
/*  ZONA DE REPARTO*/



/* =========================
   ZONAS
========================= */
.info-card.zone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 200px; /* antes implícito más grande */
  padding: 20px;
}

.zone-content {
  max-width: 55%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.zone-content h2 {
  font-size: 17px;
  margin: 0;
  line-height: 1.1;
}

.zone-desc {
  font-size: 12px;
  color: rgba(0,0,0,0.75);
  margin: 0;
  line-height: 1.3;
}

.zone-meta {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 4px;
}

/* botón más compacto */
.small-btn {
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 10px;
}

.zone-visual {
  width: 50%;
  opacity: 0.95;
}

.zone-visual img {
  width: 350%;
  height: 350%;
  object-fit: cover;
  transform: scale(1.1);
  opacity: 0.9;
  transform: translateY(29px) translateX(-30px);
}

/* =========================
   NEGOCIOS
========================= */
.info-card.business {
  position: relative;
  display: flex;
  align-items: center;
  height: 200px;
  padding: 20px;
  overflow: hidden;
}

/* TEXTO */
.business-content {
  width: 55%;
  z-index: 2;
}

.business-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.business-text h2 {
  font-size: 17px;
  margin: 0;
  line-height: 1.1;
}

.business-desc {
  font-size: 12px;
  margin: 0;
  color: rgba(0,0,0,0.75);
  line-height: 1.3;
}

.business-meta {
  font-size: 11px;
  opacity: 0.7;
}

/* IMAGEN DERECHA (PROTAGONISTA PERO MÁS LIMPIA QUE MAPA) */
.business-visual {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 130px;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.business-visual img {
  width: 200%;
  height: 200%;
  object-fit: cover;
    transform: scale(1.1);
  opacity: 0.9;
  transform: translateY(100px) translateX(-130px);
}



/* =========================
   OPINIONES
========================= */
.info-card.reviews {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
  padding: 20px;
}

/* CONTENEDOR */
.reviews-slider {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.reviews-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


/* HEADER */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviews-header h2 {
  font-size: 17px;
  margin: 0;
}

.reviews-score {
  font-size: 12px;
  background: rgba(0,0,0,0.1);
  padding: 4px 8px;
  border-radius: 8px;
}

/* REVIEW */
.review-card {
  min-width: 100%;
  opacity: 0.6;
  transform: scale(0.96);
  transition: all 0.4s ease;
}

.review-card.active {
  opacity: 1;
  transform: scale(1);
}

/* TEXTOS */
.quote {
  font-size: 12px;
  margin-bottom: 8px;
}


.review-footer {
  display: flex;
  justify-content: space-between;
}

.name {
  font-size: 11px;
  opacity: 0.7;
}

.stars {
  font-size: 12px;
}


/* DOTS */
.dots {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

/* DOTS */
.dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.dots .active {
  width: 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange1), var(--orange2));
}



/* RESPONSIVE PRO */

@media(max-width:768px){

  .two-cards {
    grid-template-columns: 1fr;
  }

  .card-block.app {
    flex-direction: column;
    text-align: left;
  }
  .hero, .app {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .steps-grid,
  .categories {
    flex-direction: column;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }


  .info-card.zone,
  .info-card.business {
    flex-direction: column;
  }

  .zone-visual,
  .business-visual {
    position: relative;
    width: 100%;
    height: 180px;
  }

  .zone-content,
  .business-content {
    max-width: 100%;
  }

   .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-content{
  position: relative;
  z-index: 100;
}

.cta{
  position: relative;
  z-index: 101;
}

.cta a{
  position: relative;
  z-index: 102;
}

.bg-glow{
  pointer-events: none;
}

.hero-img{
  pointer-events: none;
}

}