@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mouse+Memoirs&display=swap');

@font-face {
    font-family: 'NATS';
    src: url("../assets/natsFont/NATS-Regular.woff") format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
/*DONACIOENS CSS*/
body{
    background: url("../assets/Fondo.svg") no-repeat;
    background-size: cover;
}
.footer {
    height: 255px !important;
}
.home {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 60px auto;
    /* Más margen arriba y abajo */
    background-image: linear-gradient(to bottom, #11142a81, #373d6dab);
    box-shadow: 4px 4px 8px #04327A;
    border-radius: 10px;
    height: 553px;
    width: 957px;
}
/*NAVBAR*/
.donacionBoton {
    margin-right: 20px;
    justify-content: flex-end;
    border-radius: 20px;
    padding: 8px 16px;
    background-color: #21213B;
}

.donacionBoton:hover {
    background-color: #D37F85;
    transition: ease-in-out.4s;
}

.donacionBoton a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.767);
    font-family: 'NATS', sans-serif;
}

.donacionBoton a:hover {
    color: white;
    transition: ease-in-out .4s;
}

.navbar-collapse .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding-top: 16px;
}

.navbar-collapse .nav-item {
    width: 60%;
}

.navbar-collapse .nav-link {

    display: block;
    background: #d3d3d3;
    color: #0A0C19 !important;
    font-weight: bold;
    border-radius: 12px;
    padding: 10px 18px;
    text-align: center;
    font-family: 'NATS', sans-serif;
    box-shadow: 0 1 1rem rgba(0, 0, 0, 0.08);
    transition: background 0.2s, color 0.2s;
}

.navbar-collapse .nav-link:hover {
    color: #D37F85 !important;
}


.navbar-collapse {
    max-width: 332px;
    width: 80vw;
    /* O usa porcentaje */
    left: 0;
    top: 56px;
    /* Altura de la navbar */
    position: fixed;
    height: 100vh;
    background: rgba(10, 12, 25, 0.95);
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    border-radius: 0 12px 12px 0;
    padding-top: 1rem;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.inicio{
    margin: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.inicio a{
    color: white;
    margin-right: 20px;
    justify-content: flex-end;
    border-radius: 20px;
    padding: 8px 16px;
    background-color: #21213B;
    border: none;
    text-decoration: none;
    list-style-type: none;
}
.inicio a:hover {
    color: white;
    background-color: #D37F85;
    transition: ease-in-out.4s;
}


.logo-container-card {
    display: flex;
    align-items: center;  
    gap: 10px;
    margin-bottom: 90px;
}

.logo-card-img {
    width: 74px;
    height: 62px;
    margin-bottom: 50px;
 
}

.columna-70 {
    padding: 20px;
    border-radius: 8px;
}

.columna-70 h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.columna-70 p {
    margin-bottom: 50px;
    font-family: 'NATS', sans-serif;
    font-size: 20px;
    font-weight: normal;
    width: 52%;
}

.columna-30 {
    padding: 20px;
}

.donaciones-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.frecuencia,
.monto,
.nombre {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.frecuencia-buttons,
.monto-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.frecuencia-buttons button,
.monto-buttons button {
    display: flex;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px; 
    cursor: pointer;
    background-color: #11142A;
    color: rgba(255, 255, 255, 0.616);
    
}

.otro-monto{
    font-size: 9px;
    width: auto;
    padding: 10px;
    border-radius: 5px;
    background-color: #11142A;
    border: 1px solid #ccc !important;
    color: rgba(255, 255, 255, 0.616);
    width: 65%;
}
.selecciona-monto{
    font-size: 12px;
    font-family: 'NATS', sans-serif;
}
.donaciones-form input {
    padding: 10px;
    border-radius: 15px;
    background-color: #11142A;
    border: none;

}

.donaciones-form button {
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #11142A;
    color:#ffffffbd;
    border-color: #fff8;
}
.frecuencia-buttons button{
    width: 47%; /*mala practica?*/
}
.donaciones-form button:hover{
    background-color: #fff;
    color: #12171F;
}
.enviar-donacion{
    border: none;
}
.enviar-donacion:hover{
    background-color: #D37F85 !important;
    color: white !important;
}

#donador-nombre{
    color:#fff;
}
.monto-buttons .btn-monto{
    width: 30%;
}

.text-monto{
    display: flex;           /* mantiene label e ícono en la misma fila */
  align-items: center;     /* alinea verticalmente */
  gap: 5px;                /* espacio entre label y el ícono */
  position: relative;     
}
.text-monto i {
    color: #3498db;
    cursor: pointer;
    box-shadow: 0px 1px 8px #04327A;
    border-radius: 10px;
    padding: 3px 6px;
    margin-right: 5px;
}
.help-text {
    font-family: 'NATS', sans-serif;
  display: none; /* oculto por defecto */
  position: absolute;
  bottom: 100%; /* aparece arriba del icono */
  left: 50%;
  transform: translateX(80%);
  background-color: #ffb84dc2;
  color: black;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 0.9rem;
  margin-bottom: 5px; /* separación del icono */
  z-index: 10;
}
