/* ============================================
   THALISON DA CAL — WORKSHOP REALISMO
   Dark Premium Landing Page
   ============================================ */

/* ---------- RESET & VARIABLES ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --accent: #7B2FBE;
  --accent-light: #9b4fe0;
  --accent-dark: #5a1f8e;
  --accent-glow: rgba(123, 47, 190, 0.35);
  --accent-border: rgba(123, 47, 190, 0.25);
  --white: #ffffff;
  --gray-light: #aaaaaa;
  --gray-mid: #666666;
  --gold: #f5c518;
  --whatsapp: #25d366;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- GRAIN TEXTURE ---------- */
.hero__grain,
.workshop__grain,
.cta-final__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  z-index: 1;
}

/* ---------- TYPOGRAPHY ---------- */
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 48px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-light), #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  box-shadow: 0 0 40px rgba(123, 47, 190, 0.55);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
}

.btn--purple {
  border-color: var(--accent);
  color: var(--accent-light);
}

.btn--purple:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 32px var(--accent-glow);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--accent-dark);
  font-weight: 700;
}

.btn--white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  min-height: 48px;
}

.btn--whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 4px;
}

/* ---------- ANIMATIONS ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom: 1px solid var(--accent-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--white);
}

.navbar__logo span {
  color: var(--accent-light);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: color var(--transition);
}

.navbar__menu a:hover {
  color: var(--white);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('FOTOS E VIDEOS/Thalisson/perfil1.PNG') center/cover no-repeat;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(10, 10, 10, 0.8) 40%,
      rgba(10, 10, 10, 0.5) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 80px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--gray-light);
  font-weight: 400;
  margin-bottom: 20px;
}

.hero__text {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__text strong {
  color: var(--accent-light);
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-light);
}

.stat__label {
  font-size: 0.8rem;
  color: var(--gray-light);
  letter-spacing: 0.5px;
}

/* ---------- SOBRE ---------- */
.sobre {
  padding: 120px 0;
  background: var(--bg-primary);
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.sobre__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.sobre__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  pointer-events: none;
}

.sobre__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.sobre__role {
  color: var(--accent-light);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.sobre__text {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.sobre__text--highlight {
  color: var(--white);
  margin-top: 8px;
}

.sobre__text--highlight strong {
  color: var(--accent-light);
  font-size: 1.05rem;
}

/* Sobre — Authority Indicators */
.sobre__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sobre__stat {
  text-align: center;
  padding: 16px 8px;
  background: rgba(123, 47, 190, 0.06);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.sobre__stat:hover {
  background: rgba(123, 47, 190, 0.12);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.sobre__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 4px;
}

.sobre__stat-label {
  font-size: 0.75rem;
  color: var(--gray-light);
  letter-spacing: 0.5px;
}

/* ---------- WORKSHOP ---------- */
.workshop {
  position: relative;
  padding: 120px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.workshop .tag,
.workshop .section-title,
.workshop .section-subtitle {
  text-align: center;
}

.workshop .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.workshop__highlight {
  max-width: 700px;
  margin: 0 auto 32px;
  padding: 32px 40px;
  background: rgba(123, 47, 190, 0.08);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  box-shadow: 0 0 60px rgba(123, 47, 190, 0.1);
}

.workshop__detail {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.workshop__detail strong {
  color: var(--white);
}

.workshop__icon {
  font-size: 1.2rem;
}

.workshop__context {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.workshop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.workshop__card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}

.workshop__card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 0 30px rgba(123, 47, 190, 0.12);
  transform: translateY(-4px);
}

.workshop__card-icon {
  color: var(--accent-light);
  margin-bottom: 16px;
}

.workshop__card h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}

.workshop__card-desc {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.workshop__cta {
  text-align: center;
}

.workshop__urgency {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 500;
}

/* ---------- DEPOIMENTOS ---------- */
.depoimentos {
  padding: 120px 0;
  background: var(--bg-primary);
}

.depoimentos .tag,
.depoimentos .section-title {
  text-align: center;
}

.depoimentos__subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.depoimento-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}

.depoimento-card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 4px 30px rgba(123, 47, 190, 0.1);
}

.depoimento-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.depoimento-card__text {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.depoimento-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depoimento-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--accent-border);
}

.depoimento-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.depoimento-card__author strong {
  display: block;
  font-size: 0.9rem;
}

.depoimento-card__author span {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

/* ---------- PORTFÓLIO ---------- */
.portfolio {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.portfolio .tag,
.portfolio .section-title,
.portfolio .section-subtitle {
  text-align: center;
}

.portfolio .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: 250px;
}

.portfolio__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.portfolio__item--tall {
  grid-row: span 2;
}

.portfolio__item img,
.portfolio__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio__item:hover img,
.portfolio__item:hover video {
  transform: scale(1.05);
}

.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
}

.portfolio__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
}

/* Portfolio CTA */
.portfolio__cta {
  text-align: center;
  margin-top: 48px;
}

.portfolio__cta-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gray-mid);
}

/* ---------- ONLINE ---------- */
.online {
  position: relative;
  padding: 120px 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.online__glow {
  position: absolute;
  top: 50%;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 47, 190, 0.15), transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.online__inner {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.online__text {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---------- CONTATO (FORMULÁRIO) ---------- */
.contato {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.contato__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contato .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.contato__form {
  margin-top: 16px;
}

.contato__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-card);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

.form-group input::placeholder {
  color: var(--gray-mid);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.contato__note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--gray-mid);
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  position: relative;
  padding: 100px 0;
  background: var(--accent);
  overflow: hidden;
}

.cta-final__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-final__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-primary);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand p {
  color: var(--gray-mid);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a {
  font-size: 0.9rem;
  color: var(--gray-mid);
  transition: color var(--transition);
}

.footer ul a:hover {
  color: var(--accent-light);
}

.footer__social-icons {
  display: flex;
  gap: 12px;
}

.footer__social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--gray-light);
  transition: all var(--transition);
}

.footer__social-icons a:hover {
  background: var(--accent);
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--gray-mid);
  text-align: center;
}


/* ============================================
   PORTFOLIO PAGE STYLES
   ============================================ */

/* Portfolio Page Hero */
.portfolio-page-hero {
  padding: 140px 0 60px;
  background: var(--bg-primary);
  text-align: center;
}

.portfolio-page-hero .section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 8px;
}

.portfolio-page-hero .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

/* Portfolio Filters */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.portfolio-filters .filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--gray-light);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
}

.portfolio-filters .filter-btn:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.portfolio-filters .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* Masonry Gallery */
.masonry-gallery {
  padding: 0 0 80px;
  background: var(--bg-primary);
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.masonry-grid .gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: var(--bg-card);
}

.masonry-grid .gallery-item img,
.masonry-grid .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-grid .gallery-item:hover img,
.masonry-grid .gallery-item:hover video {
  transform: scale(1.05);
}

.masonry-grid .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.masonry-grid .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Video items: show a small play badge always visible */
.gallery-item--video .play-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(123, 47, 190, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-item--video:hover .play-badge {
  transform: scale(1.15);
  background: var(--accent);
}

.gallery-overlay .zoom-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(123, 47, 190, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  backdrop-filter: blur(8px);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__img,
.lightbox__video {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__video {
  outline: none;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10001;
}

.lightbox__close:hover {
  background: var(--accent);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10001;
}

.lightbox__nav:hover {
  background: var(--accent);
}

.lightbox__nav--prev {
  left: 24px;
}

.lightbox__nav--next {
  right: 24px;
}

/* Videos Section */
.videos-section {
  padding: 100px 0;
  background: #111;
}

.videos-section .tag,
.videos-section .section-title {
  text-align: center;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.video-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-card);
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Portfolio CTA Section */
.portfolio-cta-section {
  padding: 80px 0;
  background: var(--accent);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.portfolio-cta-section .cta-final__grain {
  position: absolute;
  inset: 0;
}

.portfolio-cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.portfolio-cta-section .btn {
  position: relative;
  z-index: 2;
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .sobre__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre__image img {
    aspect-ratio: 16/10;
  }

  .workshop__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .depoimentos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .depoimentos__grid .depoimento-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* Navbar mobile */
  .navbar__toggle {
    display: flex;
    z-index: 1001;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--accent-border);
    transition: right 0.4s ease;
    gap: 24px;
  }

  .navbar__menu.open {
    right: 0;
  }

  .navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero mobile */
  .hero__content {
    padding: 100px 0 60px;
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 3rem);
  }

  .hero__text {
    font-size: 16px;
  }

  .hero__overlay {
    background: linear-gradient(to bottom,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%);
  }

  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hide-mobile {
    display: none;
  }

  /* Sobre mobile — photo stacked above text */
  .sobre__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sobre__image {
    order: -1;
  }

  .sobre__stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Workshop */
  .workshop__highlight {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .workshop__grid {
    grid-template-columns: 1fr;
  }

  .workshop__card {
    border-left: 3px solid var(--accent);
    padding: 20px;
  }

  /* Depoimentos */
  .depoimentos__grid {
    grid-template-columns: 1fr;
  }

  .depoimentos__grid .depoimento-card:last-child {
    max-width: none;
  }

  .depoimento-card {
    padding: 24px 20px;
  }

  /* Portfolio */
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .portfolio__item--tall {
    grid-row: span 1;
  }

  /* Contato */
  .contato__fields {
    grid-template-columns: 1fr;
  }

  .form-group input {
    width: 100%;
  }

  .btn--whatsapp {
    width: 100%;
  }

  /* CTA Final */
  .cta-final {
    padding: 80px 0;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__social-icons {
    justify-content: center;
  }

  /* Portfolio page */
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-page-hero {
    padding: 120px 0 40px;
  }

  /* Buttons full width */
  .hero__ctas .btn,
  .workshop__cta .btn,
  .portfolio__cta .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    text-align: center;
  }

  .hero__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .btn--lg {
    padding: 16px 28px;
  }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .masonry-grid {
    columns: 1;
  }

  .sobre__stats {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-filters {
    gap: 8px;
  }

  .portfolio-filters .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .workshop__card {
    padding: 20px;
    font-size: 15px;
  }

  .workshop__card-desc {
    font-size: 15px;
  }

  .depoimento-card__text {
    font-size: 15px;
  }

  .sobre__text {
    font-size: 15px;
  }
}