/* ============================================================
   PAYRO — home.css
   Estilos específicos de index.html
   ============================================================ */

/* --- HERO --- */
.hero {
  background: var(--negro);
  min-height: 540px;
  display: flex;
  align-items: center;
  padding: 80px var(--sp-lg);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: #1A1A1A;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  color: var(--blanco-p);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero h1 em {
  font-style: italic;
  color: var(--dorado);
}

.hero .hero-line {
  width: 44px;
  height: 2px;
  background: var(--rojo);
  margin: 20px 0;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: #BDBDBD;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #777;
}

.hero-trust-dot {
  width: 5px;
  height: 5px;
  background: var(--rojo);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-img-placeholder {
  width: 240px;
  height: 340px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  gap: 10px;
}

/* --- EL ESTUDIO (HOME) --- */
.estudio-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.estudio-imagen {
  position: relative;
}

.estudio-img-placeholder {
  background: var(--gris);
  border: 1px solid #DDD;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #AAA;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  gap: 10px;
}

.estudio-img-placeholder span:first-child {
  font-size: 28px;
  color: #CCC;
}

.estudio-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--negro);
  line-height: 1.15;
  margin-bottom: 12px;
}

.estudio-content h2 em {
  font-style: italic;
}

.estudio-datos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.estudio-dato {
  border-left: 2px solid var(--rojo);
  padding-left: 14px;
}

.estudio-dato-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--negro);
  line-height: 1;
  margin-bottom: 4px;
}

.estudio-dato-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gris-t);
  line-height: 1.4;
}

/* --- RESEÑAS --- */
.resenas-header {
  text-align: center;
  margin-bottom: 48px;
}

.resenas-promedio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.estrellas-big {
  font-size: 20px;
  color: var(--dorado);
  letter-spacing: 2px;
}

.num-promedio {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--blanco-p);
}

.resenas-total {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.resenas-titulo {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #888;
  font-family: var(--font-serif);
}

.resenas-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  text-decoration: underline;
  text-decoration-color: #333;
  margin-top: 8px;
  transition: color var(--trans);
}

.resenas-link:hover { color: var(--blanco-p); }

/* --- RESPONSIVE HOME --- */
@media (max-width: 1024px) {
  .estudio-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero::after { display: none; }
  .hero-image { display: none; }
  .hero { min-height: auto; padding: 60px var(--sp-lg); }
}

@media (max-width: 768px) {
  .estudio-datos { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}
