/*
Theme Name: Portfolio Gaxz
Author: Gaxz
Description: Portfolio personal minimalista en blanco, negro y azul marino.
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: portfolio-gaxz
*/

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: #111; font-family: 'Poppins', sans-serif; overflow-x: hidden; }

:root {
  --navy:   #0d1f5c;
  --black:  #111111;
  --bg:     #e9e9e9;
  --mid:    #444444;
  --border: #d0d0d0;
}

/* NAV */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 64px;
  background: rgba(233,233,233,0.92);
  backdrop-filter: blur(10px);
  transition: padding 0.3s;
}
.nav-bar.compact { padding: 18px 64px; }
.brand { font-size: 22px; font-weight: 900; color: var(--navy); text-decoration: none; letter-spacing: -0.01em; text-transform: lowercase; }
.nav-links { display: flex; gap: 52px; }
.nav-links a { font-size: 16px; font-weight: 500; color: var(--black); text-decoration: none; letter-spacing: 0.03em; text-transform: lowercase; position: relative; transition: color 0.25s; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--navy); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { font-weight: 700; }

/* HERO */
.hero { height: 100vh; background: var(--bg); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-center { position: relative; display: flex; align-items: center; justify-content: center; }

/* TYPEWRITER en "portfolio" */
.portfolio-word {
  font-size: clamp(100px,16vw,300px);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.025em;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  animation: portfolio-type 0.9s steps(9, end) 0.15s forwards;
}
@keyframes portfolio-type {
  to { clip-path: inset(0 0% 0 0); }
}

/* FIRMA GAXZ — animación de trazo izquierda a derecha */
.signature-overlay {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-38%,-52%);
  width: clamp(260px,36vw,680px);
  pointer-events: none;
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  animation: gaxz-draw 1.6s cubic-bezier(0.45, 0.05, 0.35, 0.95) 1.1s forwards, neon-pulse 2.6s ease-in-out 2.9s infinite;
}
@keyframes gaxz-draw {
  0%   { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0%   0 0); }
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-word { clip-path: none; animation: none; }
  .signature-overlay { opacity: 1; clip-path: none; animation: none; }
}

/* SCROLL HINT */
.scroll-hint { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: pointer; opacity: 0.85; transition: opacity 0.2s; background: none; border: none; }
.scroll-hint:hover { opacity: 1; }
.scroll-hint-label { font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--navy); }
.scroll-chevron { width: 20px; height: 20px; border-right: 2.5px solid var(--navy); border-bottom: 2.5px solid var(--navy); transform: rotate(45deg); animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:rotate(45deg) translate(0,0);opacity:1} 50%{transform:rotate(45deg) translate(4px,4px);opacity:.5} }

/* PREVIEW */
.preview { min-height: 100vh; background: var(--bg); border-top: 1px solid var(--border); display: grid; grid-template-columns: 38fr 62fr; align-items: center; gap: 80px; padding: 120px 64px 140px; }
.section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--navy); margin-bottom: 28px; }
.preview-title { font-size: clamp(52px,6vw,92px); font-weight: 900; color: var(--black); letter-spacing: -0.035em; line-height: 0.95; margin-bottom: 36px; }
.preview-divider { width: 48px; height: 3px; background: var(--navy); margin-bottom: 28px; }
.preview-desc { font-size: 17px; font-weight: 300; color: var(--mid); line-height: 1.75; max-width: 420px; }

/* CARRUSEL */
.carousel-wrap { position: relative; height: clamp(400px,55vh,640px); }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; background-size: cover; background-position: center; background-color: #0d1f5c; }
.carousel-slide.active { opacity: 1; }
.slide-inner { width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 52px 56px; position: relative; overflow: hidden; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0) 100%); }
.carousel-slide:nth-child(1) .slide-inner { background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0) 100%); }
.carousel-slide:nth-child(2) .slide-inner { background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0) 100%); }
.carousel-slide:nth-child(3) .slide-inner { background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0) 100%); }
.carousel-slide:nth-child(4) .slide-inner { background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0) 100%); }
.carousel-slide:nth-child(5) .slide-inner { background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0) 100%); }
.slide-ghost { position: absolute; top: -20px; right: -10px; font-size: 240px; font-weight: 900; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; user-select: none; }
.slide-counter { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.slide-title { font-size: clamp(32px,3.5vw,52px); font-weight: 800; color: #fff; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 12px; }
.slide-tag { font-size: 13px; color: rgba(255,255,255,0.45); }
.carousel-controls { position: absolute; bottom: -44px; left: 0; display: flex; gap: 14px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: #bbb; cursor: pointer; transition: background 0.3s, transform 0.3s; border: none; padding: 0; }
.dot.active { background: var(--navy); transform: scale(1.6); }
.progress-bar { position: absolute; top: 0; left: 0; height: 3px; background: rgba(255,255,255,0.5); width: 0%; transition: width 3.5s linear; }
.carousel-slide.active .progress-bar { width: 100%; }

/* PÁGINAS INTERIORES */
.page-wrap { min-height: 100vh; background: var(--bg); padding: 156px 64px 100px; }
.page-head { margin-bottom: 68px; }
.page-head .section-label { margin-bottom: 18px; }
.big-title { font-size: clamp(42px,5vw,76px); font-weight: 900; color: var(--black); letter-spacing: -0.03em; line-height: 0.98; }
.page-divider { width: 48px; height: 3px; background: var(--navy); margin-bottom: 32px; }
.page-body { width: 100%; }
.page-bio { max-width: 720px; }
.page-bio p { font-size: 18px; font-weight: 300; color: #222; line-height: 1.7; margin-bottom: 20px; }

/* PROYECTOS */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; width: 100%; }
.project-card { background: var(--black); height: 380px; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; cursor: pointer; position: relative; overflow: hidden; text-decoration: none; }
.project-card::before { content: ''; position: absolute; inset: 0; background: var(--navy); opacity: 0; transition: opacity 0.3s; z-index: 1; }
.project-card:hover::before { opacity: 1; }
.card-num { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: #555; margin-bottom: 10px; position: relative; z-index: 2; transition: color 0.3s; }
.card-title { font-size: 28px; font-weight: 800; color: #e9e9e9; letter-spacing: -0.02em; line-height: 1.12; position: relative; z-index: 2; transition: color 0.3s; }
.card-tag { font-size: 13px; color: #777; margin-top: 10px; position: relative; z-index: 2; transition: color 0.3s; }
.project-card:hover .card-num, .project-card:hover .card-title, .project-card:hover .card-tag { color: #fff; }

/* Tarjeta con slideshow de imágenes */
.project-card--img .card-num { color: rgba(255,255,255,0.5); }
.project-card--img .card-title { color: #fff; }
.project-card--img .card-tag { color: rgba(255,255,255,0.5); }
.card-slides { position: absolute; inset: 0; z-index: 0; }
.card-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.card-slide.active { opacity: 1; }
.card-tint { position: absolute; inset: 0; background: rgba(0,0,0,0.45); transition: background 0.4s; z-index: 1; }
.project-card--img:hover .card-tint { background: rgba(13,31,92,0.6); }
.project-card--img::before { display: none; }

/* PÁGINA MAQUETACIÓN — works grid */
.works-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; width: 100%; }
.work-card { display: block; text-decoration: none; position: relative; overflow: hidden; height: 420px; background: var(--black); }
.work-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.work-card:hover .work-img { transform: scale(1.04); }
.work-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%); }
.work-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 36px; z-index: 1; display: flex; flex-direction: column; gap: 6px; }
.work-num { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.work-title { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1.1; transition: color 0.25s; }
.work-tag { font-size: 13px; color: rgba(255,255,255,0.45); }
.work-card:hover .work-title { color: #8ec2ff; }

/* REDES */
.links-block { flex: 1; }
.link-row { display: flex; align-items: center; justify-content: space-between; padding: 32px 0; border-bottom: 1px solid #ccc; text-decoration: none; transition: padding-left 0.3s; }
.link-row:first-child { border-top: 1px solid #ccc; }
.link-row:hover { padding-left: 18px; }
.link-name { font-size: 30px; font-weight: 700; color: var(--black); letter-spacing: -0.02em; transition: color 0.25s; }
.link-handle { font-size: 16px; color: #888; }
.link-arrow { font-size: 28px; color: #333; transition: color 0.25s, transform 0.25s; }
.link-row:hover .link-name, .link-row:hover .link-arrow { color: var(--navy); }
.link-row:hover .link-arrow { transform: translateX(6px); }

/* ============================================
   DESCARGA DE FUENTES
   ============================================ */
.font-downloads { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.font-downloads .section-label { margin-bottom: 20px; }
.font-weights { display: flex; flex-direction: column; gap: 2px; }
.font-dl {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: padding-left 0.25s;
}
.font-dl:first-child { border-top: 1px solid var(--border); }
.font-dl:hover { padding-left: 10px; }
.font-weight-name { font-size: 17px; font-weight: 600; color: var(--black); flex: 1; transition: color 0.2s; }
.font-ext { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #999; }
.dl-icon { font-size: 18px; color: #aaa; transition: color 0.2s, transform 0.2s; }
.font-dl:hover .font-weight-name { color: var(--navy); }
.font-dl:hover .dl-icon { color: var(--navy); transform: translateY(2px); }
.font-dl.is-variable .font-weight-name::after {
  content: 'Variable';
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); background: rgba(13,31,92,0.08);
  padding: 2px 7px; margin-left: 10px; border-radius: 2px;
}

/* ============================================
   REVISTA FOCUS
   ============================================ */
.revista-wrap {
  min-height: 100vh;
  background: var(--bg);
  display: grid;
  grid-template-columns: 42fr 58fr;
  align-items: start;
  gap: 80px;
  padding: 140px 64px 100px;
}
.revista-info { padding-top: 12px; }
.revista-title {
  font-size: clamp(42px,5vw,72px);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 18px 0 28px;
}
.revista-divider { width: 48px; height: 3px; background: var(--navy); margin-bottom: 28px; }
.revista-desc {
  font-size: 17px;
  font-weight: 300;
  color: #333;
  line-height: 1.78;
  margin-bottom: 20px;
  max-width: 520px;
}
.revista-desc strong { font-weight: 700; color: var(--black); }
.revista-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.meta-item { display: flex; gap: 16px; align-items: baseline; }
.meta-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); min-width: 100px; }
.meta-val { font-size: 15px; font-weight: 400; color: var(--black); }

/* Visor PDF */
.revista-viewer { position: sticky; top: 100px; display: flex; flex-direction: column; }
.pdf-stage {
  background: #222;
  position: relative;
  height: clamp(420px, 62vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Tabs de media (Especimen / Video) */
.media-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: var(--black);
}
.media-tab {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  background: none; border: none;
  padding: 14px 22px 13px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.media-tab.active { color: #fff; border-bottom-color: var(--navy); }
.media-tab:hover:not(.active) { color: rgba(255,255,255,0.65); }

/* Modo de fondo del stage */
.pdf-stage.mode-img   { background: #f5f5f5; }
.pdf-stage.mode-video { background: #111; }
.pdf-stage.mode-light { background: #f5f5f5; }

/* Visor canvas / imagen */
#pdfCanvas { display: none; max-width: 100%; max-height: 100%; width: auto; height: auto; }
.media-img { display: none; width: 100%; height: 100%; object-fit: contain; }
.pdf-loading {
  color: rgba(255,255,255,0.35);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
}

/* Barra de paginación PDF (solo en vista especimen) */
.pdf-nav {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 10px 0; background: #1a1a1a;
}
.pdf-arr {
  background: none; border: none;
  color: rgba(255,255,255,0.35);
  font-size: 18px; cursor: pointer; padding: 4px 10px;
  transition: color 0.2s; font-family: inherit; line-height: 1;
}
.pdf-arr:hover:not(:disabled) { color: #fff; }
.pdf-arr:disabled { opacity: 0.15; cursor: default; }
.pdf-page-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); min-width: 72px; text-align: center; }

/* Controles de Revista Focus (solo PDF, sin tabs) */
.pdf-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 10px 0; background: #1a1a1a;
}
.pdf-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.35);
  font-size: 18px; cursor: pointer; padding: 4px 10px;
  transition: color 0.2s; font-family: inherit; line-height: 1;
}
.pdf-btn:hover:not(:disabled) { color: #fff; }
.pdf-btn:disabled { opacity: 0.15; cursor: default; }
.pdf-counter { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); min-width: 90px; text-align: center; }

@media (max-width: 1024px) {
  .revista-wrap { grid-template-columns: 1fr; gap: 52px; padding: 130px 36px 90px; }
  .revista-viewer { position: static; }
}
@media (max-width: 768px) {
  .revista-wrap { padding: 116px 22px 80px; }
  .revista-desc { font-size: 16px; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PAGE TRANSITION — cortina navy
   ============================================ */
#page-curtain {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  transform: translateX(-100%);
  pointer-events: none;
  will-change: transform;
  display: flex; align-items: center; justify-content: center;
}
#page-curtain.entering {
  animation: curtain-enter 0.45s cubic-bezier(0.77,0,0.18,1) forwards;
}
#page-curtain.exiting {
  animation: curtain-exit 0.45s cubic-bezier(0.77,0,0.18,1) forwards;
}
@keyframes curtain-enter {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
@keyframes curtain-exit {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}

/* Nombre "gaxz" blanco sobre la cortina */
.curtain-brand {
  font-size: clamp(52px, 12vw, 120px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: none;
}
#page-curtain.entering .curtain-brand {
  animation: curtain-brand-in 0.35s ease 0.3s forwards;
}
@keyframes curtain-brand-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .nav-bar { padding: 22px 36px; }
  .nav-bar.compact { padding: 16px 36px; }
  .nav-links { gap: 32px; }
  .preview { gap: 48px; padding: 110px 36px 130px; }
  .page-wrap { padding: 130px 36px 90px; }
  .projects-grid { gap: 20px; }
  .slide-ghost { font-size: 180px; }
}

/* Móvil */
@media (max-width: 768px) {
  .nav-bar { padding: 18px 22px; }
  .nav-bar.compact { padding: 14px 22px; }
  .brand { font-size: 19px; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 14px; }

  .hero { height: 100svh; }
  .signature-overlay { width: min(74vw, 420px); transform: translate(-40%, -54%); }
  .scroll-hint { bottom: 30px; }

  /* Preview apilado */
  .preview {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 110px 22px 90px;
    min-height: auto;
  }
  .preview-desc { max-width: 100%; }
  .carousel-wrap { height: 70vw; max-height: 460px; min-height: 320px; }
  .slide-inner { padding: 36px 32px; }
  .slide-ghost { font-size: 150px; top: -10px; }
  .carousel-controls { bottom: -34px; }

  /* Páginas interiores */
  .page-wrap { padding: 116px 22px 80px; }
  .page-head { margin-bottom: 44px; }
  .page-bio p { font-size: 18px; }

  /* Proyectos: 1 columna */
  .projects-grid { grid-template-columns: 1fr; gap: 18px; }
  .project-card { height: 280px; padding: 30px; }
  .card-title { font-size: 26px; }

  /* Redes */
  .link-row { padding: 24px 0; flex-wrap: wrap; gap: 4px 16px; }
  .link-name { font-size: 24px; }
  .link-handle { font-size: 14px; }
  .link-arrow { font-size: 22px; }
}

/* Móvil pequeño */
@media (max-width: 420px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
  .brand { font-size: 17px; }
  .slide-inner { padding: 28px 24px; }
  .slide-ghost { font-size: 120px; }
  .link-name { font-size: 21px; }
  .link-handle { flex-basis: 100%; }
}

@keyframes neon-pulse {
  0%, 100% { filter: drop-shadow(0 0 6px #4af) drop-shadow(0 0 18px #4af); }
  50%       { filter: drop-shadow(0 0 2px #4af) drop-shadow(0 0 6px #4af); }
}

/* ── SOBRE MÍ — layout dos columnas ── */
.sobre-wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: start;
  gap: 80px;
  padding: 156px 64px 100px;
  min-height: 100vh;
}
.sobre-wrap .page-head { margin-bottom: 44px; }
.sobre-wrap .page-bio p {
  font-size: 15px;
  font-weight: 300;
  color: #222;
  line-height: 1.75;
  margin-bottom: 16px;
}
.sobre-meta { margin-top: 36px; }

/* Marco Batman */
.sobre-photo { position: sticky; top: 100px; }

.photo-strip { display: none; }
.photo-frame {
  display: flex;
  flex-direction: column;
  border: 3px solid var(--navy);
  overflow: hidden;
}

.photo-strip {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 16px;
  gap: 12px;
  overflow: hidden;
}
.photo-strip span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  flex-shrink: 0;
}
.photo-strip--bottom span {
  color: rgba(255,255,255,0.55);
}

.photo-img-wrap {
  background: transparent;
  line-height: 0;
  border-left: 3px solid var(--navy);
  border-right: 3px solid var(--navy);
}
.photo-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.photo-frame:hover .photo-img-wrap img {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .sobre-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 130px 36px 90px;
  }
  .sobre-photo { position: static; order: -1; }
  .photo-frame { max-width: 420px; }
}
@media (max-width: 768px) {
  .sobre-wrap { padding: 116px 22px 80px; }
  .photo-frame { max-width: 100%; }
}
