.avisoCookies{
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70vw;
    background-image: url(/Pagina/imagenes/logo.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    background-blend-mode: soft-light;
    background-color: #b9bdbd;
    color: #326868;
    top: 2rem;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0px 10px 10px #3D3614;
    padding: 2rem;
    gap: 1rem;
    z-index: 2;
    .legalCookies,
    .legalCookies2{
        text-align: justify;    
    }

    .botones{
        display: flex;
        width: 90%;
        justify-content: space-around;
       
        .botonAceptar{
            padding: 0.5rem;
            font-size: 1rem;
            font-weight: 900;
            color: #326868;
            border-radius: 1rem;
            border-style: none;
            box-shadow: 0px 10px 10px #3D3614;
            background-color: transparent;
            text-shadow:0px 1px 1px #3D3614;
        }

        .botonRechazar{
            font-size: 1rem;
            border-style: none;
            background-color: transparent;
            color: #68150aa7;
            text-decoration: underline;
        }
    }
    
}

.fondoCookies{
    
    background-color: #b9bdbd50;
    backdrop-filter: blur(5px);
    min-width: 110vw;
    min-height: 110vh;
    position: fixed;
    top: 0;
    z-index: 1;
}

/* Bloque de enlaces visibles dentro del aviso de cookies */
.cookies-links {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 320px;
}

/* Cada enlace se ve como un botón suave */
.cookies-link-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  text-align: center;
  color: #0a3d3d;
  font-weight: 600;
  text-decoration: none;
}

.cookies-link-button:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Separación extra para la fila de botones Aceptar/Rechazar
   (si ya tienes algo para .botonesCookies, esto solo afina el espacio) */
.cookies-buttons-row {
  margin-top: 1rem;
}
/* ================================
   BOTONES (Aceptar / Rechazar)
   Diseño moderno tipo app
   ================================ */

/* Contenedor */
.cookies-buttons-row,
.botonesCookies {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

/* Botón base */
.botonAceptar,
.botonRechazar {
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  border: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.15s ease;
}

/* ACEPTAR (estilo dorado / premium) */
.botonAceptar {
  background: linear-gradient(135deg, #d8b16a, #f0d892);
  color: #141319;
  box-shadow: 0 0 8px rgba(240, 216, 146, 0.4);
}

.botonAceptar:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e0be7d, #f6e3b0);
  box-shadow: 0 0 12px rgba(240, 216, 146, 0.6);
}

.botonAceptar:active {
  transform: scale(0.97);
}

/* RECHAZAR (estilo esmeralda suave) */
.botonRechazar {
  background: rgba(0, 145, 120, 0.15);
  color: #00594a;
  border: 1px solid rgba(0, 145, 120, 0.4);
  box-shadow: 0 0 6px rgba(0, 145, 120, 0.25);
}

.botonRechazar:hover {
  background: rgba(0, 145, 120, 0.22);
  box-shadow: 0 0 10px rgba(0, 145, 120, 0.35);
  transform: translateY(-2px);
}

.botonRechazar:active {
  transform: scale(0.97);
}


@media (min-width:702px){
    .avisoCookies{
        background-size: 50%;
        top: 10rem;
    }
}

@media (min-width:1031px){
    .avisoCookies{
        background-size: 30%;
        top:5rem;
         
    }
}




