/* ================= RESET BÁSICO ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= COLORES ================= */
:root {
  --negro: #111111;
  --arena: #F4F1EC;
  --topo: #6F6A63;
}

/* ================= GENERAL ================= */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--arena);
  color: var(--negro);
  line-height: 1.4;
  letter-spacing: 0.2px;
}

/* ================= ENLACES ================= */
a {
  text-decoration: none;
  color: inherit;
}

/* ================= HEADER GENERAL ================= */
header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 20px 40px;
}

/* ================= LOGO ================= */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  letter-spacing: 2px;
}

.logo span {
  font-weight: 300;
}

.logo img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.logo-small img {
  width: 50px;
  height: auto;
}

/* ================= MENÚ ================= */
nav {
  margin-left: auto;
}

nav a {
  margin: 0 15px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--topo);
}

nav a:hover,
nav a.active {
  color: var(--negro);
}

/* ================= SECCIONES ================= */
.section {
  max-width: 700px;
  margin: 20px auto 0;
  padding: 0 20px;
  text-align: center;
}

/* ================= FOOTER GENERAL ================= */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--topo);
  padding: 20px 40px;
  width: 100%;
  box-sizing: border-box;
}

.footer-left,
.footer-center,
.footer-right {
  position: relative;
}

.footer-left a,
.footer-right a {
  color: var(--topo);
  text-decoration: none;
}

.footer-left a:hover,
.footer-right a:hover {
  color: var(--negro);
}

/* ================= INDEX ================= */
body.index {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(120deg, #f4f1ec, #dcd6cf);
  background-size: 200% 200%;
  animation: gradientAnim 8s ease infinite;
}

/* Animación suave del degradado */
@keyframes gradientAnim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Opcional: efecto de aparición del contenido */
body.index header,
body.index .section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}

/* Header y frase central */
body.index header {
  position: relative;
  height: calc(100% - 120px); /* dejamos más espacio para el footer */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Menú siempre arriba a la derecha */
body.index nav {
  position: absolute;
  top: 30px;
  right: 40px;
}

/* Sección central (frase) */
body.index .section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  z-index: 1;
  font-size: 14px;
  margin-bottom: 110px; /* espacio extra entre frase y footer */
}

/* Footer alineado correctamente */
body.index .footer {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between; /* separa left, center, right */
  align-items: center;
  font-size: 13px;
  color: var(--topo);
  padding: 0 40px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.2s; /* aparece después de header y sección */
}

.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
  flex: 1;
}

.footer-right {
  display: flex;
  gap: 15px;
  text-align: right;
}

/* ================= ESTUDIO ================= */
body.estudio header {
  height: auto;
  position: relative;
  display: flex;
  justify-content: flex-start; /* Logo a la izquierda */
  align-items: center;
  padding: 20px 40px;
}

body.estudio .logo-small {
  position: absolute;
  top: 20px;
  left: 40px;
}

body.estudio .logo-small img {
  width: 50px;
  height: auto;
}

body.estudio nav {
  position: absolute;
  top: 30px;
  right: 40px;
}

/* ================= SECCIÓN ESTUDIO GENERAL ================= */
body.estudio .section.estudio {
  max-width: none;
  margin:110px auto 80px;
  padding: 0 20px;
  text-align: center;
}

body.estudio .section.estudio h1,
body.estudio .section.estudio p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}

/* ================= BLOQUE INTRODUCCIÓN ESTUDIO ================= */
.intro-estudio .intro-container {
  display: flex;
  align-items: flex-start;      /* texto y foto alineados por arriba */
  justify-content: center;      /* centrado horizontal en la página */
  max-width: 1200px;
  margin: 330px auto 330px;     /* margen superior e inferior */
  gap: 60px;                     /* separación entre imagen y texto */
  flex-wrap: nowrap;             /* evita que el texto caiga debajo en escritorio */
  padding: 0 40px;
}

/* IMAGEN */
.intro-estudio .intro-image {
  flex: 0 0 500px;              /* aumenta el ancho del contenedor de imagen */
}

.intro-estudio .intro-image img {
  width: 100%;
  filter: grayscale(100%);
  border-radius: 0px;
  display: block;
}

/* TEXTO */
.intro-estudio .intro-text {
  flex: 1 1 auto;
  max-width: calc(1200px - 400px - 60px); /* evita que el texto se salga */
  text-align: left;
  margin: 0px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;   /* alinea al inicio, no al centro vertical */
}

/* Nombre */
.intro-estudio .intro-text h1 {
  font-family: 'Lora', serif !important;
  font-weight: 100;
  font-size: 1.3rem !important;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.4px;
  margin-bottom: 40px;
  flex-shrink: 0;
}

/* Descripción */
.intro-estudio .intro-text p {
  font-size: 0.9rem !important;
  line-height: 1.7;
  color: var(--negro);
  text-align: justify;
  margin-bottom: 20px;
}

/* ===== ESTUDIO · ANIMACIÓN FINAL LIMPIA ===== */
/* H1 typing */
body.estudio h1 {
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: typing-h1 1.8s steps(28, end) forwards;
  animation-delay: 0.3s;
}

/* Imagen y texto con fundido */
body.estudio img,
body.estudio p {
  opacity: 0;
  animation: fadeIn 1.4s ease forwards;
  animation-delay: 1.8s;
}

/* keyframes */
@keyframes typing-h1 {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 900px) {
  .intro-estudio .intro-container {
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    margin: 60px auto 80px;
  }

  .intro-estudio .intro-image {
    margin-top: 0;
  }

  .intro-estudio .intro-text {
    max-width: 100%;
    text-align: center;
  }

  .intro-estudio .intro-text h1 {
    font-size: 1.5rem;
  }

  .intro-estudio .intro-text h3 {
    font-size: 1rem;
  }

  /* ESTUDIO: desactivar typing en móvil (para que no se vea raro) */
  body.estudio h1 {
    width: auto;
    white-space: normal;
    animation: none;
  }

  body.estudio img,
  body.estudio p {
    opacity: 1;
    animation: none;
  }
}

/* ================= PROYECTOS ================= */

body.proyectos header {
  height: auto;
  position: relative;
  display: flex;
  justify-content: flex-start; /* Logo a la izquierda */
  align-items: center;
  padding: 20px 40px;
}

body.proyectos .logo-small {
  position: absolute;
  top: 20px;
  left: 40px;
}

body.proyectos .logo-small img {
  width: 50px;
  height: auto;
}

body.proyectos nav {
  position: absolute;
  top: 30px;
  right: 40px;
}

/* sección principal */
body.proyectos .section.proyectos {
  max-width: 1400px;
  margin: 50px auto 100px;
  padding: 0 40px;
}

/* ================= GRID PROYECTOS ================= */
.proyectos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ================= PROYECTO INDIVIDUAL ================= */
.proyecto {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.proyecto img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease, transform 0.4s ease;
}

/* ANIMACIÓN PROYECTOS (igual que index) */
.proyecto {
  opacity: 0;
  transform: translateY(20px);
}

.proyecto.show {
  animation: fadeInUp 3s ease forwards;
}

/* ================= OVERLAY TEXTO ================= */
.proyecto-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(244, 241, 236, 0.85),
    rgba(244, 241, 236, 0)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.proyecto-overlay > div {
  display: block;
  width: 100%;
}

.proyecto-overlay h2 {
  font-family: 'Lora', serif;
  font-weight: 100;
  font-size: 1.5rem;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  color: var(--negro);
  margin: 0;
  text-align: left;
}

.proyecto-overlay .subtitulo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--negro);
  margin: 4px 0 0 0;
  text-align: left;
}

/* ================= HOVER ================= */
.proyecto:hover img {
  filter: saturate(70%) brightness(98%);
  transform: scale(1.01);
}

.proyecto:hover .proyecto-overlay {
  opacity: 1;
}

/* ================= RESPONSIVE MÓVIL ================= */
@media screen and (max-width: 900px) {
  .proyectos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
  }

  .proyecto-overlay h2 {
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
  }

  .proyecto-overlay {
    justify-content: center;
    padding: 15px;
  }
}

/* ================= PROYECTO INDIVIDUAL (GENERAL) ================= */
body.proyecto-individual {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--arena, #F4F1EC);
  color: var(--negro, #111111);
  margin: 0;
  line-height: 1.4;
}

/* ================= HEADER ================= */
body.proyecto-individual header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 40px;
  position: relative;
}

body.proyecto-individual .logo-small {
  position: absolute;
  top: 20px;
  left: 40px;
}

body.proyecto-individual .logo-small img {
  width: 50px;
}

body.proyecto-individual nav {
  position: absolute;
  top: 30px;
  right: 40px;
}

body.proyecto-individual nav a {
  margin: 0 15px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--topo, #6F6A63);
}

body.proyecto-individual nav a:hover,
body.proyecto-individual nav a.active {
  color: var(--negro, #111111);
}

/* ================= SECCIÓN PRINCIPAL ================= */
body.proyecto-individual .section.proyecto-detalle {
  max-width: 1100px;
  margin: 120px auto 20px;
  padding: 0 20px;
}

body.proyecto-individual .section.proyecto-detalle,
body.proyecto-individual .imagenes-proyecto img {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 2.4s ease forwards;
}

body.proyecto-individual .section.proyecto-detalle {
  animation-delay: 0.4s;
}

body.proyecto-individual .imagenes-proyecto img {
  animation-delay: 0.6s;
}

/* ================= TEXTO DEL PROYECTO ================= */
.proyecto-detalle h1 {
  font-family: 'Lora', serif;
  font-weight: 100;
  font-size: 2.4rem;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 10px;
}

.proyecto-detalle .subtitulo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  font-style: italic;
  text-align: left;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 5px;
}

.proyecto-detalle .subtitulo::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  background-color: var(--negro);
}

/* ================= DESCRIPCIÓN DETALLADA ================= */
.descripcion-detalle {
  margin-bottom: 0;
}

.descripcion-detalle p:last-child {
  margin-bottom: 0;
}

.descripcion-detalle p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: justify;
}

/* ================= GRID DE IMÁGENES ================= */
.imagenes-proyecto {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.imagenes-proyecto img.horizontal {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  margin: 0;
}

.doble-vertical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.doble-vertical img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

/* ================= FOOTER ================= */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--topo, #6F6A63);
  padding: 30px 40px;
  width: 100%;
  box-sizing: border-box;
}

.footer-left, .footer-center, .footer-right {
  position: relative;
}

.footer-left a, .footer-right a {
  color: var(--topo, #6F6A63);
  text-decoration: none;
}

.footer-left a:hover, .footer-right a:hover {
  color: var(--negro, #111111);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .imagenes-proyecto {
    flex-direction: column;
    gap: 20px;
  }

  .doble-vertical {
    grid-template-columns: 1fr;
  }

  .proyecto-detalle h1 {
    font-size: 2rem;
    text-align: left;
  }

  .proyecto-detalle .subtitulo,
  .descripcion-detalle p {
    text-align: left;
  }

  .proyecto-detalle .subtitulo::after {
    width: 30px;
  }
}

/* ==============================CONTACTO================================ */

/* ================= HEADER ================= */
body.contacto header {
  height: auto;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 40px;
}

body.contacto .logo-small {
  position: absolute;
  top: 20px;
  left: 40px;
}

body.contacto .logo-small img {
  width: 50px;
  height: auto;
}

body.contacto nav {
  position: absolute;
  top: 30px;
  right: 40px;
}

body.contacto nav a {
  margin: 0 15px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--topo);
}

body.contacto nav a:hover,
body.contacto nav a.active {
  color: var(--negro);
}

/* ================= SECCIÓN CONTACTO ================= */
body.contacto .section.contacto {
  max-width: none;
  text-align: left;
  padding: 240px 60px 290px;
}

body.contacto .intro-container {
  display: flex;
  flex-direction: row;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* COLUMNA IZQUIERDA */
body.contacto .contact-left {
  flex: 1.3;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}

body.contacto .contact-left h1 {
  font-family: 'Lora', serif;
  font-weight: 100;
  font-size: 2.0rem;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
  text-transform: capitalize;
}

body.contacto .contact-left p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* FORMULARIO */
body.contacto .contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

body.contacto .contact-form label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--topo);
}

body.contacto .contact-form input,
body.contacto .contact-form textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  background: transparent;
  outline: none;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

body.contacto .contact-form input:focus,
body.contacto .contact-form textarea:focus {
  border-bottom-color: var(--negro);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

body.contacto .contact-form textarea {
  resize: vertical;
  min-height: 90px;
}

body.contacto .contact-form button {
  margin-top: 25px;
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--negro);
  padding: 12px 38px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease, transform 0.2s ease;
}

body.contacto .contact-form button:hover {
  background: var(--negro);
  color: var(--arena);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ================= COLUMNA DERECHA ================= */
body.contacto .contact-right {
  flex: 0.7;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 155px;
}

body.contacto .info-contacto p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

body.contacto .info-contacto p strong {
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--negro);
}

body.contacto .info-contacto a {
  color: inherit;
  text-decoration: none;
}

body.contacto .info-contacto a:hover {
  text-decoration: underline;
}

/* ================= REDES SOCIALES ================= */
body.contacto .redes-sociales a {
  display: inline-block;
  margin-right: 20px;
  color: var(--negro);
  font-size: 1.5rem;
  transition: color 0.3s ease;
  vertical-align: middle;
}

body.contacto .redes-sociales a:hover {
  color: var(--topo);
}

/* ================= ANIMACIÓN ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= PÁGINAS LEGALES: Aviso Legal, Privacidad, Cookies ================= */

/* CONTENEDOR PRINCIPAL */
.section.avisos {
  max-width: 900px;
  margin: 180px auto 150px;
  padding: 0 20px;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}

/* TÍTULO PRINCIPAL */
.section.avisos h1 {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 50px;
  text-align: left;
}

/* PÁRRAFOS */
.section.avisos p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: justify;
}

/* TÍTULOS DE CAPÍTULO */
.section.avisos strong {
  display: block;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 10px;
  text-align: left;
}

/* LISTAS */
.section.avisos ul {
  margin: 15px 0 25px 25px;
  padding: 0;
}

.section.avisos li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 8px;
  text-align: justify;
}

/* ENLACES DENTRO DEL TEXTO */
.section.avisos a {
  color: var(--topo);
  text-decoration: underline;
}

.section.avisos a:hover {
  color: var(--negro);
}

/* ================= COOKIE BANNER ================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
}

#accept-cookies {
  background: #fff;
  color: #000;
}

#reject-cookies {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.hidden {
  display: none;
}

/* ================= RESPONSIVE GENERAL ================= */
@media (max-width: 900px) {

  /* ---------- GENERAL ---------- */
  body {
    font-size: 14px;
  }

  header {
    padding: 20px;
  }

  nav {
    gap: 16px;
  }

  nav a {
    font-size: 14px;
  }

  /* ---------- INDEX ---------- */
  body.index {
    height: auto;
    overflow: auto;
  }

  body.index header {
    height: auto;
    padding-top: 120px;
  }

  body.index .section {
    margin-bottom: 80px;
    font-size: 13px;
  }

  body.index .footer {
    position: static;
    margin-top: 60px;
    padding: 20px;
    font-size: 12px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* ---------- PROYECTOS ---------- */
  .proyectos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .proyecto-overlay h2 {
    font-size: 18px;
  }

  .proyecto-overlay p {
    font-size: 13px;
  }

  /* ---------- PROYECTO INDIVIDUAL ---------- */
  .imagenes-proyecto {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ---------- CONTACTO ---------- */
  body.contacto .section.contacto {
    padding: 90px 30px 110px;
  }

  body.contacto .intro-container {
    flex-direction: column;
    gap: 50px;
  }

  body.contacto .contact-left,
  body.contacto .contact-right {
    flex: 1;
    text-align: center;
  }

  body.contacto .contact-form button {
    width: 100%;
    text-align: center;
  }

  body.contacto .contact-left h1 {
    font-size: 1.9rem;
  }

  body.contacto .contact-left p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  body.contacto .redes-sociales a {
    margin-right: 15px;
    font-size: 1.3rem;
  }

  /* ---------- AVISOS LEGALES ---------- */
  .section.avisos {
    margin: 130px 20px 120px;
    padding: 0;
    font-size: 13px;
  }

  .section.avisos h1 {
    font-size: 1.7rem;
    margin-bottom: 35px;
  }

  .section.avisos p,
  .section.avisos li {
    text-align: left;
  }

  /* ---------- FOOTER GLOBAL ---------- */
  .footer {
    font-size: 12px;
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }

  /* ---------- COOKIE BANNER ---------- */
  .cookie-banner {
    font-size: 0.85rem;

/* Banner CookieYes */
#cookieyes-banner {
  background-color: var(--arena) !important;   /* Fondo arena */
  color: var(--topo) !important;               /* Texto topo */
  border-radius: 14px !important;
  padding: 18px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

/* Botón principal */
#cookieyes-banner .cookieyes-btn {
  border-radius: 20px !important;              /* Botones redondos */
  padding: 10px 18px !important;
  background-color: var(--negro) !important;   /* Fondo negro */
  color: var(--arena) !important;              /* Texto arena */
  border: none !important;
  font-weight: 600;
}

/* Botón secundario */
#cookieyes-banner .cookieyes-btn.secondary {
  background-color: var(--arena) !important;   /* Fondo arena */
  color: var(--topo) !important;               /* Texto topo */
  border: 1px solid var(--topo) !important;
}

/* Enlace de "Más info" */
#cookieyes-banner a {
  color: var(--topo) !important;
  text-decoration: underline !important;
}

}
