:root {
  /* Paleta principal */
  --cv-bg: radial-gradient(
      circle at top left,
      rgba(255, 148, 8, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 148, 8, 0.22),
      transparent 60%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(139, 0, 35, 0.55),
      transparent 65%
    ),
    linear-gradient(180deg, #050309 0%, #2b0615 40%, #0a0206 100%);

  --cv-orange: #ff9408;
  --cv-orange-soft: rgba(255, 148, 8, 0.5);
  --cv-wine: #530f1a;
  --cv-wine-deep: #2b0615;
  --cv-black-soft: #07030d;
  --cv-text-main: #ffffff;
  --cv-text-muted: rgba(255, 255, 255, 0.78);

  --cv-surface-glass: rgba(7, 3, 13, 0.72);
  --cv-surface-alt: rgba(7, 3, 13, 0.9);
  --cv-border-soft: rgba(255, 255, 255, 0.08);

  --cv-radius-xl: 24px;
  --cv-radius-xxl: 999px;
  --cv-shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.75);
  --cv-shadow-hero: 0 30px 90px rgba(0, 0, 0, 0.9);

  --cv-header-height: 76px;
  --cv-page-max: 1200px;

  --cv-font-heading: "Space Grotesk", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cv-font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--cv-font-body);
  color: var(--cv-text-main);
  background: var(--cv-bg);
  background-attachment: fixed;
}

.cv-page {
  max-width: 1440px;
  margin: 0 auto;
}

.cv-container {
  max-width: var(--cv-page-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */

.cv-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  background: linear-gradient(
    90deg,
    rgba(5, 3, 9, 0.95),
    rgba(43, 6, 21, 0.96)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--cv-header-height);
}

.cv-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cv-brand-tag {
  font-family: var(--cv-font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cv-text-muted);
}

.cv-brand-name {
  font-family: var(--cv-font-heading);
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cv-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--cv-font-body);
}

.cv-nav-link {
  position: relative;
  font-size: 15px;
  text-decoration: none;
  color: var(--cv-text-main);
  cursor: pointer;
  padding-bottom: 4px;
  transition: opacity 0.18s ease;
}

/* Linha animada padrão */
.cv-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--cv-orange),
    rgba(255, 148, 8, 0.2)
  );
  transition: width 0.22s ease;
}

.cv-nav-link:hover {
  opacity: 0.82;
}

.cv-nav-link:hover::after,
.cv-nav-link.is-active::after {
  width: 100%;
}

/* CORREÇÃO DO BOTÃO FALE COMIGO (Sem risco embaixo) */
.cv-nav-link.cv-nav-cta::after {
  display: none !important;
  content: none;
}

.cv-nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 148, 8, 0.18),
      transparent 55%
    ),
    var(--cv-black-soft);
  border: 1px solid rgba(255, 148, 8, 0.7);
  font-family: var(--cv-font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

.cv-nav-cta img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.cv-nav-cta i {
  font-size: 14px;
  color: var(--cv-orange);
}

.cv-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* HERO */

.cv-section {
  padding: 80px 0;
  position: relative;
}

.cv-section--tight {
  padding: 64px 0;
}

.cv-hero {
  min-height: calc(100vh - var(--cv-header-height));
  display: flex;
  align-items: center;
}

.cv-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.cv-hero-left {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.cv-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cv-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 3, 9, 0.72);
  font-family: var(--cv-font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cv-text-muted);
}

.cv-chip i {
  font-size: 11px;
  color: var(--cv-orange-soft);
}

.cv-hero-name {
  font-family: var(--cv-font-heading);
  font-size: clamp(44px, 5.4vw, 68px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cv-hero-subtitle {
  font-family: var(--cv-font-body);
  font-size: 22px;
  color: var(--cv-text-muted);
}

.cv-hero-copy {
  font-size: 15px;
  max-width: 480px;
  color: var(--cv-text-muted);
  line-height: 1.7;
}

.cv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.cv-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  border-radius: 16px;
  border: 1px solid #000;
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 148, 8, 0.25),
      transparent 55%
    ),
    #000;
  color: #fff;
  font-family: var(--cv-font-body);
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--cv-shadow-hero);
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
  text-decoration: none;
}

.cv-btn-primary img {
  margin-left: 8px;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.cv-btn-primary i {
  margin-left: 8px;
  font-size: 18px;
  color: var(--cv-orange);
}

.cv-btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95);
  opacity: 0.97;
}

.cv-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  background: rgba(7, 3, 13, 0.5);
  font-size: 13px;
  text-decoration: none;
  color: var(--cv-text-muted);
  font-family: var(--cv-font-body);
}

.cv-btn-ghost i {
  font-size: 14px;
  color: var(--cv-orange-soft);
}

.cv-hero-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.cv-hero-social-label {
  font-size: 12px;
  color: var(--cv-text-muted);
}

.cv-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 3, 13, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  overflow: hidden;
}

.cv-social-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.cv-social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
  background: #050309;
}

/* HERO RIGHT - Ajustes de alinhamento */

.cv-hero-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.cv-hero-badge {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 40px;
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 148, 8, 0.4),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 100%,
      rgba(139, 0, 35, 0.65),
      transparent 65%
    ),
    linear-gradient(145deg, #12030d, #4a071c);
  box-shadow: var(--cv-shadow-hero);
  isolation: isolate; /* Permite que o blur funcione sem cortar elementos que vazam */
}

.cv-hero-badge::before,
.cv-hero-badge::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.8;
  mix-blend-mode: screen;
  z-index: -1;
  animation: cv-orb 14s linear infinite;
}

.cv-hero-badge::before {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--cv-orange) 0%, transparent 65%);
  top: -80px;
  left: -60px;
}

.cv-hero-badge::after {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #ff4a5a 0%, transparent 70%);
  bottom: -60px;
  right: -40px;
  animation-direction: reverse;
}

.cv-hero-circle {
  position: absolute;
  inset: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffcf8b, #5b050f 70%);
  mix-blend-mode: normal;
  opacity: 0.9;
}

.cv-hero-arrow {
  position: absolute;
  inset: 36px 12px 90px 90px;
  border-radius: 32px;
  border: 4px solid transparent;
  border-image: linear-gradient(
      90deg,
      var(--cv-orange),
      rgba(255, 148, 8, 0.1)
    )
    1;
  border-left: none;
  border-bottom: none;
  transform-origin: 0% 100%;
  transform: rotate(35deg);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.cv-hero-arrow::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -18px;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--cv-orange);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.9);
}

/* FOTO DO HERO - ALINHAMENTO CORRIGIDO */
.cv-hero-photo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Ocupa todo o quadrado */
  
  display: flex;
  align-items: flex-end; /* Alinha a base da imagem com a base do badge */
  justify-content: center; /* Centraliza horizontalmente */
  
  overflow: visible; /* Deixa a cabeça sair pra fora se for alta */
  z-index: 5;
  animation: cv-float 9s ease-in-out infinite;
}

.cv-hero-photo img {
  height: 120%; /* Aumentado para criar efeito de profundidade (cabeça saindo) */
  width: auto;
  max-width: 140%; /* Previne que fique gigante lateralmente */
  
  object-fit: contain;
  object-position: bottom center; /* Garante que os pés/base fiquem no chão */
  
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

/* TAG CENTRALIZADA COM A FOTO */
.cv-hero-tag {
  position: absolute;
  left: 50%; /* Ponto de partida no meio */
  transform: translateX(-50%); /* Move para a esquerda para centralizar exato */
  bottom: 22px;
  
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(5, 3, 9, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  
  font-size: 11px;
  font-family: var(--cv-font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  
  display: inline-flex;
  align-items: center;
  gap: 6px;
  
  z-index: 10;
  white-space: nowrap; /* Evita quebra de linha */
}

.cv-hero-tag i {
  color: var(--cv-orange);
  font-size: 12px;
}

/* SECTION HEADERS */

.cv-section-heading {
  margin-bottom: 40px;
  text-align: left;
}

.cv-section-kicker {
  font-family: var(--cv-font-heading);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cv-orange-soft);
  margin-bottom: 8px;
}

.cv-section-title {
  font-family: var(--cv-font-heading);
  font-size: clamp(26px, 3vw, 32px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cv-section-subtitle {
  margin-top: 10px;
  font-size: 15px;
  color: var(--cv-text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ABOUT */

.cv-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: flex-start;
}

.cv-card {
  background: var(--cv-surface-glass);
  border-radius: var(--cv-radius-xl);
  border: 1px solid var(--cv-border-soft);
  box-shadow: var(--cv-shadow-soft);
  padding: 24px 26px;
}

.cv-card--muted {
  background: rgba(7, 3, 13, 0.86);
}

.cv-about-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cv-text-muted);
}

.cv-about-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.cv-about-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--cv-text-muted);
}

.cv-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  margin-top: 6px;
}

.cv-about-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.cv-metric {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 148, 8, 0.24),
      transparent 60%
    ),
    rgba(5, 3, 9, 0.9);
  font-family: var(--cv-font-body);
  font-size: 13px;
}

.cv-metric strong {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}

.cv-metric span {
  font-size: 11px;
  color: var(--cv-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* OPS SECTION */

.cv-ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
}

.cv-ops-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.cv-ops-item {
  display: flex;
  gap: 14px;
}

.cv-ops-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 148, 8, 0.35),
      transparent 60%
    ),
    #11020d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cv-orange);
  flex-shrink: 0;
}

.cv-ops-item h4 {
  font-family: var(--cv-font-heading);
  font-size: 16px;
  margin-bottom: 2px;
}

.cv-ops-item p {
  font-size: 14px;
  color: var(--cv-text-muted);
  line-height: 1.5;
}

.cv-ops-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cv-pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 3, 9, 0.88);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--cv-font-body);
  color: var(--cv-text-muted);
}

.cv-pill-label i {
  color: var(--cv-orange-soft);
  font-size: 12px;
}

.cv-ops-card {
  border-radius: 18px;
  padding: 16px 16px 18px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 148, 8, 0.2),
      transparent 55%
    ),
    linear-gradient(145deg, #050309, #330712);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--cv-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cv-ops-card h4 {
  font-family: var(--cv-font-heading);
  font-size: 15px;
}

.cv-ops-card p {
  font-size: 13px;
  color: var(--cv-text-muted);
}

.cv-ops-tag {
  font-size: 11px;
  font-family: var(--cv-font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.68);
}

/* SKILLS */

.cv-skills-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: flex-start;
}

.cv-skill-block {
  margin-bottom: 18px;
}

.cv-skill-title {
  font-family: var(--cv-font-heading);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
}

.cv-skill-text {
  font-size: 14px;
  color: var(--cv-text-muted);
  line-height: 1.6;
}

.cv-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cv-tag {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  background: rgba(7, 3, 13, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--cv-font-body);
}

.cv-tag i {
  font-size: 12px;
  color: var(--cv-orange-soft);
}

.cv-extra-list {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.cv-extra-item {
  font-size: 14px;
  color: var(--cv-text-muted);
}

/* CONTATO - ICONES LIMPOS E ALINHADOS */

.cv-contact {
  text-align: center;
}

.cv-contact-cta {
  margin-top: 16px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--cv-text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cv-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; /* Aumentei o espaçamento para ficar mais clean */
}

/* Wrapper para cada item de contato */
.cv-contact-item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Link do ícone (sem fundo quadrado) */
.cv-contact-icon {
  display: block;
  background: none; 
  box-shadow: none; 
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  text-decoration: none;
  width: auto;
  height: auto;
  border-radius: 0;
}

/* Tamanho padronizado e maior dos SVGs */
.cv-contact-icon img {
  width: 64px; 
  height: 64px;
  object-fit: contain;
  /* Sombra leve no ícone para destacar do fundo escuro */
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.cv-contact-icon:hover {
  transform: translateY(-6px) scale(1.1);
  background: none;
  box-shadow: none;
}

.cv-contact-label {
  font-size: 14px;
  color: var(--cv-text-muted);
  font-family: var(--cv-font-body);
  opacity: 0.8;
}

/* FOOTER */

.cv-footer {
  padding: 22px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
  margin-top: 40px;
}

.cv-footer-text {
  font-size: 15px;
  color: var(--cv-text-muted);
}

/* ANIMAÇÕES DE REVEAL */

.cv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cv-reveal.cv-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.cv-reveal--delay-1 {
  transition-delay: 0.12s;
}

.cv-reveal--delay-2 {
  transition-delay: 0.24s;
}

.cv-reveal--delay-3 {
  transition-delay: 0.36s;
}

/* KEYFRAMES */

@keyframes cv-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes cv-orb {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -14px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* RESPONSIVO */

@media (max-width: 1024px) {
  .cv-hero-inner,
  .cv-about-grid,
  .cv-ops-grid,
  .cv-skills-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cv-hero-right {
    order: -1;
    margin-bottom: 18px;
  }

  .cv-section-heading {
    text-align: left;
  }

  .cv-section-subtitle {
    max-width: none;
  }
}

@media (max-width: 768px) {
  :root {
    --cv-header-height: 64px;
  }

  .cv-header-inner {
    height: var(--cv-header-height);
  }

  .cv-nav {
    position: fixed;
    inset: var(--cv-header-height) 0 auto 0;
    background: rgba(5, 3, 9, 0.98);
    padding: 16px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .cv-nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .cv-nav-cta {
    align-self: stretch;
    justify-content: center;
  }

  .cv-nav-toggle {
    display: block;
  }

  .cv-brand-name {
    font-size: 18px;
  }

  .cv-brand-tag {
    font-size: 10px;
  }

  .cv-section {
    padding: 64px 0;
  }

  .cv-hero {
    padding-top: 48px;
  }

  .cv-hero-name {
    font-size: 34px;
  }

  .cv-hero-subtitle {
    font-size: 18px;
  }

  .cv-hero-copy {
    font-size: 13px;
  }

  .cv-hero-badge {
    width: 290px;
    height: 290px;
  }

  .cv-section-title {
    font-size: 24px;
  }

  .cv-hero-social {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .cv-hero-badge {
    width: 260px;
    height: 260px;
  }

  /* Ajuste da foto no mobile para continuar centrada */
  .cv-hero-photo img {
    height: 115%;
  }

  .cv-section {
    padding: 56px 0;
  }

  .cv-card,
  .cv-card--muted {
    padding: 20px 18px;
  }

  .cv-contact-row {
    gap: 16px;
  }
}