/* ============================================================
   WANDERSON SEVEN — FOTÓGRAFO ESPORTIVO
   style.css
   ============================================================ */

/* --- RESET & VARIABLES --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:   #E8000A;
  --white: #F5F0EB;
  --black: #080808;
  --gray:  #141414;
  --muted: #555;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* --- CUSTOM CURSOR --- */
.cur {
  position: fixed; width: 10px; height: 10px;
  background: var(--red); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cur-ring {
  position: fixed; width: 38px; height: 38px;
  border: 1px solid rgba(232,0,10,.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}

/* --- GRAIN OVERLAY --- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .025; pointer-events: none; z-index: 1000;
}

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 48px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-logo img {
  height: 48px; width: auto; display: block;
  filter: drop-shadow(0 0 8px rgba(232,0,10,0.3));
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--white); text-decoration: none;
  font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 500;
  position: relative; opacity: .7; transition: opacity .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--red); transition: width .3s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

/* Hamburger button (hidden on desktop) */
.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  z-index: 200;
}
.menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all .3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SLIDESHOW (modo "Todos")
   ============================================================ */
.slideshow-wrap {
  width: 100%;
}

/* Imagem em destaque */
.slide-featured {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: none;
  background: #0d0d0d;
}
@media (max-width: 560px) {
  .slide-featured { aspect-ratio: 4/5; }
}
#slideMainImg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .25s ease, transform .3s ease;
  display: block;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 50%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px 32px;
  pointer-events: none;
}
.slide-overlay .po-cat {
  font-size: .62rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--red); font-weight: 500;
}
.slide-overlay .po-alt {
  font-size: 1.1rem; color: var(--white);
  margin-top: 6px; font-weight: 400;
}

/* Arrow buttons on featured */
.slide-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, border-color .2s;
  z-index: 5;
}
.slide-arr:hover { background: var(--red); border-color: var(--red); }
.slide-arr-l { left: 16px; }
.slide-arr-r { right: 16px; }

/* Thumbnail strip */
.slide-thumbs {
  display: flex; gap: 4px;
  margin-top: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #111;
}
.slide-thumbs::-webkit-scrollbar { height: 3px; }
.slide-thumbs::-webkit-scrollbar-thumb { background: var(--red); }

.slide-thumb {
  flex-shrink: 0;
  width: 80px; height: 56px;
  overflow: hidden; cursor: pointer;
  opacity: .4; transition: opacity .25s, outline .2s;
  outline: 2px solid transparent;
}
.slide-thumb img { width: 100%; height: 100%; object-fit: cover; }
.slide-thumb.active {
  opacity: 1;
  outline: 2px solid var(--red);
}

/* Dots (mobile only) */
.slide-dots {
  display: none;
  justify-content: center; gap: 6px;
  margin-top: 14px; flex-wrap: wrap;
}
.slide-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #333; cursor: pointer;
  transition: background .2s, transform .2s;
}
.slide-dot.active { background: var(--red); transform: scale(1.3); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-l {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px 52px 80px; position: relative; z-index: 2;
}
.hero-logo-wrap { margin-bottom: 32px; }
.hero-logo-wrap img {
  width: 260px; height: auto;
  filter: drop-shadow(0 0 20px rgba(232,0,10,0.25));
}
.hero-tag {
  font-size: .62rem; letter-spacing: .32em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 16px; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before {
  content: ''; display: block;
  width: 36px; height: 1px; background: var(--red);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7.5vw, 8.5rem);
  line-height: .88; letter-spacing: .02em;
}
.hero-title .r { color: var(--red); }
.hero-sub {
  margin-top: 24px; font-size: .88rem;
  color: #666; max-width: 340px; line-height: 1.8;
}
.hero-cta { margin-top: 44px; display: flex; gap: 20px; align-items: center; }

/* Buttons */
.btn-p {
  background: var(--red); color: var(--white); border: none;
  padding: 15px 34px; font-family: 'DM Sans', sans-serif;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; cursor: none; text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: transform .2s, background .2s;
}
.btn-p:hover { transform: translateY(-2px); background: #c8000a; }

.btn-g {
  color: var(--white); text-decoration: none;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; display: flex; align-items: center; gap: 10px;
  transition: gap .2s; opacity: .7;
}
.btn-g:hover { gap: 18px; opacity: 1; }
.btn-g::after { content: '→'; }

/* Hero right mosaic */
.hero-r { position: relative; overflow: hidden; }
.hero-mosaic {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
}
.mc { overflow: hidden; position: relative; }
.mc img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
  transition: transform .6s, filter .4s;
}
.mc:hover img { transform: scale(1.07); filter: grayscale(0%) contrast(1.1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, rgba(8,8,8,0.2) 55%, transparent 100%);
  z-index: 1;
}

/* Scroll indicator */
.scroll-ind {
  position: absolute; bottom: 40px; right: 40px;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; z-index: 10;
}
.scroll-ind span {
  font-size: .55rem; letter-spacing: .3em;
  text-transform: uppercase; color: #333; writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, #444, transparent);
  animation: sp 2s ease-in-out infinite;
}
@keyframes sp {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .3; transform: scaleY(.5); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--gray);
  border-top: 1px solid #1e1e1e; border-bottom: 1px solid #1e1e1e;
  display: flex; justify-content: center;
}
.stat {
  flex: 1; max-width: 210px;
  padding: 30px 36px; text-align: center;
  border-right: 1px solid #1e1e1e;
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--red); line-height: 1;
}
.stat-l {
  font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase; color: #444; margin-top: 6px; font-weight: 500;
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
#portfolio { padding: 100px 48px; }

.sec-hdr {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 52px;
}
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  letter-spacing: .04em; line-height: 1;
}
.sec-title em { font-style: normal; color: var(--red); }
.sec-left .line { width: 48px; height: 2px; background: var(--red); margin-bottom: 8px; }
.sec-sub {
  font-size: .62rem; letter-spacing: .22em;
  text-transform: uppercase; color: #444; font-weight: 500;
}

/* Category filters */
.filters {
  display: flex; gap: 0; margin-bottom: 44px;
  border: 1px solid #1e1e1e; width: fit-content;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  overflow: hidden;
}
.fb {
  padding: 11px 22px; font-family: 'DM Sans', sans-serif;
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 500; background: transparent; color: #444;
  border: none; border-right: 1px solid #1e1e1e;
  cursor: none; transition: all .2s; white-space: nowrap;
}
.fb:last-child { border-right: none; }
.fb:hover { color: var(--white); background: #111; }
.fb.on { background: var(--red); color: var(--white); }

/* Masonry grid */
.pgrid { columns: 3; column-gap: 4px; }

.pi {
  break-inside: avoid; margin-bottom: 4px;
  position: relative; overflow: hidden; cursor: none;
}
.pi img {
  width: 100%; display: block;
  filter: grayscale(10%) contrast(1.05);
  transition: transform .5s, filter .4s;
}
.pi:hover img { transform: scale(1.05); filter: grayscale(0%) contrast(1.1); }

.po {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 18px;
}
.pi:hover .po { opacity: 1; }
.po-cat {
  font-size: .58rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--red); font-weight: 500;
}
.po-alt { font-size: .82rem; color: var(--white); margin-top: 3px; }
.po-tags { display: flex; gap: 8px; margin-top: 7px; }
.po-tag {
  font-size: .58rem; color: #aaa;
  background: rgba(255,255,255,.08); padding: 2px 8px;
  backdrop-filter: blur(4px);
}

/* Load more */
.lm-wrap { text-align: center; margin-top: 56px; }
.btn-o {
  display: inline-block; padding: 15px 44px;
  border: 1px solid #222; color: var(--white);
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; cursor: none; background: transparent;
  transition: all .3s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-o:hover { border-color: var(--red); color: var(--red); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, background .3s;
}
.lb.open { opacity: 1; pointer-events: all; background: rgba(0,0,0,.96); }

.lb-inner {
  position: relative; max-width: 92vw; max-height: 92vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img {
  max-width: 92vw; max-height: 86vh;
  object-fit: contain; display: block;
  transform: scale(.94);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  border: 1px solid #1a1a1a;
}
.lb.open .lb-img { transform: scale(1); }

.lb-close {
  position: fixed; top: 24px; right: 28px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06); border: 1px solid #333;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; cursor: none;
  font-size: 1.1rem; color: var(--white);
  transition: background .2s, border-color .2s; z-index: 9001;
}
.lb-close:hover { background: var(--red); border-color: var(--red); }

.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.06); border: 1px solid #333;
  display: flex; align-items: center; justify-content: center;
  cursor: none; font-size: 1.2rem; color: var(--white);
  transition: background .2s, border-color .2s; z-index: 9001;
}
.lb-nav:hover { background: var(--red); border-color: var(--red); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-info {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 6px; z-index: 9001;
}
.lb-cat {
  font-size: .58rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--red); font-weight: 500;
}
.lb-alt { font-size: .82rem; color: #aaa; text-align: center; }
.lb-counter { font-size: .6rem; letter-spacing: .15em; color: #444; margin-top: 2px; }
.lb-tags { display: flex; gap: 8px; margin-top: 4px; }
.lb-tag {
  font-size: .58rem; color: #666;
  background: rgba(255,255,255,.06); padding: 2px 10px;
  border: 1px solid #222;
}

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
#experiencias {
  padding: 100px 48px;
  background: var(--gray);
  position: relative; overflow: hidden;
}
#experiencias::before {
  content: 'EXP';
  position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18rem; color: rgba(255,255,255,.02);
  pointer-events: none; line-height: 1;
}

/* Block sub-title */
.exp-block-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: .08em;
  color: var(--white); margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid #1e1e1e;
}
.exp-block-title em { font-style: normal; color: var(--red); }

/* Client cards grid */
.egrid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; margin-top: 0;
}
.ecard {
  background: var(--black); padding: 44px;
  position: relative; border-left: 3px solid transparent;
  transition: border-color .3s; overflow: hidden;
}
.ecard::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,0,10,.04), transparent);
  opacity: 0; transition: opacity .3s;
}
.ecard:hover { border-left-color: var(--red); }
.ecard:hover::before { opacity: 1; }
.ep {
  font-size: .6rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--red);
  font-weight: 500; margin-bottom: 14px;
}
.ec {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem; letter-spacing: .04em; margin-bottom: 14px;
}
.ed { font-size: .88rem; color: #555; line-height: 1.8; }
.en {
  position: absolute; top: 28px; right: 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; color: rgba(255,255,255,.04); line-height: 1;
}

/* Events grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.ev-card {
  background: var(--black);
  padding: 28px 24px;
  display: flex; align-items: center; gap: 18px;
  border-left: 3px solid transparent;
  transition: border-color .3s, background .2s;
  position: relative; overflow: hidden;
}
.ev-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,0,10,.05), transparent);
  opacity: 0; transition: opacity .3s;
}
.ev-card:hover { border-left-color: var(--red); }
.ev-card:hover::before { opacity: 1; }
.ev-icon {
  font-size: 1.6rem; flex-shrink: 0;
  width: 44px; height: 44px;
  background: #0d0d0d;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #1e1e1e;
}
.ev-body { display: flex; flex-direction: column; gap: 4px; }
.ev-name {
  font-size: .82rem; font-weight: 500;
  color: var(--white); line-height: 1.3;
}
.ev-period {
  font-size: .62rem; letter-spacing: .15em;
  text-transform: uppercase; color: #444;
}
.ev-badge {
  display: inline-block;
  font-size: .58rem; letter-spacing: .15em;
  text-transform: uppercase; font-weight: 500;
  color: var(--red);
  border: 1px solid rgba(232,0,10,.3);
  padding: 2px 8px; margin-top: 4px; width: fit-content;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contato { padding: 100px 48px; }

.ci { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.cl .big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 7.5rem); line-height: .9;
}
.cl .big span { color: var(--red); }
.cl p { margin-top: 28px; color: #555; font-size: .9rem; line-height: 1.8; max-width: 360px; }

.clinks { margin-top: 44px; display: flex; flex-direction: column; }
.clink {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--white);
  font-size: .82rem; letter-spacing: .04em;
  padding: 14px 0; border-bottom: 1px solid #141414;
  transition: all .2s;
}
.clink:hover { color: var(--red); border-bottom-color: var(--red); padding-left: 8px; }
.clink-ic {
  width: 30px; height: 30px; background: #111;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; flex-shrink: 0; transition: background .2s;
}
.clink:hover .clink-ic { background: var(--red); }

.cr {
  background: var(--gray); padding: 44px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.fg { margin-bottom: 20px; }
.fl {
  display: block; font-size: .6rem; letter-spacing: .25em;
  text-transform: uppercase; color: #444; margin-bottom: 8px; font-weight: 500;
}
.fi {
  width: 100%; background: #0d0d0d; border: 1px solid #1e1e1e;
  padding: 13px 16px; color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem; font-weight: 300; outline: none;
  transition: border-color .2s;
}
.fi:focus { border-color: var(--red); }
textarea.fi { resize: vertical; min-height: 110px; }
.fs {
  width: 100%; padding: 16px; background: var(--red);
  color: var(--white); border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 500; cursor: none;
  transition: background .2s, transform .2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.fs:hover { background: #c8000a; transform: translateY(-1px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 40px 48px; background: #040404;
  border-top: 1px solid #0d0d0d;
  display: flex; justify-content: space-between; align-items: center;
}
footer p { font-size: .65rem; color: #222; letter-spacing: .08em; }
footer p span { color: var(--red); }
.footer-logo img { height: 44px; width: auto; opacity: .35; filter: drop-shadow(0 0 6px rgba(232,0,10,0.2)); }

/* ============================================================
   WHATSAPP BUTTONS
   ============================================================ */

/* Nav WhatsApp link */
.nav-whatsapp {
  color: #25D366 !important;
  opacity: 1 !important;
  font-weight: 500 !important;
}
.nav-whatsapp::after { background: #25D366 !important; }

/* Hero WhatsApp button */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 15px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; text-decoration: none; cursor: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: transform .2s, background .2s;
}
.btn-whatsapp:hover { transform: translateY(-2px); background: #1ebe5d; }
.btn-whatsapp svg { flex-shrink: 0; }

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
  animation: none;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute; right: 68px;
  background: #111; color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; letter-spacing: .1em;
  padding: 6px 14px; white-space: nowrap;
  border: 1px solid #222;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  transform: translateX(6px);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1; transform: translateX(0);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.7); transform: scale(1.04); }
}

/* Mobile adjustments */
@media (max-width: 560px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .whatsapp-tooltip { display: none; }
  .btn-whatsapp { justify-content: center; }
}
.fu { opacity: 0; transform: translateY(28px); transition: opacity .65s, transform .65s; }
.fu.v { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — TABLET (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-r { display: none; }
  .hero-l { padding: 110px 28px 64px; }
  nav { padding: 14px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: .62rem; }
  .nav-logo img { height: 38px; }
  .hero-logo-wrap img { width: 180px; }
  .hero-title { font-size: clamp(3.5rem, 11vw, 5.5rem); }
  #portfolio, #experiencias, #contato { padding: 64px 24px; }
  .sec-hdr { flex-direction: column; align-items: flex-start; gap: 14px; }
  .sec-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .filters { flex-wrap: wrap; }
  .pgrid { columns: 2; }
  footer { padding: 28px 24px; }
  .cl .big { font-size: clamp(3rem, 9vw, 5rem); }
  .egrid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-thumb { width: 64px; height: 46px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 560px)
   ============================================================ */
@media (max-width: 560px) {
  /* Cursor desativado */
  .cur, .cur-ring { display: none; }
  body { cursor: auto; }

  /* Navbar com hamburger */
  nav { padding: 14px 18px; }
  .nav-logo img { height: 34px; }
  .menu-btn { display: flex; }

  .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 70%; max-width: 280px;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    padding: 90px 32px 40px;
    gap: 0; border-left: 1px solid #1a1a1a;
    transition: right .35s cubic-bezier(.22,1,.36,1);
    z-index: 150;
  }
  .nav-links.open { right: 0; }
  .nav-links li { border-bottom: 1px solid #1a1a1a; }
  .nav-links a {
    display: block; padding: 18px 0;
    font-size: .85rem; letter-spacing: .15em; opacity: 1;
  }

  /* Hero */
  .hero-l { padding: 96px 20px 52px; }
  .hero-logo-wrap { margin-bottom: 20px; }
  .hero-logo-wrap img { width: 150px; }
  .hero-tag { font-size: .58rem; margin-bottom: 12px; }
  .hero-title { font-size: clamp(3rem, 13vw, 4.2rem); line-height: .9; }
  .hero-sub { font-size: .82rem; margin-top: 16px; max-width: 100%; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 28px; }
  .btn-p { text-align: center; padding: 16px 24px; font-size: .7rem; }
  .btn-g { justify-content: center; }
  .scroll-ind { display: none; }

  /* Stats */
  .stats { flex-wrap: wrap; }
  .stat { flex: 1 1 48%; max-width: none; padding: 20px 12px; border-right: none; border-bottom: 1px solid #1e1e1e; }
  .stat:nth-child(odd) { border-right: 1px solid #1e1e1e; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .stat-n { font-size: 2.2rem; }
  .stat-l { font-size: .55rem; }

  /* Portfolio */
  #portfolio, #experiencias, #contato { padding: 52px 16px; }
  .sec-title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .sec-sub { font-size: .58rem; }

  .filters {
    width: 100%; overflow-x: auto; flex-wrap: nowrap;
    padding-bottom: 4px; clip-path: none;
  }
  .filters::-webkit-scrollbar { height: 2px; }
  .filters::-webkit-scrollbar-thumb { background: var(--red); }
  .fb { padding: 10px 18px; font-size: .62rem; flex-shrink: 0; }

  .pgrid { columns: 1; column-gap: 0; }
  .pi { margin-bottom: 3px; }
  .lm-wrap { margin-top: 28px; }
  .btn-o { width: 100%; text-align: center; padding: 16px; font-size: .68rem; }

  /* Slideshow mobile */
  .slide-thumbs { display: none; }
  .slide-dots { display: flex; }
  .slide-overlay { padding: 20px 18px; }
  .slide-overlay .po-alt { font-size: .88rem; }
  .slide-arr { width: 36px; height: 36px; font-size: 1.1rem; }
  .slide-arr-l { left: 8px; }
  .slide-arr-r { right: 8px; }

  /* Experiências */
  .ecard { padding: 28px 20px; }
  .ec { font-size: 1.5rem; }
  .en { font-size: 2.2rem; top: 18px; right: 18px; }
  .events-grid { grid-template-columns: 1fr; }
  .ev-card { padding: 18px 16px; gap: 14px; }
  .ev-icon { width: 38px; height: 38px; font-size: 1.3rem; }
  .ev-name { font-size: .78rem; }

  /* Contato */
  .ci { grid-template-columns: 1fr; gap: 36px; }
  .cl .big { font-size: clamp(2.4rem, 11vw, 3.5rem); line-height: .9; }
  .cl p { font-size: .84rem; margin-top: 16px; }
  .clinks { margin-top: 24px; }
  .clink { font-size: .78rem; padding: 12px 0; }
  .cr { padding: 24px 16px; clip-path: none; }
  .fi { padding: 13px 14px; font-size: .88rem; }
  .fs { padding: 15px; font-size: .7rem; }

  /* Footer */
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px 18px; }
  footer p { font-size: .62rem; }
  .footer-logo img { height: 34px; }

  /* Lightbox */
  .lb-nav { width: 36px; height: 36px; font-size: 1rem; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-close { top: 16px; right: 16px; width: 38px; height: 38px; }
  .lb-info { bottom: 16px; width: 90%; }
  .lb-alt { font-size: .75rem; }
}

/* Very small screens */
@media (max-width: 360px) {
  .hero-title { font-size: 2.8rem; }
  .cl .big { font-size: 2.4rem; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fu { opacity: 0; transform: translateY(28px); transition: opacity .65s, transform .65s; }
.fu.v { opacity: 1; transform: translateY(0); }
