:root {
  /* Fundo base claro, estilo bege */
  --bg: #f4eee4;          /* fundo da página */
  --bg-soft: #f9f4ec;     /* superfícies claras (cards, blocos) */

  /* Texto */
  --text: #141414;
  --muted: #7b7368;

  /* Detalhes escuros */
  --ink: #111111;         /* preto para títulos/menus */
  --border-soft: #d3c7b5; /* bordas suaves */
  --border-strong: #b7a78f;

  /* Pill / elementos escuros de contraste */
  --pill-bg: #181818;

  /* Dourado de detalhe */
  --accent: #c9a25a;      /* podemos ajustar depois se quiser mais ou menos dourado */

  /* Fontes */
  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
}

/* ===== HERO RESET ===== */
/* ===== HERO / AJUSTE DE GAP ===== */

/* Desktop */
.hero {
  padding-top: 4rem; /* diminui da distância do topo */
}

/* Texto do título totalmente centralizado em 2 linhas */
.hero-title {
  text-align: center;
  margin-top: 1rem;   /* Ajuste fino */
  line-height: 1.05;
}

/* Mobile: espaço reduzido */
@media (max-width: 768px) {
  .hero {
    padding-top: 1.8rem; /* bem mais colado ao topo */
  }

  .hero-title {
    font-size: 2.8rem;
    margin-top: 0.3rem;
    text-align: center;
  }
}




/* ===== TEXTO LONDRINO / OFFICIAL ===== */

/* DESKTOP / TABLET: UMA LINHA SÓ */
.hero-brand-row {
  margin-top: 2.5rem;        /* espaço menor abaixo do menu */
  margin-bottom: 2rem;

  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(0.6rem, 2vw, 1.6rem);

  text-align: center;
}

.hero-brand {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 7vw, 4.8rem);  /* maior, estilo Kevin */
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--ink);
}

/* mantém as classes se estiverem no HTML, mas sem padding lateral */
.hero-brand-left,
.hero-brand-right {
  padding: 0 !important;
}

/* MOBILE: QUEBRA EM DUAS LINHAS (LONDRINO / OFFICIAL) */
@media (max-width: 768px) {

  .hero-brand-row {
    display: flex;
    flex-direction: column;
    align-items: center;   /* CENTRALIZA */
    justify-content: center;
    text-align: center;
    gap: 0.4rem;
    margin-top: 2rem;      /* evita colar no menu */
  }

  .hero-brand-left,
  .hero-brand-right {
    padding: 0;           /* remove empurrões laterais */
  }

  .hero-brand {
    font-size: clamp(2.4rem, 10vw, 3rem);  /* tamanho ideal mobile */
    line-height: 1.05;
  }

}



/* ===== MENU PÍLULA – FIXO, GLASS, RESPONSIVO ===== */

.hero-nav-pill {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;

  padding: 0.8rem 2.6rem;
  border-radius: 999px;

  /* glass escuro sobre o bege */
  background: rgba(12, 12, 12, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;

  max-width: calc(100% - 3rem); /* respiro nas laterais em telas menores */
  box-sizing: border-box;
}

/* links dentro do menu */

.hero-nav-pill a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.25rem 0.9rem;
  border-radius: 999px;

  text-decoration: none;
  color: #f5f5f5;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* remove aquele hover cinza antigo */
.hero-nav-pill a::before {
  content: none;
}

/* hover simples e elegante */
.hero-nav-pill a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* MOBILE – menu menor, ainda em uma linha, com respiro */

@media (max-width: 768px) {
  .hero-nav-pill {
    top: 0.6rem;
    padding: 0.55rem 1.4rem;
    gap: 1.3rem;
    font-size: 0.72rem;
    max-width: calc(100% - 1.8rem); /* mais respiro nas laterais */
  }
}


.hero-image-wrapper {
  width: 100%;
  margin: 1rem 0 0;

  /* RESPIRO LATERAL – ajuste aqui pra mais/menos */
  padding-left: 1.5rem;
  padding-right: 1.5rem;

  box-sizing: border-box;
}

.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: url(/Fotos/London_drone.png) center/cover no-repeat;
  overflow: hidden;
  border-radius: 22px;
  transition: transform 0.6s ease-out;
}


/* escurecer levemente a foto */

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.7)
  );
}

/* texto central POR LUCAS COSTA */

.hero-credit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: white;
  text-align: center;
  z-index: 1;
}

/* título grande, estilo Kevin */
.about {
  background: var(--bg);
  padding: 4rem 0 5rem;
}

.about-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;   /* respiro lateral alinhado com o resto do site */
  box-sizing: border-box;
}

/* responsivo */

@media (max-width: 768px) {
  .about {
    padding: 3.5rem 0 4rem;
  }

  .about-inner {
    padding: 0 1.25rem;
  }
}


.about-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ink);              /* antes era #f5f5f5 */
  margin: 0 0 1.5rem;
}

/* linha de apoio abaixo */

.about-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);            /* antes era #c9c9c9 */
  margin: 0 0 2.2rem;
}

/* chips / tags */

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-tags span {
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);  /* antes #3a3a3a */
  font-size: 0.85rem;
  color: var(--ink);                      /* antes #e5e5e5 */
  background: var(--bg-soft);            /* antes rgba(...) */
}

/* bullet dourado já está ok */
.about-highlight li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* responsivo */

@media (max-width: 768px) {
  .about {
    padding: 3.5rem 0 4rem;
  }

  .about-inner {
    padding: 0 1.25rem;
  }

  .about-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }
}

/* =======================
   PORTFÓLIO — SEÇÃO DA HOME
========================== */

.portfolio {
  background: var(--bg);
  padding: 4rem 0 1.5rem;
}

.portfolio-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.portfolio-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.portfolio-sub {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 3rem;
  max-width: 600px;
  line-height: 1.6;
}

/* GRID DE CARDS */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2.6rem 2rem;
  align-items: flex-start;
}

/* CARD – ESTADO INICIAL (ANIMAÇÃO ENTRADA) */

.portfolio-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;

  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  overflow: hidden;

  opacity: 1; /* se você não estiver usando JS de animação, pode deixar 1 */
  transform: translateY(0) scale(1);

  box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* base sem sombra forte */

  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease-out,
    border-color 0.35s ease,
    box-shadow 0.4s ease;
}

/* leve irregularidade orgânica */

.portfolio-card:nth-child(2) {
  margin-top: 1.4rem;
}

.portfolio-card:nth-child(4),
.portfolio-card:nth-child(5) {
  margin-top: 0.8rem;
}

/* CARD QUANDO ENTRA NA TELA (classe adicionada via JS) */

.portfolio-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* HOVER */

.portfolio-card.is-visible:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--border-strong);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* IMAGEM DO CARD */

.portfolio-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
}

/* TEXTO DO CARD */

.portfolio-card-info {
  padding: 1.25rem 1.6rem 1.5rem;
}

.portfolio-card-info h3 {
  font-size: 1rem;
  margin: 0 0 0.38rem;
  font-weight: 500;
  color: var(--ink);
}

.portfolio-card-info p {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
}


/* =======================
   PÁGINAS INTERNAS DO PORTFÓLIO
========================== */

.project-body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
}

/* HEADER DA PÁGINA DO PROJETO */

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.6rem;
  border-bottom: 1px solid var(--border-soft);
}

.project-back {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.project-back:hover {
  color: var(--accent);
}

.project-brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8f8f8f;
}

/* CONTAINER PRINCIPAL */

.project-main {
  max-width: 1150px;
  margin: 0 auto;
  padding: 3rem 1.6rem 5rem;
  box-sizing: border-box;
}

/* HERO DO PROJETO */

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.project-hero-image {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  filter: brightness(0.9);
}

/* INFO DO PROJETO */

.project-hero-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  margin: 0 0 0.6rem;
  color: var(--ink);
}

.project-tagline {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin: 0 0 0.7rem;
}

.project-meta {
  font-size: 0.9rem;
  color: #9d9d9d;
  line-height: 1.45;
  margin: 0;
}

/* TEXTO DO PROJETO */

.project-text {
  max-width: 720px;
  margin-bottom: 3.2rem;
  
}

.project-text p {
  font-size: 1.03rem;
  line-height: 1.72;
  color: #4a4338;
}

/* GALERIA */

.project-gallery h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 1.5rem;
  color: var(--ink);
}

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

.project-gallery-grid img {
  width: 100%;
  border-radius: 20px;
  display: block;
  filter: brightness(0.94);
  transition: 0.3s ease;
}

.project-gallery-grid img:hover {
  filter: brightness(1);
}

/* ===== RESPONSIVO ===== */

@media (max-width: 820px) {
  .portfolio-inner {
    padding: 0 1.25rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .portfolio-card:nth-child(2),
  .portfolio-card:nth-child(4),
  .portfolio-card:nth-child(5) {
    margin-top: 0; /* no mobile fica tudo alinhado */
  }

  .project-hero {
    grid-template-columns: 1fr;
  }

  .project-hero-image {
    aspect-ratio: 4 / 5;
  }
}

.services-inner {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.services-header {
  max-width: 620px;
  margin-bottom: 3rem;
}

.services-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.services-sub {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
}

/* GRID DE SERVIÇOS */

.services-grid {
  display: grid;
  /* DESKTOP: 4 colunas na mesma linha */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
  margin-bottom: 3.2rem;
}


.service-card {
  background: var(--bg-soft);
  border-radius: 22px;
  border: 1px solid var(--border-soft);
  padding: 1.5rem 1.6rem 1.7rem;
  box-sizing: border-box;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card h3 {
  font-size: 1rem;
  margin: 0 0 0.6rem;
  color: var(--ink);
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #5b5448;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVO SERVIÇOS */

@media (max-width: 1024px) {
  /* Tablet: 2 colunas */
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  /* Mobile: 1 coluna */
  .services-inner {
    padding: 0 1.25rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .service-card {
    padding: 1.4rem 1.3rem 1.5rem;
  }
}
/* =======================
   SOBRE O FOTÓGRAFO (EDITORIAL)
========================== */

.about-photographer {
  background: var(--bg);
  padding: 4rem 0 5rem;
}

.about-photographer-inner {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}

/* FOTO À ESQUERDA */

.about-photographer-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  overflow: hidden;
  background-image: url(/Fotos/Lucas\ Costa-11.jpg); /* TROCAR AQUI DEPOIS */
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* TEXTO À DIREITA */

.about-photographer-content {
  max-width: 620px;
}

.about-photographer-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

.about-photographer-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin: 0 0 1.4rem;
  color: var(--ink);
}

.about-photographer-content p {
  margin: 0 0 1rem;
  font-size: 0.97rem;
  line-height: 1.8;
  color: #5b5448;
}

/* último parágrafo com um pouco menos de espaço embaixo */
.about-photographer-content p:last-child {
  margin-bottom: 0;
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .about-photographer-inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .about-photographer-image {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-photographer {
    padding: 3.5rem 0 4rem;
  }

  .about-photographer-inner {
    padding: 0 1.25rem;
  }

  .about-photographer-title {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
  }
}
/* =======================
   CONTATO
========================== */

/* =======================
   CONTATO — WHATSAPP
========================== */

.contact {
  background: var(--bg);
  padding: 4rem 0 6rem;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.contact-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 2.4rem;
}

/* Botão WhatsApp */

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.95rem 1.8rem;
  border-radius: 999px;

  background: var(--ink);
  color: #ffffff;
  text-decoration: none;

  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: transform 0.25s ease, opacity 0.25s ease;
}

.contact-whatsapp:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

/* Mobile */

@media (max-width: 768px) {
  .contact {
    padding: 3.5rem 0 4.5rem;
  }

  .contact-inner {
    padding: 0 1.25rem;
  }
}

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

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg);
  padding: 1.8rem 0 2.2rem;
}

.footer-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-serif);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ink);
}

/* Social + crédito */

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
}

.footer-social-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.footer-social-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.3;
}

.footer-social-text {
  font-size: 0.9rem;
}

.footer-social:hover .footer-social-text {
  text-decoration: underline;
}

.footer-credit {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
}


/* Responsivo */

@media (max-width: 768px) {
  .hero-nav-pill {
    top: 0.6rem;
    padding: 0.45rem 1.2rem;
    gap: 1rem;
    font-size: 0.65rem;
    max-width: 95%;
  }

  .hero-nav-pill a {
    padding: 0.25rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .hero-nav-pill {
    gap: 0.7rem;
    font-size: 0.58rem;
    padding: 0.4rem 1rem;
    max-width: 96%;
  }

  .hero-nav-pill a {
    padding: 0.2rem 0.5rem;
  }
}
