/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #fce4ee 0%, #fdf0f6 60%, #fff5f9 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}

.hero-text { max-width: 520px; }

.hero-text h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--pink);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-img {
  position: relative;
  flex-shrink: 0;
}

.hero-img img {
  height: 420px;
  object-fit: contain;
}

/* Quick form on hero */
.hero-form {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(200,0,110,0.12);
  max-width: 380px;
  margin-top: 24px;
}

.hero-form h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 16px;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 72px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text);
}

.product-card:hover {
  border-color: var(--pink);
  box-shadow: 0 4px 20px rgba(200,0,110,0.1);
  transform: translateY(-2px);
}

.product-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  object-fit: contain;
}

.product-card span {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

/* ===== APP SECTION ===== */
.app-section {
  background: linear-gradient(135deg, #fff5f9 0%, #fffbf0 100%);
  border-radius: 20px;
  margin: 0 24px;
  overflow: hidden;
}

.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  padding: 48px;
}

.app-phone {
  display: flex;
  justify-content: center;
}

.app-phone img {
  height: 400px;
  object-fit: contain;
  border-radius: 20px;
}

.app-content h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 16px;
}

.app-content p { margin-bottom: 8px; color: #555; }

.app-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.app-feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.app-download {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.app-btn:hover { opacity: 0.8; }
.app-btn svg { width: 24px; height: 24px; fill: white; }

.app-btn-text { line-height: 1.2; }
.app-btn-text small { display: block; font-size: 10px; font-weight: 400; opacity: 0.8; }

/* ===== PROMOTIONS ===== */
.promos-section { padding: 72px 0; }

.promo-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.promo-content h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 12px;
}

.promo-content p { color: var(--gray); margin-bottom: 20px; }

.promo-img img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  max-height: 360px;
}

.promo-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.promo-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  background: var(--pink);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.promo-nav-btn:hover { background: var(--pink-dark); }
.promo-nav-btn.outline { background: transparent; color: var(--pink); }
.promo-nav-btn.outline:hover { background: var(--pink); color: #fff; }

/* ===== RECOGNITIONS ===== */
.recognitions-section { padding: 72px 0; }

.recognition-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.recognition-card img {
  width: 100%;
  border-radius: var(--radius);
}

.recognition-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 8px;
}

/* ===== ARTICLES ===== */
.articles-section {
  background: linear-gradient(180deg, #fff 0%, #fdf0f6 100%);
  padding: 72px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.article-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
  cursor: pointer;
}
.article-card:hover { box-shadow: 0 8px 30px rgba(200,0,110,0.1); transform: translateY(-2px); }

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-card-body { padding: 16px; }

.article-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tag-emprende { background: var(--pink); color: #fff; }
.tag-digitaliza { background: var(--orange); color: #fff; }

.article-date { font-size: 12px; color: var(--gray); margin-bottom: 6px; }

.article-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.articles-cta {
  text-align: center;
  margin-top: 32px;
}

/* ===== CONTACT SECTION ===== */
.contact-section { padding: 72px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-text h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 12px;
}

.contact-text p { color: var(--gray); margin-bottom: 24px; }

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  cursor: pointer;
}
.contact-btn:hover { border-color: var(--pink); color: var(--pink); }
.contact-btn svg { width: 22px; height: 22px; }

.contact-img img {
  width: 100%;
  border-radius: var(--radius);
  max-height: 320px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-text h1 { font-size: 34px; }
  .hero-img { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .app-inner { grid-template-columns: 1fr; }
  .promo-slider { grid-template-columns: 1fr; }
  .recognition-card { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}
