/* ================== RESET & BASE ================== */
:root {
  --brand-yellow: #fbbf24;
  --brand-white: #ffffff;
  --brand-gray: #414141;

  --brand-grad-1: #f1ca79;
  --brand-grad-2: #a88b53;

  --text-muted: #9ca3af;
  --bg-dark: #000;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg-dark);
  color: var(--brand-white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body {
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* Container padrão */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================== NAVBAR ================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 1rem 0;
  transition: 0.3s ease;
  background: transparent;
}

.navbar.navbar-scrolled {
  background: var(--bg-dark);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1); /* permite sobrepor cor via CSS futuramente */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links button,
.nav-links a {
  padding: 0.5rem 0.9rem;
  background: transparent;
  border: none;
  color: #b3b3b3;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.2s;
}

.nav-links .btn-gradient,
.nav-mobile .btn-gradient {
  background: linear-gradient(90deg, #f6c26a 0%, #d99b42 50%, #f6c26a 100%);
  color: #000;
}

.nav-links button:hover,
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-radius: 0.5rem;
}

/* Botões */

.btn-primary {
  background: linear-gradient(90deg, var(--brand-grad-1), var(--brand-grad-2));
  color: var(--bg-dark);
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: 0.2s;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn-primary.small {
  padding: 0.55rem 1.2rem;
}

.btn-primary.full {
  width: 100%;
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--brand-white);
  border-radius: 999px;
  padding: 0.8rem 1.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  font-size: 0.95rem;
  transition: 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
}

.btn-gradient {
  background: linear-gradient(90deg, #f6c26a 0%, #d99b42 50%, #f6c26a 100%);
  color: #000;
  font-weight: 600;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Versão menor do degradê */
.btn-gradient.cta-small {
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: 999px;
  display: inline-block;
  width: fit-content;
}

.btn-gradient:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
}

/* Menu mobile */

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.8rem;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem;
  background: var(--bg-dark);
  border-top: 1px solid #222;
}

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

.nav-mobile button,
.nav-mobile a {
  color: var(--brand-white);
  background: transparent;
  border: none;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
  text-align: left;
}

.nav-mobile button:last-child,
.nav-mobile a:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

/* ================== HERO ================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  text-align: center;
  padding-top: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-blur {
  position: absolute;
  filter: blur(80px);
  opacity: 0.5;
  border-radius: 999px;
  pointer-events: none;
}

.hero-bg-1 {
  width: 350px;
  height: 350px;
  top: 15%;
  left: 18%;
  background: rgba(255, 193, 7, 0.25);
}

.hero-bg-2 {
  width: 320px;
  height: 320px;
  bottom: 18%;
  right: 15%;
  background: rgba(255, 128, 0, 0.22);
}

.hero-bg-3 {
  width: 480px;
  height: 480px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 150, 30, 0.16);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--brand-grad-1) 1px, transparent 1px),
    linear-gradient(90deg, var(--brand-grad-1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.6;
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  max-width: 780px;
  padding: 1rem;
  z-index: 3;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.gradient-text {
  background: linear-gradient(to right, var(--brand-grad-1), var(--brand-grad-2));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: #aaaaaa;
  margin: 0 auto 2.1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: #777;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3;
}

.scroll-indicator:hover {
  color: #fff;
}

/* ================== SEÇÕES GERAIS ================== */

.section {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--brand-yellow);
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 700;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}

.section-title .gradient-text {
  font-size: inherit;
}

.section-subtitle {
  color: #9ca3af;
  max-width: 550px;
  margin-top: 0.5rem;
  font-size: 0.98rem;
  text-align: center;

}

.section-header.center .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.muted {
  color: #9ca3af;
}

/* ================== SOBRE ================== */

.about-section {
  position: relative;
}

.gradient-side {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top left, var(--brand-grad-1), transparent 60%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.about-image-wrapper {
  position: relative;
}

/* Ajuste da imagem da seção SOBRE */
.about-image {
  height: 100%;
  border-radius: 1.6rem;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gradiente lateral mais suave */
.gradient-side {
  background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.06), transparent 78%);
}

.img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 40%);
}

.about-floating-card {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: rgba(9,9,11,0.92);
  border-radius: 1.1rem;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 24px 45px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}

.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-grad-1), var(--brand-grad-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.floating-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.floating-subtitle {
  font-size: 0.8rem;
  color: #9ca3af;
}

.about-text {
  align-self: center;
}

.about-paragraphs p {
  margin-bottom: 0.9rem;
  color: #d4d4d8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.stat-card {
  background: rgba(15,23,42,0.9);
  padding: 0.9rem;
  border-radius: 0.9rem;
  text-align: left;
  border: 1px solid rgba(148,163,184,0.25);
}

.stat-icon {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.stat-value {
  font-weight: 700;
  font-size: 1.2rem;
}

.stat-label {
  color: #9ca3af;
  font-size: 0.8rem;
}

/* ================== HABILIDADES ================== */

.skills-section {
  position: relative;
}

.skills-bg-1,
.skills-bg-2 {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
}

.skills-bg-1 {
  width: 280px;
  height: 280px;
  top: 40%;
  left: 0;
  background: rgba(251, 191, 36, 0.18);
}

.skills-bg-2 {
  width: 320px;
  height: 320px;
  bottom: 0;
  right: 12%;
  background: rgba(249, 115, 22, 0.14);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
  z-index: 2;
}

.skill-card {
  background: rgba(24,24,27,0.9);
  padding: 1.5rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(39,39,42,0.9);
}

.skill-card h3 {
  margin-bottom: 0.5rem;
}

.skill-card p {
  font-size: 0.9rem;
  color: #d4d4d8;
}

.skill-icon {
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 0.9rem;
  padding: 0.7rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  color: #000;
}

/* cores das skills */
.bg-amber { background: #fbbf24; }
.bg-purple { background: #a855f7; color: #fff; }
.bg-blue { background: #3b82f6; color: #fff; }
.bg-pink { background: #ec4899; color: #fff; }

/* ================== PORTFÓLIO ================== */

.portfolio-section {
  position: relative;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #27272a;
  background: #111827;
  color: #e5e7eb;
  font-size: 0.85rem;
  text-transform: capitalize;
  cursor: pointer;
  transition: 0.2s;
}

.filter-btn.active {
  background: linear-gradient(90deg, var(--brand-grad-1), var(--brand-grad-2));
  border-color: transparent;
}

.filter-btn:hover:not(.active) {
  border-color: #4b5563;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

/* CARD DO PORTFÓLIO */
.portfolio-card {
  background: #111317;
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid #1f2430;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 184, 77, 0.6);
}

.portfolio-card-click-area {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ÁREA DA IMAGEM */
.portfolio-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;        /* 🔹 ajuste aqui se quiser 16/9, 1/1 etc */
  overflow: hidden;
  background: #050505;
}

/* A IMAGEM EM SI */

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-thumb img {
  position: absolute;
  inset: 10%;          /* margem interna em todos os lados (10%)  */
  width: 80%;          /* ocupa 80% da largura */
  height: 80%;         /* ocupa 80% da altura */
  display: block;
  object-fit: contain; /* garante que o logo não deforme */
}
.portfolio-info {
  padding: 1rem 1.1rem 1.2rem;
}

/* Conteúdo textual do card */
.portfolio-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.portfolio-roles {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3b5;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.portfolio-description {
  font-size: 0.9rem;
  color: #c1c6d5;
  line-height: 1.5;
  margin-top: 0.25rem;
}

.portfolio-category {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.65rem;
  text-transform: capitalize;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag-chip {
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(148,163,184,0.7);
  color: #e5e7eb;
}

/* ================== CONTATO ================== */

/* ---------------- CONTATO ---------------- */

.contact-section {
  position: relative;
  padding: 6rem 0;
  background: #050505;
}

.contact-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Título centralizado, ocupando a largura toda */
.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1rem auto;
}

/* Colunas: form à esquerda, cards à direita */
.contact-columns {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Formulário – já deve ter estilos, mas garanta largura total da coluna */
.contact-form-wrapper {
  width: 100%;
}

.contact-form {
  background: #050814;
  border-radius: 24px;
  padding: 2rem 2.5rem;
  border: 1px solid #151a26;
}

/* Cartões de contato na coluna da direita */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card,
.social-card,
.cta-card {
  background: #050814;
  border-radius: 24px;
  padding: 1.3rem 1.6rem;
  border: 1px solid #151a26;
  gap: 2px;
  display: flex;
}

/* Responsivo: empilhar em uma coluna no mobile */
@media (max-width: 900px) {
  .contact-columns {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper,
  .contact-info {
    max-width: 100%;
  }

  .contact-header {
    text-align: left;
  }
}

.contact-bg-1,
.contact-bg-2 {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.contact-bg-1 {
  width: 480px;
  height: 480px;
  bottom: -80px;
  left: -80px;
  background: var(--brand-gray);
}

.contact-bg-2 {
  width: 420px;
  height: 420px;
  top: 0;
  right: -60px;
  background: var(--brand-gray);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

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

.form-group label {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #020617;
  border: 1px solid #334155;
  color: #f9fafb;
  border-radius: 0.7rem;
  padding: 0.7rem 0.8rem;
  font-size: 0.9rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  font-size: 0.8rem;
  color: #a3e635;
  min-height: 1rem;
  margin-top: 0.3rem;
}

.adobe-badge {
  font-weight: 700;
  font-size: 1rem;
}

.info-card {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.info-icon i {
  color: #000;              /* contraste com o degradê amarelo */
  font-size: 1rem;
}

.info-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

.info-value {
  font-size: 0.9rem;
}

.social-links a {
  width: 60px;
  height: 60px;
  gap: 1.2rem;
  border-radius: 12px;
  font-size: 1.5rem;
}

.cta-card h4 {
  margin-bottom: 0.4rem;
}

.cta-card p {
  color: #9ca3af;
  font-size: 0.87rem;
  margin-bottom: 0.5rem;
}

.cta-link.btn-gradient {
  color: #000 !important;
}

/* --- CONTATO INLINE --- */

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.info-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: #050814;
  border: 1px solid #181b2a;
  min-width: 220px;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #facc6b, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 0.15rem;
  align-items: center;
  display: flex;
}

.info-value {
  color: #e5e7eb;
  font-size: 0.9rem;
}

.info-value a,
.info-chip a.info-value {
  color: #e5e7eb;
  text-decoration: none;
}

.social-links.inline {
  gap: 0.4rem;
  margin-top: 0.15rem;
  padding: 0; 
}

.social-links.inline a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #0b1020;
  color: #e5e7eb;
  font-size: 0.7rem;
}

/* botão de agendamento em linha */
.contact-cta {
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* responsivo */
@media (max-width: 768px) {
  .info-chip,
  .contact-cta {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ================== PÁGINA DO PROJETO ================== */

.project-page .hero-section {
  display: none;
}

.project-main {
  padding-top: 6rem;
}

.project-detail {
  color: #f9fafb;
}

.project-hero {
  padding: 5rem 0 3rem;
  background: radial-gradient(circle at top, rgba(251,191,36,0.18), #020617 60%);
}

.project-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
}

.project-header {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.project-cover-wrapper {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);

  /* NOVO: centralizar a imagem dentro */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;       /* fundo neutro atrás do logo */
  padding: 2rem;             /* “folga” interna pra imagem respirar */
}

.project-cover {
  width: 80%;                /* tamanho do logo dentro do container */
  height: auto;
  display: block;
  object-fit: contain;       /* não corta o logo, mantém proporção */
}

.project-hero-text .section-tag {
  margin-bottom: 0.4rem;
}

.project-breadcrumb {
  font-size: 0.875rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.project-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.project-description {
  color: #e5e7eb;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.project-roles {
  color: #e5e7eb;
  margin-bottom: 12px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: #fbbf24;
  font-size: 0.75rem;
}

.project-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.project-detail-section {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #050509;
}

.project-detail-header {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

.project-detail-image {
  width: 320px;
  max-width: 100%;
  border-radius: 20px;
  background: #111;
  object-fit: cover;
}

.project-detail-text {
  flex: 1;
  min-width: 260px;
}

.project-detail-title {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 12px;
}

.project-detail-description {
  color: #b3b3c0;
  font-size: 1rem;
  line-height: 1.6;
}

.project-detail-video {
  margin-top: 24px;
}

.project-detail-video h2 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.project-video-player {
  width: 100%;
  max-width: 900px;
  border-radius: 18px;
  background: #000;
}

.project-detail-actions {
  margin-top: 32px;
}

/* Corpo */

.project-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-description h2,
.project-photos h2,
.project-videos h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.project-description p {
  color: #d1d5db;
  max-width: 720px;
}

/* Fotos */

.project-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.project-photo {
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
}

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Vídeos */

.project-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.project-video-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #e5e7eb;
}

.project-video-card video {
  width: 100%;
  border-radius: 18px;
  background: #020617;
}

/* Voltar */

.project-back {
  margin-top: 16px;
}

/* Responsivo */

@media (max-width: 900px) {
  .project-header {
    grid-template-columns: 1fr;
  }
}

.video-card {
  background: #020617;
  border-radius: 1rem;
  border: 1px solid #1f2937;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.video-info {
  padding: 1rem;
}

.video-info h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.video-info p {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.7rem;
}

.video-info .btn-primary {
  width: 100%;
  text-align: center;
}

/* ================== FOOTER ================== */

.footer {
  padding: 2rem 0;
  border-top: 1px solid #111827;
  background: #020617;
  margin-top: 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 0.8rem;
}

