/* /assets/css/pages/home.css */

/* Donaciones RM Studios (solo home) */
.rm-donate{
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(255,205,56,.18);
  background: rgba(0,0,0,.30);
  border-radius: 18px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;

  text-align: left;
}

.rm-donate-text{
  display:flex;
  flex-direction:column;
  gap: 6px;
}

.rm-donate-text strong{
  font-family:"Cinzel",serif;
  letter-spacing:.4px;
  color:#fff;
}

.rm-donate-text span{
  opacity:.85;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,.85);
}

.rm-donate-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration:none;
  color: #ffcd38;

  border: 1px solid rgba(255,205,56,.35);
  background: rgba(255,205,56,.10);
  white-space: nowrap;
}

.rm-donate-btn:hover{
  background: rgba(255,205,56,.14);
}

@media (max-width: 640px){
  .rm-donate{
    flex-direction:column;
    align-items:stretch;
    text-align:center;
  }
  .rm-donate-btn{ width:100%; }
}

.home-products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:26px;
}

.home-product-card{
  position:relative;
  padding:20px;
  border-radius:24px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,205,56,.12);
  display:flex;
  flex-direction:column;
  gap:14px;
  transition:.25s ease;
}

.home-product-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,205,56,.35);
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.home-product-card-premium{
  background:
    linear-gradient(180deg, rgba(255,205,56,.08), rgba(255,255,255,.02)),
    rgba(255,255,255,.03);
  border:1px solid rgba(255,205,56,.3);
}

.home-product-tag{
  display:inline-flex;
  width:max-content;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,205,56,.12);
  border:1px solid rgba(255,205,56,.25);
  color:#ffcd38;
  font-size:12px;
  font-weight:600;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.home-product-image{
  width:100%;
  aspect-ratio:4 / 3;
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}

.home-product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.home-product-card h3{
  margin:0;
  font-size:24px;
  line-height:1.2;
  color:#fff;
}

.home-product-card p{
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.7;
  font-size:14px;
}

.home-product-price{
  margin-top:auto;
  font-size:30px;
  font-weight:700;
  color:#ffcd38;
}

.home-product-price span{
  font-size:14px;
  opacity:.7;
  margin-left:6px;
}

.home-product-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.home-products-cta{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px;
}

@media (max-width:1100px){
  .home-products-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:700px){
  .home-products-grid{
    grid-template-columns:1fr;
  }

  .home-product-actions .btn,
  .home-products-cta .btn{
    width:100%;
    justify-content:center;
  }
}
.home-press-section {
    padding: 80px 8%;
    background: linear-gradient(180deg, #050509, #111111);
    color: #fff;
}

.home-press-head {
    max-width: 760px;
    margin-bottom: 35px;
}

.home-press-head span {
    color: #ffcd38;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.home-press-head h2 {
    font-size: 38px;
    margin: 12px 0;
}

.home-press-head p {
    color: #f6e7ba;
    line-height: 1.6;
}

.home-press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.home-press-card {
    background: #111;
    border: 1px solid rgba(255,205,56,.18);
    border-radius: 22px;
    overflow: hidden;
}

.home-press-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.home-press-body {
    padding: 22px;
}

.home-press-body small {
    color: #ffcd38;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.home-press-body h3 {
    font-size: 20px;
    margin: 12px 0;
}

.home-press-body p {
    color: #ccc;
    line-height: 1.5;
}

.home-press-body a,
.home-press-more a {
    display: inline-block;
    margin-top: 12px;
    color: #000;
    background: #ffcd38;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
}

.home-press-more {
    margin-top: 35px;
}