/* ── Fontes locais ─────────────────────────────────────────── */
@font-face {
  font-family: 'Priestacy';
  src: url('fonts/Priestacy.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter_18pt-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter_18pt-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter_18pt-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter_18pt-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter_18pt-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1e2d4d;
  --navy2:  #162240;
  --gold:   #c9956a;
  --gold2:  #e0aa7a;
  --light:  #f7f5f2;
  --muted:  #f0ede8;
  --text:   #2a2a2a;
  --text2:  #666;
  --white:  #ffffff;
  --radius: 8px;
  --trans:  .3s ease;
  --float-bottom: 2rem;
}

html { scroll-behavior: smooth; }

/* Skip to content */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-to-content:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
  background: var(--gold);
  color: var(--white);
  padding: .6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  z-index: 9999;
  text-decoration: none;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }

h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-family: 'Playfair Display', serif;
  color: var(--white);
}
h1 em { font-style: italic; color: var(--gold); }

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 2.5rem;
}

h3 { font-size: 1.15rem; margin-bottom: .3rem; }
h4 { font-size: 1rem; margin-bottom: .2rem; }

.section-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-tag.light { color: var(--gold2); }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

.section { padding: 6rem 0; }
.section-dark  { background: var(--navy); color: var(--white); }
.section-muted { background: var(--muted); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.two-col-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Navbar ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans);
}
#navbar.scrolled {
  background: var(--navy2);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: .9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Priestacy', serif;
  font-weight: normal;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: .04em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--gold2); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: .45rem 1.1rem;
  border-radius: 4px;
  transition: background var(--trans);
}
.nav-links .nav-cta:hover { background: var(--gold2); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,149,106,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,149,106,.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 0 2rem;
}

.hero-content {
  flex: 1;
}

.hero-tag {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-subtitle {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 1rem 0 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero-desc strong { color: var(--gold2); }

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

.hero-photo {
  flex-shrink: 0;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(201,149,106,.4);
  box-shadow: 0 0 0 12px rgba(201,149,106,.08), 0 20px 60px rgba(0,0,0,.3);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 960px) {
  .hero-inner { flex-direction: column-reverse; align-items: flex-start; }
  .hero-photo { width: 200px; height: 200px; align-self: flex-start; margin-top: 3rem; }
}
@media (max-width: 640px) {
  .hero-photo { width: 160px; height: 160px; }
}

.hero-stats {
  max-width: 1140px;
  margin: 4rem auto 0;
  width: 100%;
  display: flex;
  gap: 12px;
  position: relative;
  padding: 0 2rem;
}
.stat {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.8rem 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.stat-num {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.stat-label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .75rem 1.8rem;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold2); border-color: var(--gold2); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover { border-color: var(--white); }

/* ── About ────────────────────────────────────────────────── */
blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.8rem 0;
  background: var(--muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}
blockquote p { font-style: italic; color: var(--text); margin-bottom: .4rem; }
blockquote footer { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

.about-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.meta-item { display: flex; flex-direction: column; gap: .1rem; }
.meta-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text2); }

/* ── Skills ───────────────────────────────────────────────── */
.skill-list { display: flex; flex-direction: column; gap: 1rem; }
.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .35rem;
  font-size: .9rem;
  font-weight: 500;
}
.skill-level {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .15rem .55rem;
  border-radius: 20px;
}
.skill-level.expert  { background: var(--navy); color: var(--white); }
.skill-level.advanced { background: rgba(30,45,77,.12); color: var(--navy); }

.skill-bar {
  height: 4px;
  background: #e0dbd4;
  border-radius: 2px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.skill-fill.animated { transform: scaleX(1); }

.tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  background: var(--muted);
  border: 1px solid #ddd8d0;
  padding: .3rem .8rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text);
}

/* ── Services ─────────────────────────────────────────────── */
.section-dark h2 { color: var(--white); }
.section-dark p  { color: rgba(255,255,255,.7); }

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

.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans);
}
.service-card:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }

.service-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.service-card h3 { color: var(--white); margin-bottom: .5rem; }
.service-card p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; margin-bottom: 4rem; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: 116px;
  top: 2.5rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-date { padding-top: .2rem; }
.date-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .3rem .7rem;
  border-radius: 4px;
  margin-bottom: .4rem;
}
.date-location { display: block; font-size: .78rem; color: var(--text2); }

.timeline-body h3 { color: var(--navy); font-size: 1.05rem; }
.timeline-company { color: var(--gold); font-size: .85rem; font-weight: 600; margin-bottom: .5rem; }

/* ── Strengths ────────────────────────────────────────────── */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.strength-card {
  background: var(--light);
  border: 1px solid #e8e3db;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: box-shadow var(--trans);
}
.strength-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }

.strength-icon { font-size: 1.2rem; color: var(--gold); display: block; margin-bottom: .6rem; }
.strength-card h4 { font-size: .95rem; margin-bottom: .4rem; color: var(--navy); }
.strength-card p { font-size: .83rem; color: var(--text2); line-height: 1.55; }

/* ── Soft Skills ──────────────────────────────────────────── */
.softskill-list { display: flex; flex-direction: column; gap: .6rem; }
.softskill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .8rem 1rem;
  background: var(--white);
  border: 1px solid #e0dbd4;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
}
.softskill-badge {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ── Interests ────────────────────────────────────────────── */
.interest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-top: .8rem; }
.interest-item {
  background: var(--white);
  border: 1px solid #e0dbd4;
  border-radius: var(--radius);
  padding: .8rem .6rem;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  color: var(--navy);
}
.interest-item span { font-size: 1.2rem; }

/* ── Education ────────────────────────────────────────────── */
.edu-list { display: flex; flex-direction: column; gap: 1.5rem; }
.edu-item { display: flex; gap: 1rem; align-items: flex-start; }
.edu-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .4rem;
}
.edu-item h4 { font-size: .95rem; color: var(--navy); margin-bottom: .15rem; }
.edu-item p  { font-size: .82rem; color: var(--text2); }

/* ── Clients ──────────────────────────────────────────────── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.client-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid #e8e3db;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--trans);
  background: var(--light);
}
.client-card:hover { border-color: var(--gold); background: var(--white); transform: translateX(3px); }

.client-num {
  font-size: .68rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,149,106,.12);
  border-radius: 4px;
  padding: .25rem .5rem;
  letter-spacing: .05em;
  flex-shrink: 0;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-text h2 { color: var(--white); }
.contact-text > p { color: rgba(255,255,255,.65); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  transition: color var(--trans);
}
.contact-link:hover { color: var(--gold2); }
.contact-icon { font-size: 1rem; }

/* Form */
.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); }

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  padding: .75rem 1rem;
  font-size: .9rem;
  color: var(--white);
  font-family: inherit;
  transition: border-color var(--trans);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
}

.form-note { font-size: .85rem; color: var(--gold2); min-height: 1.2em; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.8rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-philosophy em { color: rgba(255,255,255,.3); }

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .two-col, .two-col-equal, .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .about-meta { grid-template-columns: 1fr; }
  .timeline::before { left: 0; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 1.5rem; }
  .timeline-item::after { left: -4px; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero-stats { flex-direction: column; gap: 8px; }
  .stat:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .stat:last-child  { border-radius: 0 0 var(--radius) var(--radius); }
  .services-grid, .strengths-grid, .clients-grid { grid-template-columns: 1fr; }
  .interest-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 50vw;
    height: 100vh;
    background: var(--navy2);
    padding: 5rem 1.5rem 2rem;
    gap: 1.5rem;
    align-items: flex-end;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 999;
    box-shadow: -4px 0 24px rgba(0,0,0,.35);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { text-align: right; font-size: 1.1rem; }
  .nav-links .nav-cta { text-align: center; }
  .burger { display: flex; z-index: 1001; }
}

/* ── Nav overlay (mobile) ─────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 998;
  opacity: 0;
  transition: opacity .35s ease;
}
@media (max-width: 640px) {
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.active { opacity: 1; pointer-events: auto; }
}

/* ── Footer privacy link ──────────────────────────────────── */
.footer-privacy {
  color: rgba(255,255,255,.4);
  font-size: .82rem;
  text-decoration: none;
}
.footer-privacy:hover { color: var(--gold); }

/* ── Cookie banner ────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy2);
  border-top: 1px solid rgba(201,149,106,.25);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 900;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  transform: translateY(0);
  transition: transform .4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; line-height: 1.5; }
#cookie-banner a { color: var(--gold); }
#cookie-banner a:hover { color: var(--gold2); }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; }

#cookie-accept,
#cookie-reject {
  border: none;
  padding: .5rem 1.2rem;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--trans);
}
#cookie-accept { background: var(--gold); color: var(--white); }
#cookie-accept:hover { background: var(--gold2); }
#cookie-reject { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
#cookie-reject:hover { background: rgba(255,255,255,.18); }

/* ── WhatsApp button ──────────────────────────────────────── */
#whatsapp-btn {
  position: fixed;
  bottom: var(--float-bottom, 2rem);
  right: 5rem;
  width: 2.4rem;
  height: 2.4rem;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  z-index: 500;
  transition: background var(--trans), transform var(--trans);
}
#whatsapp-btn:hover { background: #1ebe5d; transform: scale(1.08); }

/* ── CV download button ────────────────────────────────────── */
.btn-cv {
  font-size: .85rem;
  padding: .6rem 1.1rem;
  opacity: .85;
}
.btn-cv:hover { opacity: 1; }

/* ── Back to top ───────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: var(--float-bottom, 2rem);
  right: 2rem;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
  pointer-events: none;
  z-index: 500;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover { background: var(--gold2); }
