/* ==========================================================
   Plantilla "Fotografía" — v3 Premium Editorial
   Inter + Playfair Display. Negro #0F0F11, blanco, dorado sutil.
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #0F0F11;
    --bg-panel: #17171a;
    --texto: #ffffff;
    --texto-2: #9a9a9f;
    --texto-3: #67676c;
    --linea: rgba(255,255,255,0.08);
    --dorado: #c9a15c;
    --dorado-suave: rgba(201,161,92,0.10);
    --radius: 14px;
    --sombra: 0 20px 50px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.landing-foto {
    margin: 0;
    background: var(--bg);
    color: var(--texto);
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.landing-foto a { color: inherit; text-decoration: none; }
.serif { font-family: 'Playfair Display', serif; font-weight: 600; }
.eyebrow-foto { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--dorado); }

/* ---- Navbar: transparente -> blur al hacer scroll ---- */
.foto-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 40;
    display: flex; align-items: center; justify-content: space-between;
    padding: 26px 28px;
    background: transparent; border-bottom: 1px solid transparent;
    transition: background .35s ease, border-color .35s ease, padding .35s ease, backdrop-filter .35s ease;
}
.foto-header.con-scroll {
    background: rgba(15,15,17,.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--linea); padding: 16px 28px;
}
.foto-header__marca { display: flex; align-items: center; gap: 10px; }
.foto-header__logo { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,.2); }
.foto-header__nombre { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 21px; color: #fff; }
.foto-header__cta {
    border: 1px solid rgba(255,255,255,.3); color: #fff; padding: 10px 22px; border-radius: 999px;
    font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
    transition: border-color .2s ease, background .2s ease;
}
.foto-header__cta:hover { border-color: var(--dorado); background: var(--dorado-suave); }

/* ---- Hero: slideshow cinematográfico (varias portadas) ---- */
.foto-hero { height: 100vh; min-height: 620px; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: #17171a; }
.foto-hero__slide {
    position: absolute; inset: -3%; background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.8s ease;
    animation: foto-kenburns 8s ease-in-out infinite alternate;
}
.foto-hero__slide.activa { opacity: 1; z-index: 1; }
.foto-hero__slide.saliendo { opacity: 0; filter: blur(6px); transition: opacity 1.8s ease, filter 1.8s ease; }
@keyframes foto-kenburns { from { transform: scale(1); } to { transform: scale(1.1) translate(-1%,-1%); } }
.foto-hero::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(15,15,17,.3) 0%, rgba(15,15,17,.55) 55%, rgba(15,15,17,.92) 100%); pointer-events: none; }
.foto-hero__contenido { position: relative; z-index: 3; max-width: 740px; padding: 0 24px; animation: foto-fade-up 1.1s ease .15s both; }
@keyframes foto-fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.foto-hero__titulo { font-size: 44px; line-height: 1.15; margin: 18px 0 22px; color: #fff; transition: opacity .5s ease; }
.foto-hero__tags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.foto-hero__tags span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--texto-2); padding: 7px 14px; border: 1px solid var(--linea); border-radius: 999px; }
.foto-hero__acciones { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Barra de progreso tipo "historias" — discreta, arriba del hero */
.foto-hero__progreso { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 6px; width: min(280px, 70%); }
.foto-hero__progreso .segmento { flex: 1; height: 2px; background: rgba(255,255,255,.25); border-radius: 2px; overflow: hidden; }
.foto-hero__progreso .segmento .relleno { display: block; height: 100%; width: 0%; background: var(--dorado); }
.foto-hero__progreso .segmento.completo .relleno { width: 100%; transition: none; }
.foto-hero__progreso .segmento.activo .relleno { width: 0%; transition: width linear; }

/* Dots discretos (fallback / alternativa visual) */
.foto-hero__dots { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.foto-hero__dots button { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; padding: 0; cursor: pointer; transition: background .3s ease, transform .3s ease; }
.foto-hero__dots button.activo { background: var(--dorado); transform: scale(1.4); }

/* ---- Botones premium (elevación, sombra, brillo, ripple) ---- */
.foto-btn {
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; gap: 8px; padding: 15px 30px;
    border: 1px solid rgba(255,255,255,.35); color: #fff; border-radius: 999px;
    font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
    transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.foto-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.35); border-color: rgba(255,255,255,.6); }
.foto-btn-solido { background: var(--dorado); color: #17130a; border-color: var(--dorado); font-weight: 600; }
.foto-btn-solido:hover { background: #ddbb7c; box-shadow: 0 14px 34px rgba(201,161,92,.35); }
.foto-btn .ripple {
    position: absolute; border-radius: 50%; background: rgba(255,255,255,.5); transform: scale(0);
    animation: foto-ripple .55s ease-out; pointer-events: none;
}
@keyframes foto-ripple { to { transform: scale(3.2); opacity: 0; } }

.foto-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 1; color: var(--texto-2); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.foto-scroll::after { content: ""; width: 1px; height: 38px; background: linear-gradient(var(--dorado), transparent); animation: foto-scroll-anim 2s ease infinite; }
@keyframes foto-scroll-anim { 0% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); transform-origin: top; } 100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; } }

/* ---- Secciones ---- */
.foto-seccion { padding: 76px 24px; max-width: 1240px; margin: 0 auto; }
.foto-seccion--angosta { max-width: 780px; }
.foto-seccion__titulo { font-size: 34px; margin: 10px 0 14px; }
.foto-seccion__sub { color: var(--texto-2); font-size: 14.5px; max-width: 480px; margin: 0 0 36px; line-height: 1.7; font-weight: 300; }
@media (min-width: 860px) {
    .foto-seccion { padding: 100px 28px; }
    .foto-seccion__titulo { font-size: 38px; }
    .foto-seccion__sub { margin-bottom: 48px; }
}

.foto-seccion--panel { background: var(--bg-panel); }

.foto-reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); }
.foto-reveal.visible { opacity: 1; transform: translateY(0); }
.foto-reveal-izq { opacity: 0; transform: translateX(-30px); transition: opacity .9s ease, transform .9s ease; }
.foto-reveal-izq.visible { opacity: 1; transform: translateX(0); }
.foto-reveal-escala { opacity: 0; transform: scale(.94); transition: opacity .8s ease, transform .8s ease; }
.foto-reveal-escala.visible { opacity: 1; transform: scale(1); }

/* ---- Estadísticas ---- */
.foto-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; text-align: center; padding: 56px 24px; background: var(--bg-panel); border-top: 1px solid var(--linea); border-bottom: 1px solid var(--linea); }
.foto-stat__numero { font-family: 'Playfair Display', serif; font-size: 46px; color: var(--dorado); font-weight: 600; }
.foto-stat__label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--texto-2); margin-top: 6px; }

/* ---- Sobre mí ---- */
.foto-sobre { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; }
.foto-sobre__collage { display: grid; grid-template-columns: 1.3fr 1fr; gap: 14px; }
.foto-sobre__collage img { width: 100%; object-fit: cover; border-radius: var(--radius); display: block; }
.foto-sobre__collage .principal { grid-row: span 2; aspect-ratio: 3/4; }
.foto-sobre__collage .secundaria { aspect-ratio: 4/3; }
.foto-sobre__texto { padding-top: 8px; }
.foto-sobre__texto p { font-size: 15.5px; line-height: 1.85; color: var(--texto-2); font-weight: 300; }
.foto-sobre__firma { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--dorado); margin-top: 20px; font-style: italic; font-weight: 500; }

/* ---- Portafolio (masonry, hover con overlay) ---- */
.foto-portafolio-grid { columns: 2; column-gap: 14px; }
.foto-portafolio-grid button { position: relative; display: block; width: 100%; margin-bottom: 14px; padding: 0; border: 0; background: none; cursor: pointer; break-inside: avoid; overflow: hidden; border-radius: var(--radius); }
.foto-portafolio-grid img { width: 100%; display: block; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.foto-portafolio-grid button:hover img { transform: scale(1.08); }
.foto-portafolio-grid .overlay {
    position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.65) 100%);
    opacity: 0; transition: opacity .3s ease; display: flex; align-items: flex-end; justify-content: center; padding: 16px;
}
.foto-portafolio-grid button:hover .overlay { opacity: 1; }
.foto-portafolio-grid .overlay svg { width: 22px; height: 22px; color: #fff; }

/* ---- Servicios: piezas premium con hover elevado ---- */
.foto-sesiones { display: flex; flex-direction: column; gap: 18px; }
.foto-sesion { position: relative; display: flex; align-items: flex-end; min-height: 320px; border-radius: var(--radius); overflow: hidden; text-decoration: none; color: #fff; background-size: cover; background-position: center; background-color: #17171a; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
.foto-sesion:hover { transform: translateY(-6px); box-shadow: var(--sombra); }
.foto-sesion::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,15,17,.05) 30%, rgba(15,15,17,.9) 100%); transition: background .3s ease; }
.foto-sesion:hover::before { background: linear-gradient(180deg, rgba(15,15,17,.15) 15%, rgba(15,15,17,.94) 100%); }
.foto-sesion__contenido { position: relative; z-index: 1; padding: 32px; width: 100%; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.foto-sesion__nombre { font-size: 28px; margin-bottom: 6px; }
.foto-sesion__desc { font-size: 13px; color: var(--texto-2); max-width: 380px; line-height: 1.6; }
.foto-sesion__meta { text-align: right; }
.foto-sesion__precio { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; color: var(--dorado); }
.foto-sesion__duracion { font-size: 11px; color: var(--texto-2); margin-top: 4px; letter-spacing: .04em; text-transform: uppercase; }
.foto-sesion__btn { display: inline-block; margin-top: 10px; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--dorado); border-bottom: 1px solid var(--dorado); padding-bottom: 2px; }

/* ---- Proceso ---- */
.foto-proceso { display: grid; grid-template-columns: 1fr; gap: 0; }
.foto-paso { display: flex; align-items: flex-start; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--linea); }
.foto-paso:last-child { border-bottom: none; }
.foto-paso__icono { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--dorado); color: var(--dorado); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.foto-paso__icono svg { width: 19px; height: 19px; }
.foto-paso h3 { font-size: 18px; margin: 0 0 4px; font-weight: 500; font-family: 'Playfair Display', serif; }
.foto-paso p { font-size: 13.5px; color: var(--texto-2); margin: 0; font-weight: 300; }

/* ---- Testimonios ---- */
.foto-testimonios { display: grid; grid-template-columns: 1fr; gap: 20px; }
.foto-testimonio { padding: 30px; border: 1px solid var(--linea); border-radius: var(--radius); background: var(--bg-panel); transition: transform .3s ease, border-color .3s ease; }
.foto-testimonio:hover { transform: translateY(-4px); border-color: var(--dorado); }
.foto-testimonio__estrellas { color: var(--dorado); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.foto-testimonio__cita { font-family: 'Playfair Display', serif; font-size: 18px; font-style: italic; line-height: 1.5; margin: 0 0 20px; color: var(--texto); font-weight: 500; }
.foto-testimonio__autor { display: flex; align-items: center; gap: 10px; }
.foto-testimonio__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--dorado-suave); color: var(--dorado); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 15px; flex-shrink: 0; }
.foto-testimonio__avatar-foto { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.foto-testimonio__nombre { font-size: 12.5px; color: var(--texto-2); }

/* ---- Instagram (destacados del portafolio, no feed en vivo) ---- */
.foto-instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.foto-instagram-grid a { display: block; aspect-ratio: 1/1; overflow: hidden; border-radius: 8px; position: relative; }
.foto-instagram-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s ease; }
.foto-instagram-grid a:hover img { transform: scale(1.08); opacity: .85; }
.foto-instagram-cta { text-align: center; margin-top: 32px; }

/* ---- CTA final ---- */
.foto-cta-final { text-align: center; padding: 90px 24px; background: var(--bg-panel); }
.foto-cta-final h2 { font-size: 42px; max-width: 640px; margin: 0 auto 30px; }

/* ---- Footer ---- */
.foto-footer { padding: 60px 28px 30px; }
.foto-footer__top { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--linea); margin-bottom: 26px; }
.foto-footer__marca .serif { font-size: 24px; margin-bottom: 12px; }
.foto-footer__marca p { font-size: 13.5px; color: var(--texto-2); line-height: 1.7; max-width: 320px; font-weight: 300; }
.foto-footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.foto-footer__grid h4 { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--dorado); margin: 0 0 16px; font-weight: 600; }
.foto-linea { display: block; margin-bottom: 10px; font-size: 13.5px; color: var(--texto-2); font-weight: 300; transition: color .2s ease; }
a.foto-linea:hover { color: var(--dorado); }
.foto-footer__copy { font-size: 10.5px; color: var(--texto-3); text-align: center; letter-spacing: .04em; }

/* ---- Lightbox ---- */
.lightbox-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(4,4,3,.97); display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox-overlay.abierto { display: flex; }
.lightbox-overlay img { max-width: 100%; max-height: 88vh; border-radius: 4px; animation: foto-lightbox-zoom .35s cubic-bezier(.2,.8,.2,1); }
@keyframes foto-lightbox-zoom { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-cerrar, .lightbox-flecha { position: fixed; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.lightbox-cerrar:hover, .lightbox-flecha:hover { background: var(--dorado-suave); border-color: var(--dorado); }
.lightbox-cerrar { top: 20px; right: 20px; width: 42px; height: 42px; }
.lightbox-flecha { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lightbox-flecha.anterior { left: 18px; } .lightbox-flecha.siguiente { right: 18px; }
.lightbox-cerrar svg, .lightbox-flecha svg { width: 18px; height: 18px; }

.whatsapp-flotante { position: fixed; right: 20px; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); z-index: 21; width: 54px; height: 54px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px rgba(0,0,0,.45); transition: transform .2s ease; }
.whatsapp-flotante:hover { transform: scale(1.08); }
.whatsapp-flotante svg { width: 27px; height: 27px; fill: #fff; }

/* ---- Filtro de categorías ---- */
.foto-filtros { display: flex; gap: 8px; flex-wrap: wrap; margin: -32px 0 40px; }
.foto-filtro {
    padding: 8px 18px; border: 1px solid var(--linea); border-radius: 999px;
    font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--texto-2);
    cursor: pointer; background: none; font-family: 'Inter', sans-serif; transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.foto-filtro:hover { border-color: var(--dorado); color: var(--texto); }
.foto-filtro.activo { background: var(--dorado); border-color: var(--dorado); color: #17130a; font-weight: 600; }
.foto-portafolio-grid button { transition: opacity .35s ease, transform .35s ease, margin .35s ease; }
.foto-portafolio-grid button.oculta { display: none; }
.foto-portafolio-grid button.entrando { animation: foto-filtro-in .4s ease; }
@keyframes foto-filtro-in { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.foto-portafolio-grid button .badge-destacada {
    position: absolute; top: 10px; left: 10px; z-index: 1;
    background: var(--dorado); color: #17130a; font-size: 9px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px;
}

/* ---- Lightbox premium (blur backdrop, metadata, contador) ---- */
.lightbox-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(6,6,7,.88); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    display: none; flex-direction: column; align-items: center; justify-content: center; padding: 24px;
}
.lightbox-overlay.abierto { display: flex; }
.lightbox-marco { display: flex; flex-direction: column; max-width: 1000px; width: 100%; max-height: 92vh; }
.lightbox-overlay img { max-width: 100%; max-height: 68vh; border-radius: 6px; object-fit: contain; margin: 0 auto; display: block; animation: foto-lightbox-zoom .4s cubic-bezier(.2,.8,.2,1); box-shadow: 0 30px 80px rgba(0,0,0,.6); }
@keyframes foto-lightbox-zoom { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-info { text-align: center; margin-top: 22px; color: #fff; animation: foto-fade-up .5s ease .1s both; }
.lightbox-info__titulo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.lightbox-info__meta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; font-size: 11.5px; color: var(--texto-2); letter-spacing: .03em; text-transform: uppercase; margin-bottom: 10px; }
.lightbox-info__meta span { display: flex; align-items: center; gap: 5px; }
.lightbox-info__meta svg { width: 13px; height: 13px; opacity: .7; }
.lightbox-info__desc { font-size: 13.5px; color: var(--texto-2); max-width: 480px; margin: 0 auto 16px; line-height: 1.6; font-weight: 300; }
.lightbox-info__cta {
    display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
    color: var(--dorado); border-bottom: 1px solid var(--dorado); padding-bottom: 2px; font-weight: 500;
}
.lightbox-contador {
    position: fixed; top: 24px; left: 50%; transform: translateX(-50%);
    font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: .1em; color: var(--texto-2);
    background: rgba(255,255,255,.06); border: 1px solid var(--linea); padding: 6px 14px; border-radius: 999px;
}

.lightbox-cerrar, .lightbox-flecha { position: fixed; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.lightbox-cerrar:hover, .lightbox-flecha:hover { background: var(--dorado-suave); border-color: var(--dorado); }
.lightbox-cerrar { top: 20px; right: 20px; width: 42px; height: 42px; }
.lightbox-flecha { top: 42%; transform: translateY(-50%); width: 48px; height: 48px; }
.lightbox-flecha.anterior { left: 18px; } .lightbox-flecha.siguiente { right: 18px; }
.lightbox-cerrar svg, .lightbox-flecha svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
    .lightbox-flecha { width: 40px; height: 40px; }
    .lightbox-overlay img { max-height: 55vh; }
}
.foto-skeleton { background: linear-gradient(90deg, #17171a 25%, #1f1f23 37%, #17171a 63%); background-size: 400% 100%; animation: foto-shimmer 1.4s ease infinite; }
@keyframes foto-shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

@media (min-width: 640px) {
    .foto-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 860px) {
    .foto-hero__titulo { font-size: 78px; }
    .foto-sobre { grid-template-columns: 0.9fr 1fr; gap: 60px; }
    .foto-portafolio-grid { columns: 3; }
    .foto-sesion { min-height: 380px; }
    .foto-testimonios { grid-template-columns: repeat(3, 1fr); }
    .foto-footer__top { grid-template-columns: 1.2fr 2fr; }
    .foto-footer__grid { grid-template-columns: repeat(3, 1fr); }
    .foto-instagram-grid { grid-template-columns: repeat(6, 1fr); }
}
