@charset "UTF-8";
/* PLACEHOLDERS (patrones reutilizables) */
.btn-outline-new, .btn__cuenta, .btn__merch, .btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}

.btn__cuenta, .btn__merch, .btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #eef6ff;
}

.card {
  background: #102a44;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: 0.2s;
}

* {
  font-family: sans-serif;
  margin: 0;
  max-width: 100%;
  box-sizing: border-box;
}

html {
  overflow-y: auto;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  overflow-y: hidden;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.tittle {
  color: aliceblue;
  text-shadow: 2px 2px black;
  margin-top: 30px;
  margin-bottom: 20px;
  animation-name: titulo-animacion;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  font-family: "Poppins", sans-serif;
}

.tittle {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 4px #00bfff, 0 0 8px #00bfff, 0 0 16px #00bfff, 0 0 32px #0088ff, 0 0 64px #0077ff;
  animation: neonSlowBlink 6s ease-in-out infinite;
}

/* Parpadeo suave y lento */
@keyframes neonSlowBlink {
  0%, 80%, 100% {
    opacity: 1;
    text-shadow: 0 0 5px #00cfff, 0 0 10px #00cfff, 0 0 20px #00bfff, 0 0 40px #0088ff, 0 0 80px #0077ff;
  }
  90% {
    opacity: 0.6;
    text-shadow: 0 0 3px #0099ff, 0 0 6px #0099ff, 0 0 12px #0077ff;
  }
}
.img__header {
  width: 40px;
  height: auto;
  margin-top: 15px;
  margin-left: 20px;
  margin-bottom: 15px;
}

.nav {
  background-color: #000000;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23ffffff' fill-opacity='0.72' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 310px 60px;
  animation: nav-animacion 30s linear infinite;
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  height: 150px;
  margin: 0 auto;
  overflow: visible;
}
.nav .img__header,
.nav .nav__toggle,
.nav .tittle {
  z-index: 10;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 763px) {
  .nav {
    background-size: 600px 120px;
    animation-duration: 10s;
  }
  .nav__container {
    height: 80px;
  }
  .nav .img__header {
    width: 40px;
    margin: 15px 20px;
  }
  .nav .nav__toggle {
    display: block;
  }
  .nav .tittle {
    font-size: 1.8rem;
    margin: 30px 0 20px;
  }
}
@media (min-width: 764px) {
  .nav .img__header {
    width: 70px;
    margin: 70px 58px;
  }
  .nav .tittle {
    font-size: 4rem;
    margin-left: 45px;
    margin-bottom: 30px;
  }
  .nav .nav__toggle {
    display: none;
  }
}

.nav__container {
  display: flex;
  align-items: center;
  gap: 25px;
  height: 80px;
  justify-content: space-between;
  margin: 0 auto;
  --icon-toggle-menu: url(../img/icono-abrir.png);
  --transform-menu-show: translate(-100%);
  overflow: hidden;
  z-index: 9999;
}
.nav__container:has(.nav__input:checked) {
  --icon-toggle-menu: url(../img/icono-cerrar.png);
  --transform-menu-show: translate(0%);
  position: fixed;
  display: flex;
  align-items: center;
  gap: 60px;
  height: 80px;
  justify-content: space-between;
  margin: 0 auto;
}

.nav__list {
  transform: var(--transform-menu-show);
  list-style: none;
  position: fixed;
  padding: 1.5rem 5%;
  display: grid;
  inset: 0;
  background-color: rgb(0, 94, 138);
  place-content: center;
  gap: 2rem;
  text-align: center;
  transition: 0.5s transform;
}

.nav__toggle {
  margin-top: 30px;
  margin-right: 20px;
  margin-bottom: 20px;
  background-image: var(--icon-toggle-menu);
  background-size: cover;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: background-image 0.5s;
}

.nav__input {
  width: 40px;
  height: 40px;
  display: none;
}

.img__header,
.nav__toggle,
.tittle {
  z-index: 10;
}

.list-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s ease-in-out;
  text-shadow: 0 0 4px rgba(0, 210, 255, 0.6), 0 0 10px rgba(0, 180, 255, 0.5), 0 0 20px rgba(0, 160, 255, 0.3);
}
.list-link:hover, .list-link:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 6px #00e0ff, 0 0 14px #00bfff, 0 0 28px rgba(0, 180, 255, 0.9);
  background-color: rgba(0, 180, 255, 0.12);
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.35), inset 0 0 8px rgba(0, 190, 255, 0.25);
  transform: translateY(-1px);
}

/* Responsive: mantiene brillo suave en móviles */
@media (max-width: 768px) {
  .list-link {
    display: block;
    padding: 0.75rem;
    text-align: center;
    font-size: 1rem;
  }
}
@keyframes nav-animacion {
  from {
    background-position: 0 100%;
  }
  to {
    background-position: 600px 100%;
  }
}
.main {
  background-image: url(../img/surfer-myr.png);
  background-position: center;
  background-size: contain;
  width: 100vw;
  height: 100vh;
  margin-top: 0;
  padding-top: 0;
  flex: 1;
}

.section,
.section-2,
.section-3 {
  color: aliceblue;
  display: flex;
  margin-top: 100px;
  margin-left: 15px;
  margin-right: 15px;
  flex-direction: column;
  background-position: 0px 2px;
  background-size: cover;
  border-radius: 20px;
  height: 380px;
  z-index: 0;
}
.section h2,
.section-2 h2,
.section-3 h2 {
  margin-left: 30px;
  text-align: center;
  margin-right: 30px;
  margin-top: 35px;
  font-family: "Poppins", sans-serif;
}
.section p,
.section-2 p,
.section-3 p {
  margin-top: 20px;
  text-align: center;
  margin-left: 30px;
  margin-right: 30px;
  font-family: "Open Sans", sans-serif;
}

.hero-carousel .carousel-item {
  position: relative;
  min-height: 78svh;
  height: auto;
  overflow: hidden;
}
@media (max-width: 992px) {
  .hero-carousel .carousel-item {
    min-height: 70svh;
  }
}
@media (max-width: 576px) {
  .hero-carousel .carousel-item {
    min-height: 86svh;
  }
}
.hero-carousel .hero-slide {
  /* centra y agrega aire para que no quede “aplastado” */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(20px, 6vw, 64px);
  background-size: cover;
  background-position: center;
  backface-visibility: hidden;
  will-change: transform;
}
.hero-carousel .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.55) 100%);
}
.hero-carousel .hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding-inline: clamp(12px, 4vw, 28px);
}
.hero-carousel .hero-content h2 {
  font-size: clamp(22px, 5vw, 36px);
  line-height: 1.15;
  margin-bottom: 0.5rem;
  text-wrap: balance;
}
.hero-carousel .hero-content p {
  font-size: clamp(14px, 3.6vw, 18px);
  line-height: 1.65;
  margin-bottom: 1rem;
  text-wrap: pretty;
}
.hero-carousel .hero-carousel {
  position: relative;
}
.hero-carousel .hero-slide {
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-carousel .hero-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.55) 100%);
  position: absolute;
  inset: 0;
}
.hero-carousel .hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
  margin-inline: auto;
}
.hero-carousel .hero-content h2 {
  font-weight: 800;
  letter-spacing: 0.3px;
}
.hero-carousel .hero-content p {
  font-size: 1.05rem;
}
.hero-carousel .btn-cta {
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.hero-carousel .btn-warning.btn-cta {
  background: linear-gradient(180deg, #FFD84E 0%, #E6B800 100%);
  color: #111;
  border: none;
  box-shadow: 0 10px 28px rgba(255, 216, 78, 0.35);
}
.hero-carousel .btn-warning.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 216, 78, 0.45);
}
.hero-carousel .btn-outline-light.btn-cta {
  border-width: 2px;
}
.hero-carousel .btn-outline-light.btn-cta:hover {
  background: rgba(255, 255, 255, 0.12);
}
.hero-carousel .community {
  background: #0d0f14;
}
.hero-carousel .community .tile {
  background: linear-gradient(145deg, #131922, #0b0f16);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-carousel .community .tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}
.hero-carousel .card.product {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 52px;
}
@media (max-width: 576px) {
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 40px;
  }
}

.filter-bar {
  background: linear-gradient(145deg, #0d0f14, #161b22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}
.filter-bar .search-input {
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: #fff;
  padding-left: 2.2rem;
  font-size: 1rem;
}
.filter-bar .search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.filter-bar .search-input:focus {
  box-shadow: 0 0 0 2px rgba(255, 216, 78, 0.6);
  background: rgba(255, 255, 255, 0.1);
}
.filter-bar .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFD84E;
}
.filter-bar .series-select {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: none;
  min-width: 200px;
}
.filter-bar .series-select option {
  background: #0d0f14;
  color: #fff;
}
.filter-bar .series-select:focus {
  box-shadow: 0 0 0 2px rgba(255, 216, 78, 0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/img-sobres.png);
  height: 550px;
}

section {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  section {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.section-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/img-merch.png);
  background-position: 0px 500px;
}

.section-3 {
  margin-bottom: 50px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/img-agenda.png);
}

.button-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 25px;
}
.button-container:has(.btn) {
  filter: drop-shadow(0px 0px 15px #48e);
}
.button-container :first-child {
  margin-bottom: 90px;
  margin-top: -30px;
}
.button-container :nth-child(2) {
  margin-top: 70px;
}

.btn {
  border-radius: 6px;
  letter-spacing: 2px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.2);
}

@keyframes scroll-animation {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
@media (max-width: 768px) {
  .btn {
    animation: parpadear 2s infinite alternate backwards;
  }
}
@keyframes parpadear {
  0% {
    color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0px;
    box-shadow: 0px;
  }
  25% {
    border-color: rgb(49, 99, 173);
    color: rgb(127, 169, 233);
    box-shadow: 0px 0px 6px rgba(68, 136, 238, 0.2), 0px 0px 16px rgba(88, 146, 233, 0.51);
    text-shadow: 0px 0px 9px rgba(68, 136, 238, 0.2), 0px 0px 19px rgba(127, 169, 233, 0.671);
  }
  35% {
    color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0px;
    box-shadow: 0px;
  }
  50% {
    border-color: rgb(49, 99, 173);
    color: rgb(127, 169, 233);
    box-shadow: 0px 0px 6px rgba(68, 136, 238, 0.2), 0px 0px 16px rgba(88, 146, 233, 0.51);
    text-shadow: 0px 0px 9px rgba(68, 136, 238, 0.2), 0px 0px 19px rgba(127, 169, 233, 0.671);
  }
  55% {
    color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0px;
    box-shadow: 0px;
  }
  62% {
    border-color: rgb(49, 99, 173);
    color: rgb(127, 169, 233);
    box-shadow: 0px 0px 6px rgba(68, 136, 238, 0.2), 0px 0px 16px rgba(88, 146, 233, 0.51);
    text-shadow: 0px 0px 9px rgba(68, 136, 238, 0.2), 0px 0px 19px rgba(127, 169, 233, 0.671);
  }
  75% {
    color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0px;
    box-shadow: 0px;
  }
  100% {
    border-color: rgb(49, 99, 173);
    color: rgb(127, 169, 233);
    box-shadow: 0px 0px 6px rgba(68, 136, 238, 0.2), 0px 0px 16px rgba(88, 146, 233, 0.51);
    text-shadow: 0px 0px 9px rgba(68, 136, 238, 0.2), 0px 0px 19px rgba(127, 169, 233, 0.671);
  }
}
.animacion {
  width: 100vw;
  height: 100vh;
  background-color: black;
  color: white;
  animation-name: animation-background;
  animation-duration: 3s;
}

@keyframes animation-background {
  from {
    filter: brightness(0%);
  }
  to {
    filter: brightness(100%);
  }
}
@media (min-width: 764px) {
  .nav__container {
    --transform-menu-show: translate(0%);
    height: 150px;
  }
  .nav {
    background-color: #000000;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23ffffff' fill-opacity='0.72' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: 0 100%;
    background-size: 1210px 250px;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    position: static;
    grid-auto-flow: column;
    place-content: unset;
    transition: unset;
    background-color: transparent;
  }
  .img__header {
    width: 70px;
    margin-top: 70px;
    margin-left: 58px;
    margin-bottom: 70px;
  }
  .tittle {
    font-size: 4rem;
    margin-bottom: 30px;
    margin-left: 45px;
  }
  .button-container:has(.btn) {
    filter: drop-shadow(0px 0px 15px #48e);
  }
  .btn {
    padding: 10px 40px;
    background-color: transparent;
    color: rgb(255, 255, 255) !important;
    border-radius: 6px;
    letter-spacing: 2px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
  }
  .btn:hover {
    animation: parpadear 2s infinite alternate backwards;
  }
  .section {
    background-position: 0px 1700px;
    font-size: 1.3rem;
  }
  .section-2 {
    background-position: 0px 1000px;
    font-size: 1.3rem;
  }
  .section-3 {
    background-position: 0px -250px;
    font-size: 1.3rem;
  }
}
.main-sobres {
  background-image: url(../img/fondo-sobres.png);
  background-size: cover;
}

.container__sobres {
  box-sizing: border-box;
  height: auto;
  width: 100vw;
  margin-bottom: 65px;
}

.img__section {
  height: 50vh;
  width: auto;
  margin: 20px 0 0px 50px;
  padding: 0;
  display: block;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}

.p__section {
  margin: 5px 0 15px 30px;
  text-align: center;
  color: aliceblue;
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}

.btn-outline-new {
  margin-left: 106px;
  color: #0d6efd;
  background-color: transparent;
  border: 1px solid #0d6efd;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-outline-new:hover {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-outline-new:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn-outline-new:active {
  color: #fff;
  background-color: #0a58ca;
  border-color: #0a53be;
}
.btn-outline-new:disabled {
  color: #0d6efd;
  background-color: transparent;
  opacity: 0.65;
  pointer-events: none;
}

@media (min-width: 764px) {
  .img__section {
    margin: 25px 0 8px 40px;
  }
  .p__section {
    margin-left: 20px;
  }
  .btn-outline-new {
    margin-left: 85px;
  }
}
.main__h2 {
  color: aliceblue;
  text-shadow: 2px 2px black;
  margin-top: 30px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

#carouselExampleFade,
#carouselExampleFade .carousel-inner,
#carouselExampleFade .carousel-item {
  height: 90vh;
}

#carouselExampleFade .carousel-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-item:nth-child(1) img {
  object-position: 20% 40%;
}

.carousel-item:nth-child(2) img {
  object-position: 40% 38%;
}

.carousel-item:nth-child(3) img {
  object-position: 40% 41%;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
}
.carousel-caption h2 {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #48e;
  text-shadow: 0 0 15px #000;
}

.main-surf {
  margin-bottom: 75px;
}

:root {
  --bg: #0b1b2a;
  --card: #102a44;
  --brand: #317fc0;
  --brand2: #48e;
  --text: #eef6ff;
  --muted: #a8c1de;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --maxw: 1200px;
}

/* Reseo específico merchandising */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, sans-serif;
  background: linear-gradient(180deg, #07131e, #0b1b2a 20%);
  color: var(--text);
}

.btn__merch:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 8px var(--brand2);
}
.btn__merch--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border: none;
}

.hero {
  max-width: var(--maxw);
  margin: 40px auto;
  padding: 20px;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero h1 {
  font-size: 2rem;
  text-shadow: 0 0 25px rgba(72, 136, 238, 0.4);
}
.hero p {
  color: var(--muted);
  margin: 10px 0 20px;
}

.hero-ill {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: url(../img/merch-4.png) center/cover no-repeat;
  box-shadow: var(--shadow);
}

.wrap {
  max-width: var(--maxw);
  margin: 30px auto;
  padding: 20px;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card:hover {
  transform: translateY(-4px);
}
.card .media img {
  width: 100%;
  display: block;
}
.card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #00d094, #00a97a);
  color: #03281f;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.card .body {
  padding: 15px;
}
.card .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card .title h3 {
  margin: 0;
  font-size: 1.1rem;
}
.card .title span {
  color: var(--muted);
}
.card .desc {
  color: var(--muted);
  margin: 8px 0 14px;
}
.card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card .meta .price {
  font-weight: 800;
  font-size: 1rem;
}
.card .meta .actions {
  display: flex;
  gap: 10px;
}

:root {
  --bg: #0b1b2a;
  --card: #102a44;
  --brand: #317fc0;
  --brand2: #48e;
  --text: #eef6ff;
  --muted: #a8c1de;
  --radius: 16px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.account--pretty {
  position: relative;
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 44px) 16px;
  isolation: isolate;
}

.account__panel {
  display: none;
}

#tab-login:checked ~ .account__shell .account__panel--login {
  display: block;
}

#tab-signup:checked ~ .account__shell .account__panel--signup {
  display: block;
}

#tab-recover:checked ~ .account__shell .account__panel--recover {
  display: block;
}

.account__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(120% 150% at 50% -10%, rgba(72, 136, 238, 0.1), transparent 60%);
}

.blob {
  position: absolute;
  width: 46vmax;
  height: 46vmax;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.25;
  mix-blend-mode: screen;
  animation: float 18s ease-in-out infinite alternate;
}
.blob--1 {
  left: -12vmax;
  top: -10vmax;
  background: radial-gradient(circle at 30% 30%, #48e, transparent 60%);
}
.blob--2 {
  right: -16vmax;
  bottom: -14vmax;
  background: radial-gradient(circle at 70% 70%, #317fc0, transparent 60%);
  animation-duration: 20s;
}

.grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.25;
  mix-blend-mode: overlay;
  animation: grainMove 6s linear infinite;
}

@keyframes float {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-24px) scale(1.05);
  }
}
@keyframes grainMove {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-30px, -30px);
  }
}
.account__shell {
  width: min(960px, 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  -moz-backdrop-filter: blur(10px) saturate(120%);
  -ms-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(16px + 10px);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 30px);
  animation: pop-in 0.55s ease both;
}

@keyframes pop-in {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.account__header {
  text-align: center;
  margin-bottom: 18px;
}
.account__header h1 {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  letter-spacing: 0.3px;
  text-shadow: 0 10px 40px rgba(72, 136, 238, 0.35);
}
.account__header h1 span {
  color: var(--brand2);
}
.account__header p {
  margin: 0;
  color: var(--muted);
}

.account__radio {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.account__tabs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 16px 0 16px;
}
.account__tabs .account__tab {
  text-align: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  cursor: pointer;
  user-select: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.account__tabs .account__tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(72, 136, 238, 0.25);
}
.account__tabs .account__tab-underline {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 33.3333333333%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  transition: transform 0.35s ease;
}

#tab-login:checked ~ .account__tabs .account__tab-underline {
  transform: translateX(0%);
}

#tab-signup:checked ~ .account__tabs .account__tab-underline {
  transform: translateX(100%);
}

#tab-recover:checked ~ .account__tabs .account__tab-underline {
  transform: translateX(200%);
}

#tab-login:checked ~ .account__tabs label[for=tab-login],
#tab-signup:checked ~ .account__tabs label[for=tab-signup],
#tab-recover:checked ~ .account__tabs label[for=tab-recover] {
  background: linear-gradient(135deg, rgba(49, 127, 192, 0.35), rgba(72, 136, 238, 0.25));
  border-color: rgba(72, 136, 238, 0.45);
}

.account__panels {
  position: relative;
}

.account__panel {
  display: none;
  animation: panel-in 0.35s ease both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
#tab-login:checked ~ .account__panels .account__panel--login {
  display: block;
}

#tab-signup:checked ~ .account__panels .account__panel--signup {
  display: block;
}

#tab-recover:checked ~ .account__panels .account__panel--recover {
  display: block;
}

.form {
  display: grid;
  gap: 14px;
}
.form__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .form__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.form__row {
  display: grid;
  gap: 8px;
}
.form__row--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.form__control {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.06s;
}
.form__control::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.form__control:focus {
  border-color: var(--brand2);
  box-shadow: 0 0 0 4px rgba(72, 136, 238, 0.22);
  transform: translateY(-1px);
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.account__link,
.link-like {
  color: var(--brand2);
  text-decoration: none;
  cursor: pointer;
}
.account__link:hover,
.link-like:hover {
  text-decoration: underline;
}

.form__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 520px) {
  .form__actions {
    justify-content: stretch;
  }
  .form__actions .btn__cuenta {
    flex: 1;
  }
}

.btn__cuenta {
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn__cuenta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(72, 136, 238, 0.22);
}
.btn__cuenta--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: transparent;
}

.footer-bleed {
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23ffffff' fill-opacity='0.72' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 1690px 340px;
  background-position: 0 100%;
  animation: nav-animacion 30s linear infinite;
  width: 100%;
  height: 100%;
}
.footer-bleed .btn-footer {
  align-items: center;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 8px #48e, 0 0 16px #48e, 0 0 28px #48e;
  padding: 5px;
  border: 1px white solid;
  border-radius: 10px;
  width: 0;
  height: auto;
}
.footer-bleed .links-footer {
  color: rgb(255, 255, 255);
  text-shadow: 0 0 8px #48e, 0 0 16px #48e, 0 0 28px #48e;
  text-decoration: none;
  width: auto;
  height: 0;
  text-align: center;
}
.footer-bleed .container {
  background: transparent;
}
.footer-bleed footer div {
  color: white;
  text-shadow: 0 0 8px #48e, 0 0 16px #48e, 0 0 28px #48e;
}
.footer-bleed footer div:last-child {
  display: flex;
  justify-content: center;
}
.footer-bleed footer div ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.copyright {
  text-shadow: 0 0 8px #48e, 0 0 16px #48e, 0 0 28px #48e;
}

/* ======================================================
   M&R CARDS — Tienda & Carrito (integra con tu paleta)
   NOTA: No redefinimos colores; heredamos del theme.
   ====================================================== */
.shop-toolbar {
  position: sticky;
  top: 0;
  z-index: 1040;
  backdrop-filter: blur(6px);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.shop-toolbar .branding-title {
  letter-spacing: 0.04em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.card.product {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: inherit;
}
.card.product .card-title {
  font-weight: 600;
}
.card.product .price {
  font-weight: 700;
}
.card.product img {
  object-fit: cover;
}

.btn-add,
.btn-outline-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.btn-add:hover,
.btn-outline-buy:hover {
  transform: translateY(-1px);
  background: currentColor;
  color: #111;
}
.btn-add:active,
.btn-outline-buy:active {
  transform: translateY(0);
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  color: #111;
  background: currentColor;
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.btn-buy:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}
.btn-buy:active {
  transform: translateY(0);
}

.cart-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1050;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  border: 0;
  background: currentColor;
  color: #111;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-toggle #cart-badge {
  font-weight: 700;
}

/* === Carrito sin scrollbar, layout completo === */
#offcanvasCart {
  width: clamp(360px, 38vw, 480px);
  /* más ancho pero estético */
}

#offcanvasCart.offcanvas {
  height: 100dvh;
  /* ocupa toda la altura visible */
  overflow: hidden;
  /* elimina scroll del contenedor */
  overflow-x: hidden;
}

#offcanvasCart .offcanvas-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  /* evita scroll interno */
}

/* la lista del carrito puede desplazarse sin mostrar la barra */
#offcanvasCart #cart-list {
  flex: 1;
  overflow: auto;
  padding-right: 0.5rem;
  margin-right: -0.5rem;
  scrollbar-width: none;
  /* Firefox */
}

#offcanvasCart #cart-list::-webkit-scrollbar {
  width: 0;
  height: 0;
  /* Chrome/Safari */
}

/* miniaturas y filas más cómodas */
#offcanvasCart .list-group-item {
  padding: 0.75rem 0.5rem;
}

#offcanvasCart .mini-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
}

#offcanvasCart .qty-step {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
}

#offcanvasCart .item-title {
  font-weight: 700;
  margin: 0;
  color: #fff;
}

#offcanvasCart .line-total,
#offcanvasCart #cart-subtotal {
  font-weight: 800;
}

#offcanvasCart,
#offcanvasCart * {
  overscroll-behavior: contain;
  /* evita rebotes */
}

.footer-bleed {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 576px) {
  .shop-toolbar .branding-title {
    font-size: 1rem;
  }
}
/* === M&R SHOP INTEGRATION END === */
/* === M&R SHOP — Modernización tipográfica y contraste (manteniendo paleta) === */
.card.product {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.card.product .card-img-top {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.card.product .card-body {
  position: relative;
  color: #f2f2f2;
}
.card.product .card-body:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 20%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}
.card.product .card-body > * {
  position: relative;
}
.card.product .card-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.card.product .price {
  color: inherit;
  opacity: 0.95;
  font-size: 1.05rem;
  line-height: 1;
}
.card.product .btn-add,
.card.product .btn-outline-buy,
.card.product .btn-buy {
  font-weight: 600;
  letter-spacing: 0.2px;
}

#product-grid .card.product .price,
#product-grid .card.product .card-title {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.card.product a {
  color: inherit;
}

/* === M&R SHOP — Modern Pass v2 (contraste + tipografía + carrito) === */
/* Fuente moderna (aplicación acotada) */
.shop-toolbar,
.branding-title,
.main-sobres .card.product,
.offcanvas {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* Títulos y precios más jerárquicos */
.main-sobres .card.product .card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
  letter-spacing: 0.3px;
}

.main-sobres .card.product .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f6f6f6;
}

/* Tarjeta moderna con overlay y padding correcto */
.main-sobres .card.product {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(10, 12, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.main-sobres .card.product .card-img-top {
  aspect-ratio: 3/4;
  object-fit: cover;
}

.main-sobres .card.product .card-body {
  position: relative;
  padding: 1rem 1rem 1.1rem 1rem;
}

.main-sobres .card.product .card-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.main-sobres .card.product .card-body > * {
  position: relative;
}

/* Botones modernos (manteniendo colores por currentColor) */
.btn-add,
.btn-outline-buy,
.btn-buy {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

/* Hover suave sin oscurecer la card */
.btn-add:hover,
.btn-outline-buy:hover,
.btn-buy:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  /* brillo suave */
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Efecto sutil sobre la tarjeta completa */
.card.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: rgba(20, 24, 32, 0.7);
  /* tono oscuro semi-transparente */
}

/* Cart button (floating) */
.cart-toggle {
  font-weight: 700;
  border-radius: 999px;
}

/* Offcanvas (carrito) legible y moderno */
.offcanvas {
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(6px);
}

.offcanvas .offcanvas-title {
  font-weight: 800;
}

.offcanvas .list-group-item {
  padding: 0.9rem 0.75rem;
}

.offcanvas .mini-thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.offcanvas .item-title {
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.offcanvas .item-price-line {
  font-size: 0.95rem;
  opacity: 0.9;
}

.offcanvas .line-total {
  font-weight: 700;
  color: #fff;
}

.offcanvas .qty-step {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
}

/* Mejoramos la legibilidad general de textos bajo imágenes */
#product-grid .card.product .price,
#product-grid .card.product .card-title {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

/* Toolbar spacing */
.shop-toolbar .branding-title {
  font-weight: 700;
}

/* === CART FIX v3 — por encima del header, sin blancos y con botones visibles === */
.offcanvas-backdrop {
  z-index: 1080 !important;
  background-color: rgba(0, 0, 0, 0.75) !important;
}

#offcanvasCart.offcanvas {
  z-index: 1085 !important;
  /* delante del nav/header */
  background: #0d0f14 !important;
  /* elimina parches blancos */
  color: #f2f2f2 !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -22px 0 60px rgba(0, 0, 0, 0.5);
}

#offcanvasCart .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#offcanvasCart .list-group-item {
  background: transparent !important;
  color: inherit !important;
  border-color: rgba(255, 255, 255, 0.12);
}

#offcanvasCart .mini-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

#offcanvasCart .qty-step {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
}

/* Botón pagar visible */
#offcanvasCart #btn-checkout {
  background: linear-gradient(180deg, #FFD84E 0%, #E6B800 100%);
  color: #111;
  /* texto oscuro para contraste */
  border: none;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 0.9rem 1rem;
  width: 100%;
  box-shadow: 0 10px 25px rgba(255, 216, 78, 0.3);
  transition: all 0.25s ease;
}

#offcanvasCart #btn-checkout:hover,
#offcanvasCart #btn-checkout:focus {
  background: linear-gradient(180deg, #FFE066 0%, #FFCC00 100%);
  box-shadow: 0 12px 32px rgba(255, 216, 78, 0.45);
  transform: translateY(-2px);
}

#offcanvasCart #btn-checkout:active {
  transform: translateY(0);
  background: linear-gradient(180deg, #E6B800 0%, #CC9900 100%);
  box-shadow: 0 4px 14px rgba(255, 216, 78, 0.3);
}

/* Texto aclaratorio legible */
#offcanvasCart .text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

/*# sourceMappingURL=styles.css.map */
