/* MonsterDrop — plantilla de PÁGINA "Home 1 — Pulmoria" (home de marca).
 * Complementa lung-clear.css (mismo sistema de diseño / paleta / clases .lc-*
 * de la plantilla de producto hermana) con las piezas propias de una home:
 * hero de marca, tarjetas de testimonio en video y el panel de producto
 * embebido al final de la página.
 * @package MonsterDrop
 */

/* HERO DE MARCA */
.hp-hero { padding: 50px 0 60px; background: #fff; }
.hp-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.hp-hero-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--lc-muted, #64748B); margin-bottom: 14px; }
.hp-hero-title { font-size: 34px; font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.hp-hero-title span { color: var(--lc-green, #00B259); }
.hp-hero-desc { font-size: 15px; color: var(--lc-muted, #64748B); margin-bottom: 22px; max-width: 460px; }
.hp-hero-img { border-radius: 20px; overflow: hidden; }
.hp-hero-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* TESTIMONIOS EN VIDEO (tarjetas con overlay de play) */
.hp-videos-section { padding: 50px 0; }
.hp-videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.hp-video-card { border: 1px solid var(--lc-border, #E2E8F0); border-radius: 14px; overflow: hidden; background: #fff; }
.hp-video-thumb { position: relative; aspect-ratio: 4/3; }
.hp-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hp-play-badge { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(7,59,40,.15); }
.hp-play-badge span { width: 44px; height: 44px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 4px 10px rgba(0,0,0,.2); }
.hp-video-body { padding: 14px; }
.hp-video-body .lc-stars { display: block; margin-bottom: 8px; }
.hp-video-body p { font-size: 13px; color: var(--lc-text, #1E293B); margin-bottom: 10px; }
.hp-video-body strong { font-size: 13px; }

/* PANEL DE PRODUCTO EMBEBIDO */
.hp-product-panel { padding: 50px 0 60px; background: var(--lc-mint-bg, #EAF7EE); }
.hp-product-panel-title { text-align: center; font-size: 24px; font-weight: 800; margin-bottom: 26px; }
.hp-product-box { background: #fff; border-radius: 20px; padding: 30px; }

@media (max-width: 900px) {
	.hp-hero-grid { grid-template-columns: 1fr; }
	.hp-hero-img { order: -1; }
	.hp-videos-grid { grid-template-columns: 1fr; }
	.hp-product-box { padding: 18px; }
}
