/* VARIABLES MODO CLARO */
:root {
  --bg: #f4f4f4;
  --card: #ffffff;
  --text: #1a1a1a;
  --accent: #ce0000;
  --border: #dcdcdc;
  --header: #f9fafb;
  --highlight: #ffe07a;
}

/* VARIABLES MODO OSCURO */
body.dark-mode {
  --bg: #0f0f0f;
  --card: #1a1a1a;
  --text: #f1f1f1;
  --accent: #ffb400;
  --border: #333;
  --header: #222;
  --highlight: #ffc94d;
}

body {
  background: var(--bg);
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  color: var(--text);
  transition: background 0.3s, color 0.3s;
}

/* CONTENEDOR GENERAL */
.modall {
  width: 80%;
  margin: 30px auto;
  background: var(--card);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,.25);
  transition: background 0.3s, box-shadow 0.3s;
}

/* TITULOS */
.modal-content h1 {
  text-align: center;
  margin: 30px 0 20px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 5px;
}

/* SOBRE WOLFJAURIA */
.sobre_wolfjauria p {
  line-height: 1.6;
  color: var(--text);
}
.sobre_wolfjauria a {
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
}
.sobre_wolfjauria a:hover {
  text-decoration: underline;
}

/* TEAM */
.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.team .artstation {
  width: 230px;
  background: var(--header);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  transition: transform .3s, box-shadow .3s, background .3s;
}
.team .artstation:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.team img {
  width: 80px;
  margin: 12px auto;
  display: block;
}
.team h2 {
  font-size: 14px;
  margin: 6px 0;
  color: var(--text);
}
.team h3 {
  font-size: 12px;
  color: #777;
}
body.dark-mode .team h3 {
  color: #aaa;
}
.team .link {
  color: var(--accent);
  font-size: 13px;
}
.team .link:hover {
  text-decoration: underline;
}

/* DONADORES */
.donadores_contactenos p,
.donadores_nuevo p {
  margin: 20px 0;
  font-size: 15px;
  color: var(--text);
}
.donadores_contactenos a,
.donadores_nuevo a {
  color: var(--accent);
}
.donadores_nuevo {
  background: var(--highlight);
  padding: 10px;
  border-left: 4px solid var(--accent);
  color: #000;
}
body.dark-mode .donadores_nuevo {
  color: var(--text);
}

/*--------ESTILOS DE LOS BOTONES PAYPAL Y MP------*/

    /* ==========================
   BOTONES DE DONACIÓN
   ========================== */

/* PayPal */
button.paypal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #0070ba, #003087);
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 48, 135, 0.4);
    margin-top: 20px;
}

button.paypal i {
  font-size: 18px;
}

button.paypal:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 112, 186, 0.6);
}

/* Mercado Pago */
button.mp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #00a8e0, #0077b5);
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 120, 181, 0.4);
    margin-left: 10px;
}

button.mp img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

button.mp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 168, 224, 0.6);
}

/* ==========================
   DARK MODE
   ========================== */
body.dark-mode button.paypal {
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  box-shadow: 0 4px 14px rgba(0, 112, 186, 0.6);
}

body.dark-mode button.mp {
  background: linear-gradient(90deg, #FFFF00, #0077b5);
  box-shadow: 0 4px 14px rgba(0, 120, 181, 0.6);
}


/*-----------------------------------------------*/

/* TABLA */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 25px 0;
  font-size: 15px;
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
  transition: background 0.3s;
}
th, td {
  padding: 12px;
  text-align: left;
}
th {
  background: var(--accent);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}
td {
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
tbody tr:nth-child(odd) {
  background: var(--header);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .team {
    flex-direction: column;
    align-items: center;
  }
  .modall {
    width: 95%;
    padding: 15px;
  }
}


/*-----------ESTILOS PARA LA VENTA MODAL PAYPAL Y MP---------------*/

/* Estilos base para el modal */
.transferencias .modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.transferencias .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    box-shadow: 2px 3px 15px 5px;
}

.transferencias .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.transferencias .close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Estilos para el título */
.transferencias .modal-content .datos_bancarios {
    background: #53B9F9;
    width: 100%;
    height: 70px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}



.contenedor_cuil, .contenedor_cvu, .contenedor_banco {
    display: flex;
    flex-direction: column;
}

.contenedor_cuil a {
   padding: 10px;
    background: #F8BE44;
    width: 200px;
    margin: auto;
    text-align: center;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    border-radius: 20px;
    transition: all 0.5 ease;
}
.contenedor_cuil a:hover {
    transform: scale(1.1);
}

.contenedor_cuil h2 {
    width: 100%;
    text-align: center;
}
.contenedor_cuil h3 {
    width: 100%;
    text-align: center;
    font-size: 15px;
    color: #969996;
}

.contenedor_cvu h2 {
    color: #1E6FFF;
}
.contenedor_cvu h3 {
    color: #969996;
}

.contenedor_banco h2 {
    color: #1E6FFF;
}
.contenedor_banco h3 {
    color: #969996;
}

.botones-container {
    width: 100%;
    margin: auto;
}
.botones-container button {
    padding: 10px;
    margin: auto;
    cursor: pointer;
}

/*--------------------------------------------------------------*/

/* ============================================================
   LOGOTIPO OFICIAL - RESPONSIVE + DARK MODE
   ============================================================ */

.logos-creditos{
  width: 100%;
  min-height: 260px;
  padding: 30px 15px;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;
  box-sizing: border-box;
}

.logos-creditos img{
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

/* ESCRITORIO */
@media (min-width: 1024px){

  .logos-creditos{
      min-height: 450px;
  }

  .logos-creditos img{
      max-height: 380px;
  }

}

/* Modo claro: logo oscuro */
.logo-creditos-claro{
  display: block !important;
}

.logo-creditos-oscuro{
  display: none !important;
}

/* Modo oscuro: logo claro */
body.dark-mode .logo-creditos-claro{
  display: none !important;
}

body.dark-mode .logo-creditos-oscuro{
  display: block !important;
}

@media (max-width: 768px){
  .logos-creditos{
    min-height: 190px;
    padding: 24px 10px;
  }

  .logos-creditos img{
    max-width: 100%;
    max-height: 150px;
  }
}