
/* ===================== */
/* 🖤 NAVBAR */
/* ===================== */

.navbar {
  background: #000;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

/* LOGO */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: bold;
}

/* MENU */
.menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

/* HOVER */
.menu li a:hover {
  color: white;
}



/* ===================== */
/* 📰 NOTICIAS */
/* ===================== */

.news {
  padding: 40px;
}

.news h2 {
  margin-bottom: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

/* NOTICIA PRINCIPAL */
.main-news {
  grid-column: span 2;
  background: white;
  padding: 15px;
}

.main-news img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.main-news h2 {
  margin-top: 10px;
  font-size: 28px;
}

/* NOTICIAS PEQUEÑAS */
.side-news {
  background: white;
  padding: 10px;
}

.side-news img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.side-news h3 {
  margin-top: 8px;
  font-size: 16px;
}
/* HISTORIAS */
/* SECCION HISTORIAS */

.stories{
  background:#f2f2f2;
  padding:40px;
}

.stories-title{
  font-size:40px;
  margin-bottom:40px;
  font-family:'Playfair Display', serif;
  color:#111;
}

.stories-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:30px;
}

.story-card{
  width:450px;
  cursor:pointer;
  transition:0.3s;
}

.story-card:hover{
  transform:translateY(-5px);
}

.story-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.story-card h3{
  font-size:28px;
  line-height:1.3;
  margin-top:15px;
}

.story-card span{
  display:block;
  margin-top:10px;
  color:gray;
  font-size:15px;
}
/* FLECHAS */

.arrow {
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 35px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.3s;
}

.arrow:hover {
  background: white;
  color: black;
}

.left {
  margin-right: 15px;
}

.right {
  margin-left: 15px;
}
/* ===================== */
/* MERCH SLIDER */
/* MERCH PREMIUM */

.merch {
  padding: 80px 50px;
  background: white;
}

.merch h2 {
  font-size: 42px;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
}

.merch-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}



.merch-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.merch-slider::-webkit-scrollbar{
  display:none;
}

.shop-card {
  min-width: 260px;
  flex-shrink: 0;
}

.shop-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  background: #f5f5f5;
}

.shop-card h4 {
  margin-top: 15px;
  font-size: 14px;
  font-weight: bold;
}

.shop-card p {
  font-size: 14px;
  color: #555;
  margin: 5px 0 10px;
}

.shop-card span {
  font-size: 15px;
  font-weight: bold;
}

/* FLECHAS */

.arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.08);
  cursor: pointer;
  font-size: 28px;
  transition: 0.3s;
}

.arrow:hover {
  background: black;
  color: white;
}

.merch-left {
  margin-right: 15px;
}

.merch-right {
  margin-left: 15px;
}

@media (max-width:768px){

  .shop-card{
    min-width: 100%;
  }

}


/* ===================== */
/* 📱 RESPONSIVE */
/* ===================== */



 @media (max-width: 768px) {

  .news-grid {
    grid-template-columns: 1fr;
  }

  .main-news {
    grid-column: span 1;
  }

  .merch-grid {
    grid-template-columns: 1fr;
  }

}

 /* =========================
   FOOTER REDES SOCIALES
========================= */
/* =========================
   FOOTER
========================= */

.footer {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-bottom: 40px;
}

.social-icons a {
  width: 65px;
  height: 65px;
  background: white;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  color: black !important;
  font-size: 28px;
  text-decoration: none;

  transition: 0.3s ease;
}

.social-icons a:hover {
  background: black;
  color: white !important;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: black !important;
  text-decoration: none;
  font-size: 18px;
}

/* ===================== */
/* 📰 PAGINA NOTICIA */
/* ===================== */

/* ===== PRODUCT PAGE ===== */

/* ========================= */
/* PRODUCT PAGE */
/* ========================= */

.product-page{

  display:grid;

  grid-template-columns: 1fr 1fr;

  gap:40px;

  padding:40px;

  max-width:1200px;

  margin:auto;

  align-items:start;

  background:#f5f5f5;
}

/* IMAGEN */

.product-image img{

  width:100%;

  max-width:550px;

  display:block;

  margin:auto;

  border-radius:8px;
}

/* INFO */

.product-info{

  padding-top:20px;
}

.breadcrumb{

  color:#777;

  font-size:14px;

  margin-bottom:20px;
}

.product-info h1{

  font-size:42px;

  margin-bottom:15px;

  font-family:'Playfair Display', serif;
}

.product-subtitle{

  color:#666;

  margin-bottom:20px;

  font-size:17px;
}

.product-price{

  font-size:32px;

  font-weight:bold;

  margin:30px 0;
}

/* SPECS */

.product-specs{

  margin-bottom:30px;
}

.product-specs p{

  margin-bottom:10px;

  line-height:1.6;
}

/* BOTON */

.add-cart{

  background:black;

  color:white;

  border:none;

  padding:16px 30px;

  font-size:15px;

  cursor:pointer;

  transition:0.3s;
}

.add-cart:hover{

  background:#222;
}

/* DETALLES */

.product-details{

  margin-top:40px;

  border-top:1px solid #ddd;

  padding-top:30px;
}

.product-details h3{

  margin-bottom:15px;

  font-family:'Playfair Display', serif;
}

.product-details p{

  line-height:1.8;

  color:#444;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media(max-width:900px){

  .product-page{

    grid-template-columns:1fr;

    gap:20px;

    padding:30px;
  }

  .product-info h1{

    font-size:34px;
  }

  .product-price{

    font-size:28px;
  }

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:600px){

  .product-details p{

  font-size:14px;
}

.product-details p{

  font-size:14px;
}
/* ========================= */
/* 📰 PAGINA NOTICIA */
/* ========================= */

.article-layout{

  display:grid;
  grid-template-columns: 2.2fr 0.9fr;
  gap:35px;

  max-width:1100px;
  margin:auto;

  padding:40px 25px;
}

/* CONTENIDO */

.article-content h1{

  font-size:52px;
  line-height:1.05;
  margin-bottom:20px;

  font-family:'Playfair Display', serif;
}

.article-author{

  font-weight:bold;
  margin-bottom:8px;
  font-size:14px;
}

.article-date{

  color:#777;
  margin-bottom:25px;
  font-size:13px;
}

.article-content img{

  width:100%;
  margin:25px 0;
}

.article-content p{

  font-size:16px;
  line-height:1.8;
  margin-bottom:22px;
  color:#222;
}

/* SIDEBAR */

.sidebar h3{

  font-size:20px;
  margin-bottom:20px;

  font-family:'Playfair Display', serif;
}

.side-item{

  margin-bottom:25px;
  border-bottom:1px solid #ddd;
  padding-bottom:15px;
}

.side-item img{

  width:100%;
  height:120px;
  object-fit:cover;
  margin-bottom:10px;
}

.side-item p{

  font-size:14px;
  line-height:1.4;
  font-weight:bold;
}

/* RESPONSIVE */

@media(max-width:900px){

  .article-layout{

    grid-template-columns:1fr;
  }

  .article-content h1{

    font-size:38px;
  }
}

}

  .product-page{

    padding:20px;
  }

  .product-info h1{

    font-size:28px;

    line-height:1.2;
  }

  .product-subtitle{

    font-size:15px;
  }

  .product-price{

    font-size:24px;
  }

  .add-cart{

    width:100%;
  }

  .product-details p{

  font-size:14px;
}



/* ========================= */
/* 📰 PAGINA NOTICIA */
/* ========================= */

.article-layout{

  display:grid;

  grid-template-columns: 2.2fr 0.9fr;

  gap:35px;

  max-width:1100px;

  margin:auto;

  padding:40px 25px;
}

.article-content h1{

  font-size:52px;

  line-height:1.05;

  margin-bottom:20px;

  font-family:'Playfair Display', serif;
}

.article-author{

  font-weight:bold;

  margin-bottom:8px;

  font-size:14px;
}

.article-date{

  color:#777;

  margin-bottom:25px;

  font-size:13px;
}

.article-content img{

  width:100%;

  margin:25px 0;
}

.article-content p{

  font-size:16px;

  line-height:1.8;

  margin-bottom:22px;

  color:#222;
}

.sidebar h3{

  font-size:20px;

  margin-bottom:20px;

  font-family:'Playfair Display', serif;
}

.side-item{

  margin-bottom:25px;

  border-bottom:1px solid #ddd;

  padding-bottom:15px;
}

.side-item img{

  width:100%;

  height:120px;

  object-fit:cover;

  margin-bottom:10px;
}

.side-item p{

  font-size:14px;

  line-height:1.4;

  font-weight:bold;
}
/* SELECT TALLAS camisa */

.size-select{

  width:200px;

  padding:12px;

  border:1px solid #ccc;

  font-size:15px;

  margin-top:10px;

  background:white;
}
 /* EFECTO PREMIUM PRODUCTOS */

.shop-card{

  transition: 0.35s ease;

}

.shop-card:hover{

  transform: translateY(-10px);

  box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}

/* WHATSAPP FLOAT */

.whatsapp-float{

  position: fixed;

  width: 60px;

  height: 60px;

  bottom: 25px;

  right: 25px;

  background: #25D366;

  color: white;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 32px;

  text-decoration: none;

  box-shadow: 0 5px 15px rgba(0,0,0,0.25);

  transition: 0.3s ease;
}

.whatsapp-float:hover{

  transform: scale(1.12);

  box-shadow: 0 8px 25px rgba(37,211,102,0.6);

}

/* EFECTO HOVER NOTICIAS */

.main-news,
.side-news{

  transition: 0.35s ease;

}

.main-news:hover,
.side-news:hover{

  transform: translateY(-8px);

  box-shadow: 0 15px 35px rgba(0,0,0,0.12);

}

.main-news,
.side-news{

  overflow: hidden;

}

/* CONTENEDOR GENERAL */
.news-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px;
}

/* NOTICIA PRINCIPAL */
.main-news {
  flex: 2;
}

.main-news h1 {
  font-size: 55px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.main-news img {
  width: 100%;
  border-radius: 8px;
}

/* SIDEBAR */
.sidebar {
  flex: 1;
}

/* TITULO */
.sidebar h3 {
  font-size: 32px;
  margin-bottom: 25px;
}

/* CUADROS */
.news-card {
  background: #efefef;
  padding: 22px;
  margin-bottom: 18px;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-3px);
}

.news-card h4 {
  font-size: 20px;
  line-height: 1.4;
  color: black;
  margin-bottom: 10px;
}

.news-card span {
  color: gray;
  font-size: 14px;
}

.sidebar-art{
  margin-top: 9px;

  background: transparent;

  border-radius: 10px;

  overflow: hidden;

}

.sidebar-art img{
  width: 70%;

  height: 200px;

  object-fit: cover;

  padding: 20px 45px 1px;
  display: block;
}

.sidebar-art h4{
  color: black;

  padding: 15px 15px 5px;

  font-size: 18px;
}

.sidebar-art p{
  color: #aaa;

  font-size: 14px;

  line-height: 1.6;

  padding: 0 15px 20px;
}



  

  body{
    overflow-x: hidden;
  }

  .navbar{
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .menu{
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .news,
  .stories,
  .merch{
    padding: 40px 20px;
  }

  .news-grid{
    grid-template-columns: 1fr;
  }

  .main-news h1,
  .article-content h1{
    font-size: 34px;
    line-height: 1.2;
  }

  .stories-title,
  .merch h2{
    font-size: 30px;
  }

  .story-card{
    width: 100%;
  }

  .shop-card{
    min-width: 220px;
  }

  .article-layout{
    padding: 20px;
  }

  .article-content p{
    font-size: 15px;
    line-height: 1.7;
  }

  .article-content img,
  .main-news img{
    width: 100%;
    height: auto;
  }

  .sidebar h3{
    font-size: 26px;
  }

  .news-card h4{
    font-size: 17px;
  }

   }
/* 📱 politicas*/
.footer {
  text-align: center;
  padding: 50px 20px;
  background: #f5f5f5;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #dcdcdc;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-legal a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #000;
}

.footer-bottom p {
  margin: 0;
  color: #777;
  font-size: 13px;
}


/* ===================== */
/* HERO / INICIO */

/* ===================== */
/* HERO / INICIO */
/* ===================== */

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:8px 8%;
    min-height:9vh;
    background:#f8f8f8;
}

.hero-text{
    width:50%;
}

.hero-tag{
    display:inline-block;
    font-size:14px;
    letter-spacing:4px;
    color:#666;
    margin-bottom:20px;
}

.hero-text h1{
    font-family:'Playfair Display', serif;
    font-size:70px;
    line-height:1.1;
    color:#111;
    margin-bottom:20px;
}

.hero-line{
    width:1px;
    height:2px;
    background:#000;
    margin:25px 0;
}

.hero-text p{
    font-size:20px;
    line-height:1.8;
    color:#555;
    max-width:500px;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:30px;
    font-weight:bold;
}

  .hero-image{
    width:100%;
    order:2; /* imagen debajo */
    margin-top:200px;
    transform: none;
  }

  .hero-image img{
    width:480px;
    max-width:90%;
    height:auto;
    
}

/* 📱 HERO MOBILE */

@media (max-width: 768px){

  .hero{
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .hero-text{
    width: 100%;
  }

  .hero-text h1{
    font-size: 55px;
    line-height: 1.05;
  }

  .hero-text p{
    max-width: 100%;
    font-size: 18px;
  }

  .hero-image{
    width: 100%;
    margin-top: 25px;
    transform: none; /* elimina el desplazamiento */
    order: 3;
  }

  .hero-image img{
    width: 400px;
    max-width: 100%;
    margin: auto;
    display: block;
  }

}

  }

