* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body {
  font-family: sans-serif;
  color: #c9d1d9;
  background: #0d1117;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-behavior: smooth;
  justify-content: center;
}

section {
  width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #161b22;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 1rem auto;
  justify-content: center;
  border-radius: 15px;
}
section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
section h3 {
  font-size: 1.5rem;
}
section p {
  font-size: 1.2rem;
  max-width: 700px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  section {
    width: 95%;
  }
  section h2 {
    font-size: 2rem;
  }
  section p {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  section {
    width: 90%;
  }
  section h2 {
    font-size: 1.6rem;
  }
  section p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  section {
    width: 90%;
    padding: 1.5rem 0.5rem;
  }
  section h2 {
    font-size: 1.4rem;
  }
  section p {
    font-size: 0.95rem;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  background-image: url("/assets/img/hero-img.png");
  min-height: 100vh;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.25);
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(100vw - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.731);
  padding: 2rem 1rem;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease-out 1.5s forwards;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #58a6ff;
}
.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 2rem;
  text-align: center;
}
.hero-content .cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero-content .cta-group .cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #0066ff;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.hero-content .cta-group .cta-button i {
  font-size: 1.2rem;
}
.hero-content .cta-group .cta-button:hover {
  background-color: #0055cc;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero {
    max-width: 95%;
    margin: 0 0.5rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1rem;
    text-align: center;
  }
  .hero-content .cta-button {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
}
strong {
  color: #58a6ff;
  font-weight: 600;
}

.highlight {
  position: relative;
  border-radius: 1rem;
  background-color: #111;
  color: white;
  overflow: hidden;
  z-index: 1;
}
.highlight::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(270deg, red, orange, yellow, green, cyan, blue, violet, red);
  background-size: 400% 400%;
  animation: rainbowBorder 10s linear infinite;
  z-index: -1;
  border-radius: inherit;
}
.highlight::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: #111;
  border-radius: inherit;
  z-index: -1;
}
.highlight h3 {
  text-align: center;
}
.highlight h2 {
  font-size: 2.4rem;
  color: #58a6ff;
  text-align: center;
}
.highlight p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.highlight p a {
  color: #58a6ff;
  font-weight: bold;
}
.highlight p i {
  color: #aaa;
}
.highlight blockquote {
  font-style: italic;
  color: #58a6ff;
  border-left: 4px solid #58a6ff;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-size: 1.05rem;
}
.highlight .cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #0066ff;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.highlight .cta-btn .disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}
.highlight .cta-btn .disabled:hover {
  background-color: #0055cc;
}
.highlight .donacion-img {
  width: 30%;
  max-width: 500px; /* optional: prevent it from growing too big */
}
.highlight .donacion-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block; /* removes small spacing under images */
}
.highlight .iconos-contacto {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.highlight .logo-contacto {
  width: 64px;
  height: 64px;
  transition: transform 0.2s ease;
}
.highlight .logo-contacto:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .highlight {
    padding: 2rem 1rem;
  }
  .highlight h2 {
    font-size: 1.8rem;
  }
  .highlight p {
    font-size: 1rem;
  }
  .highlight blockquote {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }
  .highlight .cta-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
  .highlight .donacion-img {
    width: 60%;
    max-width: 500px; /* optional: prevent it from growing too big */
  }
}
.por-que-aceptar-bitcoin .container-benefits {
  display: flex;
}
.por-que-aceptar-bitcoin .container-benefits .beneficios-aceptar-btc {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.por-que-aceptar-bitcoin .container-benefits .beneficios-aceptar-btc .btcmap-btn {
  display: flex;
  justify-content: center;
}
.por-que-aceptar-bitcoin .container-benefits .beneficios-aceptar-btc li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  list-style: none;
}
.por-que-aceptar-bitcoin .container-benefits .beneficios-aceptar-btc i {
  margin-right: 8px;
  color: #58a6ff; /* Naranja Bitcoin */
}
.por-que-aceptar-bitcoin .container-benefits .beneficios-aceptar-btc a {
  text-shadow: 0 0 3px #58a6ff;
  animation: glow 1s ease-in-out infinite alternate;
}
@keyframes glow {
  from {
    text-shadow: 0 0 20px #58a6ff;
  }
  to {
    text-shadow: 0 0 10px #58a6ff;
  }
}
.por-que-aceptar-bitcoin .container-benefits .image-container {
  margin-right: 0;
}
.por-que-aceptar-bitcoin .container-benefits .image-container img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .por-que-aceptar-bitcoin .container-benefits .beneficios-aceptar-btc {
    gap: 2rem;
  }
  .por-que-aceptar-bitcoin .container-benefits .image-container {
    display: none;
    overflow: hidden;
  }
}
.resources p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.resources, .quienes-somos {
  color: #c9d1d9;
  text-align: center;
  background: none;
}
.quienes-somos h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.quienes-somos h2 i {
  margin-right: 0.6rem;
  color: #58a6ff;
}
.quienes-somos p {
  max-width: 700px;
  margin: 0 auto 1rem auto;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
}
.quienes-somos strong {
  color: #58a6ff;
}

.que-hacemos {
  background-color: #161b22;
}
.que-hacemos h2 {
  text-align: center;
}
.que-hacemos h2 i {
  margin-right: 0.5rem;
  color: #58a6ff;
}
.que-hacemos .acciones-comunidad {
  list-style: none;
  margin: 0 auto;
}
.que-hacemos .acciones-comunidad li {
  margin: 0.75rem 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.que-hacemos .acciones-comunidad li i {
  margin-right: 0.75rem;
  color: #58a6ff;
  min-width: 25px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  width: 100%;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.disabled {
  pointer-events: none;
}
.disabled:hover {
  transform: translateY(-5px);
}

.card {
  background: #161b22;
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.card h3 {
  margin: 0 0 0.5rem;
  color: #58a6ff;
}
.card p {
  margin-top: auto;
}
.card:hover {
  transform: translateY(-5px);
}
.card .coming-soon {
  font-size: 0.8rem;
  color: #58a6ff;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 0.5rem;
}

.por-que-bitcoin {
  background: none;
}
.por-que-bitcoin h2 {
  text-align: center;
}
.por-que-bitcoin .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  width: 100%;
}
.por-que-bitcoin .benefit {
  text-align: center;
  background-color: #161b22;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}
.por-que-bitcoin .benefit:hover {
  transform: translateY(-5px);
}
.por-que-bitcoin .benefit i {
  font-size: 2.5rem;
  color: #58a6ff;
  margin-bottom: 1rem;
}
.por-que-bitcoin .benefit h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.por-que-bitcoin .benefit p {
  font-size: 1rem;
  line-height: 1.5;
}

.cta-main {
  position: relative;
  border-radius: 1rem;
  background-color: #111;
  color: white;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}
.cta-main::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(270deg, red, orange, yellow, green, cyan, blue, violet, red);
  background-size: 400% 400%;
  animation: rainbowBorder 10s linear infinite;
  z-index: -1;
  border-radius: inherit;
}
.cta-main::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: #111;
  border-radius: inherit;
  z-index: -1;
}
.cta-main h2 {
  font-size: 2.4rem;
  color: #58a6ff;
}
.cta-main h2 i {
  margin-right: 0.5rem;
}
.cta-main p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #ccc;
}
.cta-main p i {
  margin-right: 0.4rem;
  color: #58a6ff;
}
.cta-main p br {
  margin-bottom: 1rem;
}
.cta-main .evento-destacado {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #58a6ff;
  padding: 2rem 1.5rem;
  margin: 2rem auto;
  max-width: 600px;
  border-radius: 10px;
  text-align: left;
}
.cta-main .evento-destacado h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #58a6ff;
}
.cta-main .evento-destacado h3 i {
  margin-right: 0.5rem;
}
.cta-main .evento-destacado p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.cta-main .evento-destacado p strong {
  color: #fff;
}
.cta-main .evento-destacado p em {
  font-style: italic;
  color: #aaa;
}
.cta-main .evento-destacado p i {
  margin-right: 0.4rem;
}
.cta-main .evento-destacado .evento-button {
  display: inline-block;
  background-color: #0066ff;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.cta-main .evento-destacado .evento-button .disabled {
  pointer-events: none;
  cursor: not-allowed;
}
.cta-main .evento-destacado .evento-button .disabled i {
  margin-right: 0.5rem;
}
.cta-main .evento-destacado .evento-button .disabled:hover {
  background-color: #0055cc;
}
.cta-main .cta-button {
  margin-top: 2rem;
  display: inline-block;
  background-color: #0066ff;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.cta-main .disabled {
  pointer-events: none;
  cursor: not-allowed;
}
.cta-main .disabled i {
  margin-right: 0.5rem;
}
.cta-main .disabled:hover {
  background-color: #0055cc;
}

.donaciones {
  display: flex;
  flex-direction: column; /* or row depending on layout */
  align-items: center;
  justify-content: center;
}
.donaciones h2 {
  color: #58a6ff;
}
.donaciones .container-donaciones {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
  padding-top: 2rem;
  flex-direction: row;
  gap: 2rem;
}
.donaciones .link-billeteras {
  text-align: center;
}

@media (max-width: 768px) {
  .donaciones {
    flex-direction: column;
    text-align: center;
  }
  .donaciones h3 {
    font-size: 1.2rem;
  }
  .donaciones .container-donaciones {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    align-content: center;
  }
  .donaciones .link-billeteras {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .donaciones .link-billeteras img {
    align-self: center;
    width: 150px;
    height: auto;
  }
  .donacion {
    max-width: 90%;
  }
  .donacion #blink-pay-button-container .blink-pay-widget {
    width: 90% !important;
    min-width: 100px !important;
  }
}
@keyframes rainbowBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bitcoin-table {
  width: 90%;
  max-width: 1000px;
  border-collapse: collapse;
  margin: 2rem auto;
  font-size: 1rem;
  color: #c9d1d9;
  background-color: #161b22;
  border-radius: 8px;
  overflow: hidden;
}
.bitcoin-table th,
.bitcoin-table td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}
.bitcoin-table th {
  background-color: #0066ff;
  color: white;
  font-weight: bold;
  white-space: nowrap;
}
.bitcoin-table td {
  border-top: 1px solid #2a3441;
}
.bitcoin-table tbody tr:nth-child(even) {
  background-color: #161b22;
}
.bitcoin-table tbody tr:nth-child(odd) {
  background-color: #12161c;
}
.bitcoin-table tbody tr:hover {
  background-color: #21262d;
}
@media (max-width: 768px) {
  .bitcoin-table {
    font-size: 0.95rem;
  }
  .bitcoin-table thead {
    display: none;
  }
  .bitcoin-table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #21262d;
    border-radius: 8px;
    background: #161b22;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    padding: 1rem;
  }
  .bitcoin-table td {
    display: block;
    padding: 0.5rem 0;
    border: none;
    position: relative;
    color: #c9d1d9;
  }
  .bitcoin-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #58a6ff;
    display: block;
    margin-bottom: 0.25rem;
  }
}

.glosario-intro {
  text-align: center;
  padding: 2rem 1rem;
  width: 90%;
  background-color: #161b22;
}
.glosario-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #58a6ff;
  font-weight: 700;
}
.glosario-intro p {
  font-size: 1.2rem;
  color: #c9d1d9;
  max-width: 700px;
  margin: 0 auto;
}

.comisiones h1, .comisiones h2, .comisiones h3 {
  color: #58a6ff;
  text-align: center;
  margin-bottom: 1rem;
}
.comisiones p {
  text-align: justify;
}
.comisiones a:hover {
  color: #58a6ff;
}
.comisiones img {
  display: block;
  margin: 1.5rem auto;
  max-width: 100%;
  border-radius: 6px;
}
.comisiones ol, .comisiones ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto 1.5rem auto;
  padding-left: 2rem;
}
.comisiones ol li, .comisiones ul li {
  margin-bottom: 0.5rem;
  text-align: left;
}
.comisiones .box {
  background-color: #202731;
  border-left: 4px solid #58a6ff;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
.comisiones .box p {
  margin: 0.4rem 0;
}
.comisiones .compra1 h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comisiones .compra1 h2 i {
  margin-right: 0.6rem;
  color: #58a6ff;
}
.comisiones .compra1 ol {
  padding: 0 2rem;
  align-items: flex-start;
}
.comisiones .compra1 p {
  text-align: justify;
}
.comisiones .compra1 h3 {
  color: #58a6ff;
  margin-bottom: 0.5rem;
}
.comisiones .comisiones-intro {
  padding: 2rem 1rem;
  background-color: #161b22;
}
.comisiones .comisiones-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #58a6ff;
  font-weight: 700;
}
@media (max-width: 768px) {
  .comisiones {
    padding: 1rem;
  }
  .comisiones h2, .comisiones h3 {
    font-size: 1.3rem;
  }
  .comisiones ol, .comisiones ul {
    padding-left: 1rem;
  }
  .comisiones .box {
    padding: 1rem 0.5rem;
  }
  .comisiones .comisiones-intro {
    padding: 1.5rem 1rem;
  }
  .comisiones .comisiones-intro h1 {
    font-size: 1.8rem;
  }
}
h1 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #58a6ff;
}

p.subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #c9d1d9;
  margin-bottom: 20px;
}

.wallet-card {
  background: #161b22;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wallet-info {
  max-width: 70%;
}

.wallet-name {
  font-size: 1.1rem;
  font-weight: bold;
}

.wallet-description {
  font-size: 0.85rem;
  color: #c9d1d9;
  margin-top: 4px;
}

.download-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: none;
}

.footer-text {
  font-size: 0.75rem;
  text-align: center;
  color: #aaa;
  margin-top: 24px;
}

.concepts {
  background: #161b22;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.concepts h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.concepts p {
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: #c9d1d9;
}

.concepts strong {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #58a6ff;
}

header {
  padding: 1rem 0rem;
}

.site-header {
  background-color: #0d1117;
  color: #c9d1d9;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.no-show {
  display: none;
}

.show {
  display: flex;
}

nav#nav-menu .nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

@media (max-width: 1024px) {
  .site-header {
    width: 95%;
  }
}
@media (max-width: 768px) {
  .site-header {
    width: 90%;
  }
  .site-header button#nav-toggle {
    display: block;
  }
}
@media (max-width: 480px) {
  .site-header {
    width: 90%;
  }
}
#footer {
  display: flex;
  justify-content: center;
}

.site-footer {
  background-color: #0d1117;
  color: #c9d1d9;
  padding: 1.5rem 1rem 0.2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.site-footer nav ul li a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.site-footer nav ul li a i {
  margin-right: 0.5rem;
  color: #58a6ff;
}
.site-footer nav ul li a:hover {
  color: #58a6ff;
}
.site-footer .credito {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .site-footer {
    width: 95%;
  }
}
@media (max-width: 768px) {
  .site-footer {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .site-footer {
    width: 90%;
  }
}/*# sourceMappingURL=main.css.map */