:root {
  --color-amarillo: #ffde59;
  --color-rojo: #ab3032;
  --color-negro: #000000;
  --color-blanco: #ffffff;
  --section-padding-y: clamp(2.5rem, 6vw, 5rem);
}

@font-face {
  font-family: "Anton";
  src: url("../fuentes/Anton/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fuentes/Archivo/Archivo-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fuentes/Archivo/Archivo-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffde59;
  color: #000000;
  font-family: "Archivo", "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h2 {
  margin-bottom: 0;
  text-transform: uppercase;
}

section[id],
div[id] {
  scroll-margin-top: 80px;
}

.section-title {
  font-family: "Anton", "Impact", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #ffde59;
  margin-bottom: 0;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  font-family: "Anton", "Impact", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  border: 2.5px solid #000000;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: #000000;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #000000;
}
.btn:hover {
  background-color: #000000;
  color: #ffde59;
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
}
.btn:focus-visible {
  outline: 3px solid #ab3032;
  outline-offset: 3px;
}
.btn--rojo {
  background-color: #ab3032;
  border-color: #ab3032;
  color: #ffffff;
}
.btn--rojo:hover {
  background-color: rgb(131.1780821918, 36.8219178082, 38.3561643836);
  border-color: rgb(131.1780821918, 36.8219178082, 38.3561643836);
  color: #ffffff;
}
.btn--negro {
  background-color: #000000;
  border-color: #000000;
  color: #ffde59;
}
.btn--negro:hover {
  background-color: #222;
  color: #ffde59;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffde59;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  gap: 1rem;
}

.header__logo {
  height: 156px;
  width: auto;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.header__logo-link {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header__nav-list .btn {
  border-radius: 7px;
  padding: 0.5rem 0.75rem;
  box-shadow: 5px 5px rgb(0, 0, 0);
  line-height: 0.5rem;
}

.header__hamburger {
  display: none;
  background: none;
  border: 2.5px solid #000000;
  border-radius: 8px;
  color: #000000;
  cursor: pointer;
  padding: 0.5rem;
}

#nav-menu {
  background-color: #ffde59;
  border-top: 2px solid #000000;
}

.header__mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.75rem;
}
.header__mobile-list .btn {
  border-radius: 7px;
  padding: 0.5rem 0.75rem;
  box-shadow: 5px 5px rgb(0, 0, 0);
  line-height: 0.5rem;
}

@media (max-width: 768px) {
  .header__nav-list {
    display: none;
  }
  .header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  #nav-menu {
    display: none !important;
  }
}
.pagina__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .pagina__grid {
    grid-template-columns: 1fr 50%;
    align-items: start;
  }
}

.hero__col {
  padding: 2rem 2rem 3rem;
  border-bottom: 2.5px solid #000000;
  min-width: 0;
}
@media (min-width: 900px) {
  .hero__col {
    border-bottom: none;
    border-right: 2.5px solid #000000;
  }
}
@media (max-width: 480px) {
  .hero__col {
    padding: 1.5rem 1rem 2rem;
  }
}

.hero__logo-img {
  height: 80px;
  width: auto;
  margin-bottom: 1.5rem;
}

.hero__titulo {
  font-family: "Anton", "Impact", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  color: #000000;
  margin-bottom: 1.5rem;
  display: none;
}

.hero__texto p {
  font-size: 1rem;
  line-height: 1.75;
  color: #000000;
  margin-bottom: 1rem;
  max-width: 560px;
}
.hero__texto p:last-child {
  margin-bottom: 0;
}
.hero__texto strong {
  font-weight: 700;
}

.pagos__col {
  padding: 2rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 80px;
  align-self: start;
  min-width: 0;
}
@media (max-width: 480px) {
  .pagos__col {
    padding: 1.5rem 1rem;
    position: static;
  }
}

.pagos__campana, .pagos__unica-vez, .pagos__bloque {
  border: 2.5px solid #000000;
  border-radius: 16px;
  box-shadow: 4px 4px 0 #000000;
  background-color: #ffffff;
}

.pagos__bloque {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pagos__bloque-titulo {
  font-family: "Anton", "Impact", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-bottom: 2.5px solid #000000;
  background: #ffffff;
  box-shadow: 7px 7px 0 #000000;
}

.pagos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  justify-items: center;
}
@media (max-width: 480px) {
  .pagos__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.pagos__grid .pagos__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  background-color: #ffde59;
}
.pagos__grid .pagos__btn:hover {
  background-color: #000000;
  color: #ffde59;
}
@media (max-width: 480px) {
  .pagos__grid .pagos__btn {
    max-width: 100%;
  }
}

.pagos__monto {
  font-family: "Anton", "Impact", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.pagos__periodo {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.pagos__unica-vez-btn {
  font-family: "Anton", "Impact", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  padding: 1rem 1.5rem;
  width: 100%;
  background: #ffffff;
  color: #000000;
  border: none;
  cursor: pointer;
  transition: 0.15s ease;
  text-align: center;
}
.pagos__unica-vez-btn:hover {
  background: #000000;
  color: #ffde59;
}

.pagos__unica-grid {
  display: none;
  padding: 0.75rem;
}
.pagos__unica-grid.visible {
  display: flex;
  justify-content: flex-start;
}

.pagos__alias-bloque {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pagos__alias-datos {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pagos__alias-fila {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 6px;
}

.pagos__alias-campo {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}

.pagos__alias-copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pagos__alias-valor {
  font-size: 1rem;
  font-weight: 600;
  word-break: break-all;
  overflow-wrap: anywhere;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pagos__alias-texto {
  font-family: "Anton", "Impact", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.copy-btn.btn {
  font-size: 0.85rem;
  width: fit-content;
  padding: 0.25rem 0.75rem;
}

.pagos__campana {
  background: #000000;
  color: #ffde59;
  padding: 1.5rem;
}
@media (max-width: 480px) {
  .pagos__campana {
    margin: 0;
  }
}
.pagos__campana-titulo {
  font-family: "Anton", "Impact", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.pagos__campana p {
  font-size: 1rem;
  line-height: 1.65;
}
.pagos__campana p:not(:last-child) {
  margin-bottom: 0.5rem;
}

.campana__container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.campana__titulo {
  font-family: "Anton", "Impact", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: #ffde59;
  line-height: 1.1;
}

.campana__container p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #ffffff;
}

#galeria {
  padding: 2rem;
  background-color: #000000;
  border-top: 2.5px solid #000000;
}
#galeria h2 {
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  #galeria {
    padding: var(--section-padding-y) 1rem;
  }
  #galeria h2 {
    margin-bottom: 0.5rem;
  }
}

.galeria__container {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery__arrow {
  display: none;
}
@media (max-width: 480px) {
  .gallery__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2.5px solid #ffffff;
    background-color: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
  }
  .gallery__arrow:hover {
    background-color: #ffde59;
    border-color: #ffde59;
    color: #000000;
  }
  .gallery__arrow--prev {
    left: 0.75rem;
  }
  .gallery__arrow--next {
    right: 0.75rem;
  }
}

.gallery__slider-wrapper {
  position: relative;
}

#gallery-grid {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#gallery-grid::-webkit-scrollbar {
  display: none;
}
#gallery-grid img {
  flex: 0 0 100%;
  scroll-snap-align: start;
  width: 100%;
  height: 260px;
  object-fit: cover;
  cursor: pointer;
  display: block;
  transition: opacity 0.2s ease;
}
#gallery-grid img:hover {
  opacity: 0.85;
}
@media (min-width: 481px) {
  #gallery-grid {
    display: grid;
    overflow-x: visible;
    scroll-snap-type: none;
    grid-template-columns: repeat(2, 1fr);
  }
  #gallery-grid img {
    flex: none;
    width: 100%;
    height: 240px;
  }
}
@media (min-width: 769px) {
  #gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media (min-width: 481px) {
  .gallery__dots {
    display: none;
  }
}
.gallery__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease;
}
.gallery__dots button.active {
  background-color: #ffde59;
}

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
#lightbox[hidden] {
  display: none;
}

#lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
#lightbox-close:hover {
  border-color: #ffde59;
  color: #ffde59;
}

#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

#contacto {
  padding: var(--section-padding-y) 2rem;
  background-color: #ffde59;
  border-top: 2.5px solid #000000;
}
@media (max-width: 480px) {
  #contacto {
    padding: var(--section-padding-y) 1rem;
  }
}

.contacto__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contacto__dir {
  font-size: 1rem;
  color: #000000;
  opacity: 0.7;
}

.contacto__mapa {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  border: 2.5px solid #000000;
}
.contacto__mapa iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contacto__maps-link {
  color: #000000;
  text-decoration: none;
  font-family: "Anton", "Impact", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border: 2.5px solid #000000;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  align-self: flex-start;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.contacto__maps-link:hover {
  background-color: #000000;
  color: #ffde59;
}

footer {
  background-color: #000000;
  border-top: 2.5px solid #000000;
  padding: 2rem;
}

.footer__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__dominio {
  font-family: "Anton", "Impact", sans-serif;
  font-size: 1rem;
  color: #ffde59;
  letter-spacing: 0.05em;
}

.footer__redes {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer__redes a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffde59;
  text-decoration: none;
  font-size: 0.875rem;
  font-family: "Anton", "Impact", sans-serif;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
}
.footer__redes a:hover {
  opacity: 0.7;
}

.footer__copy {
  font-size: 0.875rem;
  color: #ffde59;
  opacity: 0.5;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.wa-bloque {
  position: relative;
}
.wa-bloque .whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.15s ease;
  text-decoration: none;
  animation: heartbeat 1.8s infinite;
}
.wa-bloque .whatsapp-fab:hover {
  animation: none;
  transform: scale(1.12);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 480px) {
  .wa-bloque .whatsapp-fab {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
}

section {
  max-width: 1230px;
  margin: 0 auto;
}
