/* Reset y estilos base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1f1f1f;
  background-color: #ffffff;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

a:hover {
  text-decoration: underline;
}

/* Contenedores y componentes reutilizables */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.btn-outline {
  background-color: transparent;
  color: #1f1f1f;
  border: 1px solid #747775;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
}

.btn-outline:hover {
  background-color: #f8f9fa;
  text-decoration: none;
}

/* Sección hero y tarjetas destacadas */
.hero-title-section {
  text-align: center;
  padding: 60px 20px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.hero-title-section h1 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-title-section p {
  font-size: 15px;
  color: #444746;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.hero-card {
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 420px;
}

.hero-card-green {
  background-color: #c5d8b7;
}

.hero-card-grey {
  background-color: #e2e7e7;
}

.hero-card .tag {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-card h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
}

.hero-card .subtitle {
  font-size: 14px;
  color: #444746;
  margin-bottom: 16px;
}

.hero-card .price {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.hero-card .financing {
  font-size: 12px;
  color: #5f6368;
  margin-bottom: 24px;
}

/* Navegación por categorías */
.category-pills {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.pill-item {
  background-color: #f8f9fa;
  border-radius: 20px;
  padding: 16px;
  width: 150px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.pill-item:hover {
  background-color: #f1f3f4;
}

.pill-item img {
  width: auto;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.pill-item span {
  font-size: 13px;
  font-weight: 500;
  display: block;
}

/* Secciones con acordeón e imágenes */
.section-header-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 8px;
}

.section-subtitle-link {
  margin-bottom: 40px;
  display: inline-block;
}

.split-feature-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-media-card {
  background-color: #f8f9fa;
  border-radius: 28px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion-list {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-top: 1px solid #e0e0e0;
  padding: 24px 0;
  cursor: pointer;
}

.accordion-item:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}

.accordion-content {
  margin-top: 12px;
  color: #444746;
  font-size: 14px;
  line-height: 1.5;
}

/* Banner de producto y rejilla bento */
.premium-banner {
  background-color: #f8f9fa;
  border-radius: 28px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 100px;
  align-items: center;
}

.bento-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  width: 100%;
}

.bento-card {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.bento-card-green {
  background-color: #d2e8d4;
  padding: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* Tarjetas de información y artículos */
.cards-carousel-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.info-card img {
  border-radius: 20px;
  margin-bottom: 16px;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.info-card h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}

.callout-banner {
  background-color: #f8f9fa;
  border-radius: 16px;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0 80px;
}

.callout-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Sección de beneficios de compra */
.ambition-section {
  background-color: #f8f9fa;
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 100px;
}

.ambition-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 0;
  align-items: center;
}

.ambition-gallery img {
  border-radius: 20px;
  max-height: 250px;
  object-fit: cover;
}

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

.why-buy-card {
  background-color: #f8f9fa;
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.why-buy-card .material-symbols-outlined {
  font-size: 32px;
  margin-bottom: 16px;
  color: #1a73e8;
}

.why-buy-card p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Adaptabilidad a pantallas pequeñas */
@media (max-width: 900px) {
  .hero-cards-grid,
  .split-feature-layout,
  .premium-banner,
  .cards-carousel-3,
  .why-buy-grid {
    grid-template-columns: 1fr;
  }
}