/* === SOBRE MÍ === */

.about-section {
  margin-top: 70px;
  margin-bottom: 80px;
}

.about-title {
  text-align: center;
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 40px;
  background: linear-gradient(90deg, var(--gold), var(--silver));
  background-clip: text;
  color: transparent;
  font-family: "Racing Sans One", sans-serif;
  margin-left: 60%;
}

.about-wrapper {
  display: flex;
  align-items: center;  
  flex-wrap: wrap;
  margin-left: 20%;
  gap: 40px
}

.about-photo {
  flex: 1;
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(40px);
  transition: transform 0.2s ease-out;
}

/* TEXTO */
.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h3 {
  font-size: 36px;
  margin-bottom: 16px;
  color: white;
}

.about-text p {
  color: white;
  font-size: 20px;
  line-height: 1.6;
  width: 600px;
}

.golden {
  color: var(--gold);
}


:root {
  --footer-height: 70px; /* ya no lo usaremos para padding, puedes borrarlo si quieres */
}

/* ---------- FOOTER REVEAL CON CONTENIDO GRANDE ---------- */
footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  /* 🔥 que el footer pueda ser alto, hasta pantalla completa */
  max-height: 100vh;
  overflow-y: auto;   /* 🔥 permite hacer scroll dentro del footer */

  
  padding: 16px 20px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;   /* ahora es una columna: Sobre mí + líneas finales */
  

  background: rgba(5, 5, 8, .96);
  backdrop-filter: blur(8px);
  z-index: 100;

  transform: translateY(100%);      /* empieza oculto abajo */
  transition: transform .25s ease;
}

footer strong {
  color: var(--silver);
}

/* 👇 ya NO hace falta este padding-bottom en el body para este enfoque */
body {
  padding-bottom: 0;
}
.foot{
  display: flex;
  justify-content: space-between;
  z-index: 99999;
}

.foot1, .foot2 {
  color: white;
  font-size: 16px;
  z-index: 99999;
}

/* ============================
   COOKIE BANNER (compact + responsive)
   ============================ */
.cookie-banner{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 0;

  display: grid;
  place-items: center;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease;
}

.cookie-banner.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__inner{
  width: min(560px, 100%);
  border-radius: 16px;
  padding: 12px 12px;

  background: rgba(7, 7, 14, .78);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);

  box-shadow: 0 18px 50px rgba(0,0,0,.55);
}

.cookie-banner__text{
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255,255,255,.86);
}

.cookie-banner__link{
  color: rgba(245,193,75,.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,193,75,.35);
}
.cookie-banner__link:hover{
  border-bottom-color: rgba(245,193,75,.75);
}

.cookie-banner__actions{
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* Buttons */
.cookie-btn{
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  transition: transform .18s ease, filter .18s ease, background .18s ease, border-color .18s ease;
}
.cookie-btn:active{ transform: translateY(1px); }

.cookie-btn--ghost{
  background: transparent;
}

.cookie-btn--primary{
  border-color: rgba(245,193,75,.55);
  background: linear-gradient(135deg, rgba(245,193,75,.95), rgba(192,192,192,.85));
  color: #07070e;
}

/* Responsive: en pantallas muy pequeñas apila */
@media (max-width: 420px){
  .cookie-banner__text{
    font-size: 12.5px;
  }
  .cookie-banner__actions{
    justify-content: stretch;
  }
  .cookie-btn{
    flex: 1;
    padding: 10px 12px;
  }
}

