/* =====================================================
   PORTFOLIO PROFISSIONAL — style.css
   ===================================================== */

/* === VARIÁVEIS === */
:root {
  /* Fundo */
  --bg-0:     #05070D;
  --bg-1:     #090C18;
  --bg-2:     #0D1021;
  --bg-card:  #0F1424;
  --bg-ch:    #141929;

  /* Ouro */
  --gold:         #C9A55A;
  --gold-lt:      #E2C07D;
  --gold-dim:     rgba(201, 165, 90, 0.10);
  --gold-border:  rgba(201, 165, 90, 0.22);

  /* Texto */
  --txt-1: #EDE8DE;
  --txt-2: #8A93AC;
  --txt-3: #46506A;

  /* Bordas */
  --border:   rgba(255, 255, 255, 0.055);
  --border-g: rgba(201, 165, 90, 0.22);

  /* Tipografia */
  --font-d: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-b: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-h:  72px;
  --r:      6px;
  --r-lg:   12px;
  --max-w:  1140px;

  /* Transições */
  --t:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --ts: 0.6s  cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-0);
  color: var(--txt-1);
  font-family: var(--font-b);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-weight: 400;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; transition: color var(--t); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

button {
  font-family: var(--font-b);
  cursor: pointer;
}

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 100px 0; }

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

.section-label {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--txt-1);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.body-text {
  font-size: 0.97rem;
  color: var(--txt-2);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* === ANIMAÇÃO REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === BOTÕES === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.9rem;
  border-radius: var(--r);
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  border: none;
  transition: all var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #05070D;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 165, 90, 0.32);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--ts), box-shadow var(--ts), border-color var(--t);
}

.navbar.scrolled {
  background: rgba(5, 7, 13, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-d);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--txt-1);
  letter-spacing: -0.025em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

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

.nav-links a {
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--txt-2);
  border-radius: var(--r);
  transition: all var(--t);
}
.nav-links a:hover { color: var(--txt-1); background: rgba(255,255,255,0.045); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold-dim) !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold-border) !important;
  padding: 0.45rem 1.2rem !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: #05070D !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--txt-1);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Fundo decorativo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,165,90,0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,165,90,0.042) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 20%, transparent 65%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,165,90,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Conteúdo */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 2rem 7rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--txt-1);
  margin-bottom: 1.6rem;
}
.hero-title .gold { color: var(--gold); }
.hero-title .italic { font-style: italic; font-weight: 600; }

.hero-role {
  font-family: var(--font-d);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 300;
  color: var(--txt-2);
  margin-bottom: 1.1rem;
  font-style: italic;
}

.hero-desc {
  max-width: 500px;
  font-size: 0.97rem;
  color: var(--txt-2);
  line-height: 1.75;
  margin-bottom: 2.6rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}

/* Estatísticas */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat-n {
  display: block;
  font-family: var(--font-d);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--txt-3);
  margin-top: 0.3rem;
}
.stat-sep {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* Indicador de scroll */
.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 1;
}
.hero-scroll-indicator span {
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt-3);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  45%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* =====================================================
   ABOUT
   ===================================================== */
.about { background: var(--bg-1); }

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5.5rem;
  align-items: center;
}

/* Coluna de imagem */
.about-image-col { display: flex; justify-content: center; }

.about-img-frame {
  position: relative;
  width: 320px;
  max-width: 100%;
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--txt-3);
  /*
    Para adicionar sua foto, substitua esta div por:
    <img src="images/sua-foto.jpg" alt="Seu Nome"
         style="width:100%;height:100%;object-fit:cover;border-radius:12px;" />
  */
}
.img-placeholder svg {
  width: 55%;
  height: auto;
}

.img-border-accent {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 110px;
  height: 110px;
  border: 2px solid var(--gold-border);
  border-radius: var(--r-lg);
  z-index: -1;
}

/* Coluna de texto */
.info-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin: 1.75rem 0;
}
.info-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.info-key {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--txt-3);
  min-width: 100px;
  flex-shrink: 0;
}
.info-val {
  font-size: 0.9rem;
  color: var(--txt-1);
}
.info-val.available {
  color: #4ADE80;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* =====================================================
   SKILLS
   ===================================================== */
.skills { background: var(--bg-0); }

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

.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color var(--t), transform var(--t);
}
.skill-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}

.skill-cat {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--txt-1);
  padding-bottom: 1rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid var(--border);
}

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

.tag {
  padding: 0.38rem 0.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--txt-2);
  transition: all var(--t);
}
.tag:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-dim);
}

/* =====================================================
   PROJECTS
   ===================================================== */
.projects { background: var(--bg-1); }

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

.proj-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  overflow: hidden;
  transition: all var(--t);
}
.proj-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.proj-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.42);
}
.proj-card:hover::after { opacity: 1; }

.proj-num {
  position: absolute;
  top: 0.8rem; right: 1.2rem;
  font-family: var(--font-d);
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.028);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.proj-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 0.9rem; }

.ptag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 0.22rem 0.6rem;
  border-radius: 3px;
}

.proj-title {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--txt-1);
  margin-bottom: 0.7rem;
  line-height: 1.25;
}

.proj-desc {
  font-size: 0.88rem;
  color: var(--txt-2);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

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

.plink {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gold);
  transition: letter-spacing var(--t);
}
.plink:hover { letter-spacing: 0.015em; }

.plink-sec { color: var(--txt-3); }
.plink-sec:hover { color: var(--txt-2); }

/* =====================================================
   EXPERIENCE / TIMELINE
   ===================================================== */
.experience { background: var(--bg-0); }

.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--gold) 0%,
    rgba(201,165,90,0.3) 60%,
    transparent 100%
  );
}

.tl-item {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.tl-item:last-child { border-bottom: none; }

.tl-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 2.8rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-0);
  box-shadow: 0 0 14px rgba(201,165,90,0.55);
  transform: translateX(-4.5px);
}

.tl-meta { padding-top: 0.3rem; }

.tl-date {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.tl-co {
  display: block;
  font-size: 0.82rem;
  color: var(--txt-3);
}

.tl-title {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--txt-1);
  margin-bottom: 0.7rem;
}
.tl-desc {
  font-size: 0.88rem;
  color: var(--txt-2);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.tl-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.tl-stack span {
  font-size: 0.73rem;
  color: var(--txt-3);
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 3px;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact { background: var(--bg-1); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5.5rem;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t);
}
.contact-item:hover {
  border-color: var(--gold-border);
  background: var(--bg-ch);
  transform: translateX(5px);
}

.c-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}
.c-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--txt-3);
  margin-bottom: 0.2rem;
}
.c-value {
  font-size: 0.88rem;
  color: var(--txt-1);
}

/* Formulário */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
}

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

.field { display: flex; flex-direction: column; gap: 0.45rem; }

.field label {
  font-size: 0.73rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--txt-2);
}

.field input,
.field textarea {
  background: var(--bg-0);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.8rem 1rem;
  color: var(--txt-1);
  font-family: var(--font-b);
  font-size: 0.92rem;
  width: 100%;
  transition: all var(--t);
  resize: vertical;
  -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--txt-3); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-2);
  box-shadow: 0 0 0 3px rgba(201,165,90,0.1);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 600;
  color: var(--txt-1);
}
.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--txt-3);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}
.footer-nav a {
  font-size: 0.84rem;
  color: var(--txt-2);
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--txt-3);
}

/* =====================================================
   RESPONSIVO — TABLET (≤ 1024px)
   ===================================================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-col { justify-content: flex-start; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

/* =====================================================
   RESPONSIVO — MOBILE (≤ 768px)
   ===================================================== */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Navbar mobile */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(5, 7, 13, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.2rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t), transform var(--t);
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .nav-links a {
    width: 100%;
    padding: 0.75rem 1rem;
    display: block;
    border-radius: var(--r);
  }
  .nav-cta {
    margin-top: 0.4rem;
    text-align: center;
  }

  /* Hero mobile */
  .hero-content {
    padding: calc(var(--nav-h) + 2rem) 1.5rem 5rem;
  }

  .hero-title { font-size: clamp(3.5rem, 14vw, 6rem); }

  .hero-stats { gap: 1.6rem; }
  .stat-n { font-size: 2.1rem; }
  .stat-sep { display: none; }

  .hero-scroll-indicator { display: none; }

  /* Skills */
  .skills-grid { grid-template-columns: 1fr; }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }

  /* Timeline */
  .tl-item { grid-template-columns: 1fr; gap: 0.4rem; }
  .tl-meta { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
  .tl-item::before { top: 0.7rem; }

  /* Footer */
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}

/* =====================================================
   RESPONSIVO — SMALL MOBILE (≤ 480px)
   ===================================================== */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .hero-content { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .about-img-frame { width: 100%; }

  .contact-form-wrap { padding: 1.75rem 1.25rem; }

  .section-title { font-size: clamp(1.9rem, 8vw, 2.5rem); }
}

/* =====================================================
   ESTADOS DE FOCO (acessibilidade)
   ===================================================== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r);
}

/* =====================================================
   SELEÇÃO DE TEXTO
   ===================================================== */
::selection {
  background: rgba(201, 165, 90, 0.25);
  color: var(--txt-1);
}

/* =====================================================
   SCROLLBAR (Webkit)
   ===================================================== */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--txt-3); }
