/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f4f4f4;
  color: #333;
}

/* HEADER: HERO BANNER */
.hero-empire {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #f2f8fc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  padding: 2rem;
}

.hero-empire .hero-content {
  z-index: 2;
  max-width: 800px;
  position: relative;
}

.hero-empire .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.hero-empire .cta-button {
  background: #5aa8dc;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
  position: relative;
  z-index: 2;
}

.hero-empire .cta-button:hover {
  background: #428cb7;
}

/* Elementos flotantes */
.floating-block {
  position: absolute;
  opacity: 0.95;
  animation: floatZoom 6s ease-in-out infinite;
  z-index: 1;
}

/* Posiciones + tamaños personalizados */
.block-1  { top: 10%;  left: 5%;    width: 108px; animation-delay: 0s;    }
.block-2  { top: 20%;  right: 8%;   width: 120px; animation-delay: 0.2s;  }
.block-3  { bottom: 12%; left: 15%; width: 114px; animation-delay: 0.4s;  }
.block-4  { bottom: 8%; right: 15%; width: 126px; animation-delay: 0.6s;  }
.block-5  { top: 15%;  left: 35%;   width: 96px;  animation-delay: 0.8s;  }
.block-6  { bottom: 20%; left: 45%; width: 120px; animation-delay: 1s;    }
.block-7  { top: 25%;  right: 30%;  width: 132px; animation-delay: 1.2s;  }
.block-8  { bottom: 30%; right: 5%; width: 108px; animation-delay: 1.4s;  }
.block-9  { top: 5%;   right: 50%;  width: 120px; animation-delay: 1.6s;  }
.block-10 { top: 28%;  left: 25%;   width: 108px; animation-delay: 1.8s;  }
.block-11 { bottom: 15%; right: 30%; width: 120px; animation-delay: 2s;   }
.block-12 { top: 50%;  left: 10%;   width: 102px; animation-delay: 2.2s;  }

/* Animación combinada */
@keyframes floatZoom {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.5);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-empire {
    background-color: #eef4f8;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 2.5rem 1.5rem;
  }

  .hero-empire .hero-content {
    background-color: #ffffffee;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 2;
    position: relative;
  }

  .hero-empire .hero-title {
    font-size: 1.6rem;
    color: #222;
    z-index: 2;
    position: relative;
  }

  .hero-empire .cta-button {
    background: #5aa8dc;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    position: relative;
    z-index: 2;
  }

  .floating-block {
    filter: blur(2px);
    opacity: 0.3;
    z-index: 0;
  }
}

/* SECCIÓN: DESCRIPCIÓN DE TIENDAS (2 COLUMNAS) */
.store-description {
  padding: 3rem 2rem;
  background-color: #fff;
  text-align: center;
}

.store-description h2 {
  font-size: 2.3rem;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
  margin-bottom: 2.5rem;
  position: relative;
  animation: fadeUp 1s ease-in-out both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.store-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-cards.two-columns .store-card {
  width: 45%;
}

.store-card {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 1.5rem;
  min-width: 280px;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.store-card img {
  width: 60%;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 8px;
}

.store-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.price {
  font-size: 1.4rem;
  color: #5aa8dc;
  margin-bottom: 1rem;
}

.store-card .description {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
}

.features {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 0;
}

.features li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
  color: #555;
  line-height: 1.4;
}

.features li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}

/* Extras */
.store-card .delivery,
.store-card .maintenance {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background: #5aa8dc;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #428cb7;
}

/* Responsive */
@media (max-width: 768px) {
  .store-cards.two-columns .store-card {
    width: 100%;
  }

  .store-description h2 {
    font-size: 2rem;
  }

  .store-card h3 {
    font-size: 1.5rem;
  }

  .price {
    font-size: 1.2rem;
  }
}

/* SECCIÓN: CUSTOM */
.custom-solution {
  background: linear-gradient(to bottom right, #f6f8fb, #eaf1f8);
  padding: 4rem 2rem;
  text-align: center;
}

.custom-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.custom-solution h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 1rem;
}

.custom-lead {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.custom-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.custom-feature {
  flex: 1;
  min-width: 280px;
  padding: 1.5rem;
  background-color: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.custom-feature:hover {
  transform: translateY(-6px);
}

.custom-feature img {
  width: 70px;
  margin-bottom: 1rem;
}

.custom-feature h4 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.custom-feature p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.custom-cta {
  background-color: #222;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: background 0.3s ease;
}

.custom-cta:hover {
  background-color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-grid {
    flex-direction: column;
    align-items: center;
  }

  .custom-solution h2 {
    font-size: 1.8rem;
  }

  .custom-feature img {
    width: 60px;
  }

  .custom-feature h4 {
    font-size: 1.2rem;
  }

  .custom-lead {
    font-size: 1.05rem;
  }
}

/* SECCIÓN: WHY WE DO IT */
.why-we-do-it {
  background-color: #fff;
  padding: 4rem 2rem;
  margin-top: 3rem;
  text-align: center;
  border-top: 2px solid #e0e0e0;
}

.why-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.why-we-do-it h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 700;
}

.why-we-do-it p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.2rem;
}

/* SECCIÓN: FINAL CTA */
.final-cta {
  background-color: #5aa8dc;
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
}

.final-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.final-cta .cta-button {
  background: #fff;
  color: #5aa8dc;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.final-cta .cta-button:hover {
  background: #e4e4e4;
}

/* SECCIÓN: QUICK SUMMARY */
.quick-summary {
  background-color: #f2f8fc;
  padding: 3rem 2rem;
  text-align: center;
}

.quick-summary h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.summary-list li {
  font-size: 1.1rem;
  line-height: 2;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .store-cards {
    flex-direction: column;
    align-items: center;
  }
  .store-card {
    width: 80%;
  }
}
