:root {
  --cream: #f0ebe3;
  --dark: #1a1a1a;
  --sky: #b8d4e8;
  --teal: #FF6A00;
  --sand: #d9c9b0;
  --paper: #e8e0d5;
}

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

body {
  font-family: 'Space Mono', monospace;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

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

/* NAV */
nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 1200px;
  padding: 0.7rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
  padding-bottom: 2px;
}

.nav-links a:hover { border-color: white; }

.nav-cta {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  transition: background 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--teal);
  border-color: var(--teal);
}

/* HERO */
#hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: white;
  text-align: center;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-brand {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 1rem;
}

.hero-logo {
  width: min(340px, 70vw);
  height: auto;
  object-fit: contain;
  margin-bottom: 2.5rem;
}

.social-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.social-btn:hover {
  transform: scale(1.1) rotate(-5deg);
  background: var(--teal);
  border-color: var(--teal);
}

.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}

.hero-cta:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.bird {
  position: absolute;
  font-size: 2rem;
  opacity: 0.12;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* QUEM É */
#quem {
  background-color: #000000;
  background-image: none;
  color: #ffffff;

  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
}


.quem-logo-deco {
  position: absolute;
  top: 2rem;
  right: 2rem;
  height: 70px;
  width: auto;
  opacity: 0.5;
  pointer-events: none;
}

.quem-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quem-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
}
/* Deixando a tag "Sobre" visível e equilibrada */
.section-tag {
  color: #ffffff;
  opacity: 0.75;
}

.section-tag2 {
  color: #ffffff;
  opacity: 0.75;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.about-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  max-width: 480px;
}

/* Ajustando os elementos em negrito */
.about-text strong {
  color: #ffffff;
  font-weight: 700;
  /* Uma borda branca com opacidade para um visual elegante */
  border-bottom: 2px solid rgb(237, 131, 10); 
  padding-bottom: 1px;
}



.about-text em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
}

/* PORTFOLIO & FOTOGRAFIA */
#portfolio, #fotografia {
  background: #000000;
  color: #ffffff;
  padding: 6rem 4rem;
}

#fotografia {
  background: #000000;
}

#portfolio .section-title, #fotografia .section-title {
  margin-bottom: 3rem;
}

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-item {
  position: relative;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card-item:hover { transform: translateY(-4px); }

.card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-item:hover .card-thumb-img { transform: scale(1.05); }

.card-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.card-thumb-overlay::after {
  content: '▶';
  font-size: 2.5rem;
  color: white;
  opacity: 0.9;
}

.card-item:hover .card-thumb-overlay { opacity: 1; }

.card-thumb-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.card-thumb-overlay-visible {
  opacity: 1;
  background: rgba(0,0,0,0.2);
}

.card-info {
  padding: 1rem 1.2rem 1.4rem;
  color: white;
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.card-desc {
  font-size: 0.65rem;
  opacity: 0.55;
  letter-spacing: 0.05em;
}

.card-border {
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  width: 100%;
  position: relative;
  max-height: 90vh;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.modal-close:hover { background: var(--teal); }

.modal-video-wrap {
  background: #000;
  display: flex;
  align-items: center;
}

.modal-video {
  width: 100%;
  display: block;
}

.modal-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  overflow-y: auto;
}

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: white;
}

.modal-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

.modal-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--teal);
  color: white;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border-radius: 6px;
  transition: opacity 0.2s;
  width: fit-content;
}

.modal-btn:hover { opacity: 0.85; }

@media (max-width: 768px) {
  .modal-box { grid-template-columns: 1fr; grid-template-rows: auto 1fr; max-height: 95vh; }
  .modal-info { padding: 1.5rem; }
}

/* PORTFOLIO ANTIGO (mantido para compatibilidade) */
.portfolio-thumb-placeholder { display: none; }

/* BACKSTAGE — MARQUEE */
#backstage {
  background: #000000;
  color: #ffffff;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

#backstage .section-tag2,
#backstage .section-title {
  padding: 0 4rem;
}

.marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.marquee-left {
  animation: scroll-left 30s linear infinite;
}

.marquee-right {
  animation: scroll-right 30s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-img {
  height: 260px;
  width: auto;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(20%);
}

.marquee-img:hover {
  transform: scale(1.04);
  filter: grayscale(0%);
  z-index: 2;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (max-width: 768px) {
  #backstage { padding: 4rem 0 3rem; }
  #backstage .section-tag2, #backstage .section-title { padding: 0 2rem; }
  .marquee-img { height: 180px; }
}

/* TRABALHOS PESSOAIS — VÍDEOS HORIZONTAIS */
#pessoais {
  background: #000000;
  color: #ffffff;
  padding: 6rem 4rem;
}

.horizontal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.horizontal-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.horizontal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.horizontal-card:hover .horizontal-video {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  #pessoais { padding: 4rem 2rem; }
  .horizontal-grid { grid-template-columns: 1fr; }
}

/* ORÇAMENTO */
#orcamento {
  background: #000000;
  color: #ffffff;
  padding: 6rem 4rem;
}

.orcamento-inner {
  max-width: 860px;
  margin: 0 auto;
}

.orcamento-sub {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  opacity: 0.55;
  margin-bottom: 3rem;
  margin-top: -1rem;
}

.orcamento-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  color: #ffffff;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  padding: 0.7rem 0;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group select option {
  background: #111;
  color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  opacity: 0.3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--teal);
}

.form-group textarea {
  resize: none;
  line-height: 1.8;
}

.form-btn {
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  margin-top: 0.5rem;
}

.form-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.form-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  #orcamento { padding: 4rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* FOOTER */
footer {
  background: var(--dark);
  color: white;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: white; }

.footer-copy {
  width: 100%;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.25;
  text-align: center;
  margin-top: 1rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse-whats 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whats {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.8); }
}

.scroll-up {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  z-index: 200;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.scroll-up.visible { opacity: 1; }
.scroll-up:hover { transform: scale(1.1) translateY(-3px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.hidden {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.hidden.visible {
  opacity: 1;
  transform: translateY(0);
}

.swipe-hint { display: none; }
.card-arrow { display: none; }

/* HAMBURGUER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 99;
  justify-content: center;
}

.mobile-menu.open { display: flex; }

.mobile-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-link:hover { color: var(--teal); }

.mobile-link-cta {
  margin-top: 1rem;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.6rem 2rem;
  font-size: 1.2rem;
  border-radius: 50px;
}

.mobile-link-cta:hover {
  background: var(--teal);
  border-color: var(--teal);
}

@media (max-width: 768px) {
  .hero-name { font-size: clamp(4rem, 18vw, 6rem); }
  #quem { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 2rem; }
  .quem-img { max-width: 100%; }
  .cards-grid { grid-template-columns: 1fr; gap: 0.8rem; }

  footer { flex-direction: column; padding: 3rem 2rem; text-align: center; }
  nav { width: calc(100% - 2rem); padding: 0.3rem 1rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}