
:root {

  --color-principal: #f7dc82;       
  --color-principal-oscuro: #f2d167;
  --color-principal-claro: #fbe9ad;  
  --color-secundario: #252525;       
  --color-acento: #6b4423;    
  --color-fondo: #fdf6ec;   
  --color-texto: #252525;
  --color-blanco: #ffffff;

  --fuente-display: "Archivo Black", sans-serif;
  --fuente-script: "Allura", cursive;
  --fuente-texto: "Poppins", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--fuente-texto);
  color: var(--color-texto);
  background: var(--color-fondo);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

.section { padding: 5rem 1.5rem; }

.script {
  font-family: var(--fuente-script);
  font-weight: 400;
  line-height: 1;
}


.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Efecto "se escribe a mano": se desvela de izquierda a derecha */
.script-reveal {
  clip-path: inset(-30% 100% -30% -5%);
}
.script-reveal.is-written {
  animation: escribir 3.8s cubic-bezier(.55, .08, .45, .92) .3s forwards;
}
@keyframes escribir {
  to { clip-path: inset(-30% -5% -30% -5%); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .script-reveal { opacity: 1; transform: none; clip-path: none; animation: none; }
  .skills-ribbon__track { animation: none !important; }
  .fotomaton__tira { transform: none; animation: none !important; }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
  background: color-mix(in srgb, var(--color-fondo) 85%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(46, 42, 38, .08);
}

.nav__brand {
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
}
.nav__flower { color: var(--color-principal-oscuro); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: .92rem;
  font-weight: 500;
}
.nav__links a {
  text-decoration: none;
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--color-acento);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }

.nav__cta {
  background: var(--color-texto);
  color: var(--color-fondo);
  padding: .45rem 1.1rem;
  border-radius: 999px;
  transition: background .25s ease;
}
.nav__cta:hover { background: var(--color-acento); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .4rem;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--color-texto);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--color-principal-oscuro), var(--color-principal) 55%, var(--color-principal-claro));
  color: var(--color-acento);
  overflow: hidden;
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 2rem;
  z-index: 2;
}

.hero__title {
  font-family: var(--fuente-display);
  font-size: clamp(3.4rem, 14vw, 10.5rem);
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: .95;
  color: var(--color-blanco);
  text-shadow: 0 4px 30px rgba(0, 0, 0, .12);
}

.hero__titulo-wrap { position: relative; }

.hero__name {
  font-family: var(--fuente-script);
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  color: var(--color-acento);
  position: absolute;
  left: 50%;
  top: 64%;
  transform: translate(-50%, -50%) rotate(-6deg);
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  pointer-events: none;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-top: 3rem;
}
.hero__chips li {
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: .4rem 1.2rem;
  font-size: .95rem;
  font-weight: 500;
  backdrop-filter: blur(2px);
}

.hero__scroll {
  display: inline-block;
  margin-top: 3rem;
  font-size: 1.4rem;
  text-decoration: none;
  animation: flotar 1.8s ease-in-out infinite;
}
@keyframes flotar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Flores y hojas decorativas */
.flower {
  position: absolute;
  width: 340px; height: 340px;
  background:
    radial-gradient(circle at 50% 50%, currentColor 12%, transparent 13%),
    radial-gradient(circle at 50% 18%, currentColor 26%, transparent 27%),
    radial-gradient(circle at 81% 41%, currentColor 26%, transparent 27%),
    radial-gradient(circle at 69% 79%, currentColor 26%, transparent 27%),
    radial-gradient(circle at 31% 79%, currentColor 26%, transparent 27%),
    radial-gradient(circle at 19% 41%, currentColor 26%, transparent 27%);
  border-radius: 50%;
  opacity: .3;
  color: var(--color-blanco);
}
.flower--tl { top: -110px; left: -90px; animation: girar 40s linear infinite; }
.flower--br { bottom: -130px; right: -100px; width: 460px; height: 460px; animation: girar 55s linear infinite reverse; }
@keyframes girar { to { transform: rotate(360deg); } }

.leaf {
  position: absolute;
  width: 130px; height: 46px;
  background: var(--color-blanco);
  opacity: .25;
  border-radius: 0 50% 0 50%;
}
.leaf--1 { top: 18%; right: 8%; transform: rotate(35deg); }
.leaf--2 { bottom: 22%; left: 6%; transform: rotate(-20deg); width: 90px; height: 32px; }
.leaf--3 { top: 55%; right: 15%; transform: rotate(-60deg); width: 70px; height: 26px; }

/* ---- Atrezzo del hero: micrófono y cámara ----
   Van como background-image y no como <img> a propósito: si el fichero
   todavía no existe, no se ve nada (un <img> roto pintaría el icono de
   error encima del hero).

   El tratamiento imita las palmeras de la referencia: se desatura la foto
   y se funde con el degradado amarillo, de modo que conserva el detalle
   fotográfico pero queda como una marca de agua en la propia paleta. */
.prop {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: grayscale(1) contrast(.85) brightness(1.12);
  mix-blend-mode: soft-light;
  opacity: .9;
  pointer-events: none;
}

.prop--mic {
  background-image: url("../assets/img/hero-microfono.png");
  width: min(38vh, 300px);
  height: min(72vh, 640px);
  left: -3%;
  bottom: -8%;
  transform: rotate(-8deg);
}

.prop--cam {
  background-image: url("../assets/img/hero-camara.avif");
  width: min(50vh, 440px);
  height: min(40vh, 360px);
  right: -5%;
  top: 10%;
  transform: rotate(5deg);
}


.about__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about__photo { text-align: center; }


.fotomaton {
  cursor: pointer;
  user-select: none;
}

.fotomaton__cuerpo {
  position: relative;
  width: min(320px, 100%);
  margin: 0 auto 320px; 
}

.fotomaton__img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .15);
}


.fotomaton__salida {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  overflow: hidden;
  z-index: 2;
}


.fotomaton__salida::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 16px;
  background: linear-gradient(rgba(0, 0, 0, .4), transparent);
}

.fotomaton__tira {
  background: var(--color-blanco);
  padding: 8px 8px 16px;
  display: grid;
  gap: 8px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
  transform: translateY(-101%);
}
.fotomaton.is-imprimiendo .fotomaton__tira {
  animation: imprimir 3.6s ease-in-out .5s forwards;
}
@keyframes imprimir {
  0%   { transform: translateY(-101%); }
  16%  { transform: translateY(-76%); }
  26%  { transform: translateY(-76%); }
  46%  { transform: translateY(-44%); }
  56%  { transform: translateY(-44%); }
  82%  { transform: translateY(-6%); }
  90%  { transform: translateY(-6%); }
  100% { transform: translateY(0); }
}

.fotomaton__foto img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.fotomaton__foto:nth-child(1) img { object-position: top; }
.fotomaton__foto:nth-child(2) img { object-position: center; }
.fotomaton__foto:nth-child(3) img { object-position: bottom; }

.fotomaton__nota {
  margin-top: 1rem;
  font-size: .78rem;
  font-style: italic;
  color: rgba(46, 42, 38, .5);
  text-align: center;
}

.about__text .script {
  font-size: clamp(3rem, 6vw, 4.6rem);
  color: var(--color-acento);
  margin-bottom: .6rem;
}
.about__heading {
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.about__heading span { color: var(--color-secundario); }
.about__text p + p { margin-top: 1rem; }


.skills-ribbon {
  background: repeating-linear-gradient(90deg,
    var(--color-principal) 0 12px,
    var(--color-principal-claro) 12px 24px);
  padding: 1.6rem 0;
  overflow: hidden;
}
.skills-ribbon__track {
  display: flex;
  width: max-content;
  animation: marquesina 28s linear infinite;
}
.skills-ribbon__track + .skills-ribbon__track { margin-top: .9rem; }
.skills-ribbon__track--reverse {
  animation-direction: reverse;
  animation-duration: 34s;
}
.skills-ribbon__track ul {
  display: flex;
  gap: .9rem;
  padding-right: .9rem;
}
.skills-ribbon__track li {
  background: var(--color-fondo);
  color: var(--color-acento);
  border-radius: 999px;
  padding: .45rem 1.2rem;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}
@keyframes marquesina {
  to { transform: translateX(-50%); }
}


.resume { background: var(--color-fondo); }

.resume__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-areas:
    "edu exp soft"
    "lang exp soft";
  gap: 1.2rem;
  align-items: start;
}

.card {
  background: var(--color-blanco);
  border: 1.5px solid rgba(46, 42, 38, .12);
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 10px 30px rgba(46, 42, 38, .05);
}

.card__title {
  font-family: var(--fuente-script);
  font-size: 2.1rem;
  color: var(--color-texto);
  margin-bottom: .9rem;
}

.card__item { margin-bottom: 1rem; font-size: .82rem; line-height: 1.25; }
.card__item:last-child { margin-bottom: 0; }
.card__item strong { display: block; letter-spacing: .04em; }
.card__year { color: var(--color-acento); font-weight: 600; font-size: .75rem; display: block; }
.card__muted { color: rgba(46, 42, 38, .55); }

.card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: .55rem;
}
.card__row:last-child { margin-bottom: 0; }
.card__row small { font-weight: 400; }


.dots { display: inline-flex; gap: 4px; }
.dots i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--color-texto);
  opacity: .18;
}
.dots i.on { opacity: 1; }


.logofolio { padding-bottom: 0; }

.stickers {
  max-width: 1000px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.stickers__panel {
  background: var(--color-blanco);
  border-radius: 18px;
  border: 1.5px solid rgba(46, 42, 38, .12);
  padding: 1.4rem;
  text-align: center;
}
.stickers__label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(46, 42, 38, .5);
  margin-bottom: 1rem;
}
.stickers__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}

.sticker {
  display: grid;
  place-items: center;
  width: 108px; height: 108px;
  padding: 0 12px;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-blanco);
  transition: transform .3s ease;
}
.sticker:hover { transform: rotate(-6deg) scale(1.08); }

.sticker--oval { border-radius: 50%; width: 116px; height: 84px; }
.sticker--seal {
  clip-path: polygon(100% 50%, 88.6% 60.4%, 93.3% 75%, 78.3% 78.3%, 75% 93.3%,
    60.4% 88.6%, 50% 100%, 39.6% 88.6%, 25% 93.3%, 21.7% 78.3%, 6.7% 75%,
    11.4% 60.4%, 0% 50%, 11.4% 39.6%, 6.7% 25%, 21.7% 21.7%, 25% 6.7%,
    39.6% 11.4%, 50% 0%, 60.4% 11.4%, 75% 6.7%, 78.3% 21.7%, 93.3% 25%, 88.6% 39.6%);
}
.sticker--orange { background: var(--color-principal); color: var(--color-acento); }
.sticker--olive { background: var(--color-secundario); }
.sticker--peach { background: var(--color-principal-claro); color: var(--color-acento); }

.logofolio__banner {
  position: relative;
  background: var(--color-principal);
  padding: 4.5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.logofolio__title {
  font-family: var(--fuente-display);
  font-size: clamp(2.6rem, 9vw, 6.5rem);
  text-transform: uppercase;
  color: var(--color-acento);
  letter-spacing: .02em;
  position: relative;
  z-index: 2;
}
.flower--banner-l { color: var(--color-blanco); opacity: .5; width: 190px; height: 190px; left: 4%; top: 50%; translate: 0 -50%; }
.flower--banner-r { color: var(--color-principal-claro); opacity: .55; width: 190px; height: 190px; right: 4%; top: 50%; translate: 0 -50%; }

.logofolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.logo-tile {
  background: var(--tile);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--color-blanco);
  transition: filter .3s ease;
}
.logo-tile:hover { filter: brightness(1.08); }
.logo-tile .script { font-size: 2.6rem; }
.logo-tile[style*="#f3ede0"] { color: var(--color-texto); }
.logo-tile--caps {
  font-family: var(--fuente-display);
  font-size: 1.3rem;
  letter-spacing: .1em;
}


.project__inner { max-width: 1000px; margin: 0 auto; }

.project__stripe {
  height: 46px;
  margin: -5rem -1.5rem 4rem;
}
.project__stripe--suns {
  background-color: var(--color-principal);
  background-image: radial-gradient(circle at 50% 50%, var(--color-principal-claro) 32%, transparent 34%);
  background-size: 46px 46px;
  background-position: center;
}

.project__head { margin-bottom: 2.2rem; }
.project__name {
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--color-texto);
}
.project__meta {
  font-size: .85rem;
  color: rgba(46, 42, 38, .7);
  margin-top: .6rem;
}
.project__handle {
  font-weight: 600;
  color: var(--color-secundario);
  margin-top: .3rem;
}
.project__handle a { text-decoration: none; }
.project__handle a:hover { text-decoration: underline; text-underline-offset: 4px; }
.project__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .9rem;
}
.project__tags li {
  border: 1.5px solid var(--color-texto);
  border-radius: 999px;
  padding: .25rem .9rem;
  font-size: .78rem;
  font-weight: 500;
}

.project__body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.project__desc p + p { margin-top: 1rem; }
.project__desc { font-size: .95rem; }

.project__desc--full {
  max-width: 720px;
  margin-bottom: 2.5rem;
}


.videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.videos video,
.videos iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 0;
  border-radius: 12px;
  background: var(--color-secundario);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}


.project--social { background: color-mix(in srgb, var(--color-secundario) 12%, var(--color-fondo)); }
.project__body--social { align-items: center; }


.articulos { display: grid; gap: 1.2rem; }
.articulos--4 { grid-template-columns: repeat(4, 1fr); }
.articulos--3 { grid-template-columns: repeat(3, 1fr); }

.articulo {
  display: flex;
  flex-direction: column;
  background: var(--color-blanco);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.articulo:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .14);
}
.articulo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.articulo__titulo {
  padding: .8rem .9rem .3rem;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.4;
}
.articulo__medio {
  margin-top: auto;
  padding: 0 .9rem .9rem;
  font-size: .72rem;
  color: rgba(46, 42, 38, .55);
}

.project--instagram {
  background: color-mix(in srgb, var(--color-principal) 22%, var(--color-fondo));
}

.duo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.movil {
  background: var(--color-secundario);
  border-radius: 28px;
  padding: 9px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .22);
  transition: transform .35s ease;
}
.movil img {
  width: 100%;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  border-radius: 20px;
  background: var(--color-fondo);
}
.movil--a {
  width: 200px;
  transform: rotate(-6deg) translateY(10px);
  z-index: 1;
}
.movil--b {
  width: 180px;
  margin-left: -38px;
  transform: rotate(5deg);
  z-index: 2;
}
.movil--a:hover { transform: rotate(-3deg) translateY(6px) scale(1.02); }
.movil--b:hover { transform: rotate(2deg) scale(1.02); }

.project__sub {
  margin-top: 3.5rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.post {
  background: var(--tile);
  border-radius: 12px;
  aspect-ratio: 1;
  transition: transform .3s ease;
}
.post {
  display: block;            
  background: var(--tile);
  border-radius: 21px;
  aspect-ratio: 1;
  overflow: hidden;        
  transition: transform .3s ease;
}

.post img {
  width: 100%;
  height: 100%;
  object-fit: cover;          
  object-position: center;
  display: block;
}
.post:hover { transform: translateY(-6px); }


.thanks {
  position: relative;
  background: linear-gradient(150deg, var(--color-principal-oscuro), var(--color-principal));
  color: var(--color-acento);
  padding: 6rem 1.5rem;
  overflow: hidden;
}
.flower--thanks {
  width: 480px; height: 480px;
  left: -140px; top: 50%;
  translate: 0 -50%;
  opacity: .18;
}
.thanks__inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  z-index: 2;
}
#campusestiu{
  background-color:#FDF6EC;
}
.thanks__title {
  font-size: clamp(3.2rem, 6vw, 4.5rem);
  white-space: nowrap;
}

.thanks__links { display: grid; gap: 1rem; }
.thanks__links li {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .85rem;
}
.thanks__links a {
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  transition: opacity .25s ease;
}
.thanks__links a:hover { opacity: .75; }
.thanks__icon svg { display: block; }
.thanks__icon {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 700;
  text-transform: none;
  flex-shrink: 0;
}

.footer {
  text-align: center;
  padding: 1.4rem;
  font-size: .8rem;
  color: rgba(46, 42, 38, .55);
}
/* Logo + nombre de empresa en línea. Sin el flex, la img (que es
   display:block) se coloca encima del nombre en lugar de a su izquierda. */
.card__empresa {
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* Caja fija: los logos tienen proporciones muy distintas y así los
   nombres quedan alineados en columna */
.image_exp_item {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .resume__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "edu lang"
      "exp exp"
      "soft soft";
  }
  .project__body { grid-template-columns: 1fr; }
  .videos { grid-template-columns: repeat(2, 1fr); }
  .articulos--4, .articulos--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--color-fondo);
    padding: 1.4rem;
    gap: 1.1rem;
    border-bottom: 1px solid rgba(46, 42, 38, .1);
    display: none;
  }
  .nav__links.is-open { display: flex; }

  .hero__title { font-size: clamp(2.2rem, 11.5vw, 4rem); }
  .hero__name { font-size: clamp(2rem, 9vw, 3rem); }

  /* En móvil el atrezzo se aparta del texto y baja de intensidad */
  .prop { opacity: .55; }
  .prop--mic { left: -16%; bottom: -4%; width: min(32vh, 190px); }
  .prop--cam { right: -18%; top: 5%; width: min(38vh, 240px); height: min(30vh, 200px); }

  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__photo { order: 2; }

  .resume__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "edu" "exp" "lang" "soft";
  }

  .stickers { grid-template-columns: 1fr; }
  .logofolio__grid { grid-template-columns: repeat(2, 1fr); }

  .posts { grid-template-columns: repeat(2, 1fr); }

  .movil--a { width: 160px; }
  .movil--b { width: 145px; margin-left: -30px; }

  .videos { grid-template-columns: 1fr; }

  .thanks__inner { grid-template-columns: 1fr; text-align: center; }
  .thanks__links li { justify-content: center; }
}
