* 
  :root {
    --bg: #c7d0c6;
    --card:#e1e6e1; --text:#222; --muted:#555; --shadow:0 12px 30px rgba(0,0,0,.18) 
  }

  * { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Roboto', system-ui, Arial;
  color: white;

  background-color: #c7d0c6 !important;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  background-size: 200px;
}



  .container {
    max-width: 1100px;
    margin: 36px auto;
    padding: 0 16px;
  }

  /* Header */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #222;
    text-shadow: 2px 2px 4px rgba(0,0,0,.2);
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
  }

  nav a {
    color: #222;
    text-decoration: none;
    margin: 4px 0;
    font-weight: 500;
    transition: .2s;
  }

  nav a:hover { color: #666; }

  nav a.cta {
    color: #fff;
    background: #222;
    padding: 8px 14px;
    border-radius: 10px;
  }

  /* Hero */
  .hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: center;
    margin-top: 28px;
  }

  .hero .text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    margin: 0 0 8px;
    font-weight: 800;
  }

h3{
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #222;

  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

/* línea sutil debajo */
h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:40%;
  height:2px;
  background:#222;
  opacity:.6;
}


  .hero .text p {
    color: #333;
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.5;
  }

  .buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn {
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
    display: inline-block;
    text-align: center;
  }

  .btn.primary { background: #222; color: #fff; }
  .btn.primary:hover { background: #444; }
  .btn.ghost { background: transparent; border: 1px solid #444; color: #222; }

  /* Card */
  .card {
  background: #d3dbd2; /* 👈 pistache más claro */
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}

  .album-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
  }

  .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Grid Sections */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 28px;
  }

  .card.small { padding: 14px; }

  iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: none;
  }

  footer {
    margin-top: 40px;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
  }

  footer .social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  footer a.btn {
    padding: 8px 10px;
    background: #222;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
  }

  footer a.btn:hover {
    background: #444;
  }

  /* RESPONSIVE */
  @media (max-width: 980px) {
    .hero {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .hero .text h1 { font-size: 32px; }
    .buttons { justify-content: center; }
  }

  @media (max-width: 560px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }
    nav {
      justify-content: flex-start;
      gap: 10px;
    }
    .logo { font-size: 24px; }
    .hero .text p { font-size: 16px; }
  }

.merchSwiper img{
width:100%;
border-radius:10px;
}

.merchSwiper h3{
font-size:14px;
margin-top:10px;
}

.swiper-slide{
text-align:center;
}

.swiper-slide img {
    width: 100%;
    min-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    background: #e1e6e1; /* fallback si falla la imagen */
}

.precio {
    font-weight: 700;
    margin: 6px 0;
    color: #222;
}
.product-card {
    background:#e1e6e1;
    padding:16px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.1);
}

.img-container {
    position:relative;
    width:100%;
    height:250px;
    overflow:hidden;
    border-radius:8px;
}

.img-container img {
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    top:0; left:0;
    transition: opacity .3s ease;
}

.img-container .hover-img {
    opacity:0;
}

.img-container:hover .hover-img {
    opacity:1;
}

.img-container:hover img:not(.hover-img) {
    opacity:0;
}

#productos img{
width:100%;
height:260px;
object-fit:cover;
border-radius:10px;
}

.buy{
display:inline-block;
margin-top:8px;
padding:6px 12px;
background:#000;
color:#fff;
text-decoration:none;
border-radius:6px;
font-size:14px;
}

.img-hover{
  position:relative;
  width:100%;
  overflow:hidden;
}

.img-hover img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}

.img-hover .img-back{
  position:absolute;
  top:0;
  left:0;
  opacity:0;
  transition:opacity .35s ease;
}

/* efecto hover solo en desktop */
@media (hover:hover){
  .img-hover:hover .img-back{
    opacity:1;
  }
}

   .bit-html-export {
        width: 100%;
        background: #fff;
        font-family: Arial;
        color: black;
        font-size: 12px;
      }
      .bit-table {
        width: 100%;
      }
      .bit-table td {
        padding: 7px 10px;
        vertical-align: middle;
      }

      .bit-table a {
        color: #00b4b3;
        text-decoration: none;
      }

      /* alternate row background color */
      .bit-table tr:nth-of-type(2n) {
        background: #eee;
      }

      /* separate line between rows */
      /* .bit-table tr td { border-bottom: 1px solid #ccc } */

      .bit-table .bit-cta {
        text-align: center;
        width: 25%;
      }

      .album-cover{
  width:100%;
  height:300px;
  overflow:hidden;
}

.album-cover video{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:10px;
}

