:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #090909;
  color: #eee;
  accent-color: #b38b59;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #b38b59;
  color: #111;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  z-index: 1000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(179, 139, 89, 0.06), transparent 28%),
    linear-gradient(180deg, #0a0a0a 0%, #060606 100%);
  color: #f5f1eb;
}

/* img {
  display: block;
  max-width: 100%;
} */

a {
  color: #f4e7d8;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: #b38b59;
}

.page-shell {
  width: 100%;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: grid;
  gap: 12px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b38b59, #7b6041);
  border-radius: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  color: rgba(229, 214, 196, 0.8);
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.subtitle,
.note,
.contact-list,
.feature-list,
.card p {
  color: rgba(229, 214, 196, 0.86);
}

.site-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(179, 139, 89, 0.14);
  outline: 2px solid #b38b59;
  outline-offset: 2px;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #eee;
  padding: 10px 16px;
  border-radius: 12px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 60px 0;
}

.hero-eyebrow {
  margin-bottom: 18px;
}

.hero h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.hero p {
  max-width: 48rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  color: #fff;
}

.button-primary {
  background: #b38b59;
  color: #111;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f5f1eb;
}

.hero-visual {
  /* padding: 10px; */
  position: relative;
  width: min(100%, 420px);
  justify-self: end;
}

.photo-frame {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(219, 233, 21, 0.7);
  border-radius: 32px;
  transform: rotate(-2deg);
  z-index: 0;
}

.profile-photo {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}

.sua-classe-de-imagem {
  /* Eixo X | Eixo Y | Desfoque | Cor da sombra */
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3); 
}

.section-content {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-header {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-header h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 12px;
}

.cards-grid,
.feature-list,
.contact-grid {
  display: grid;
  gap: 24px;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.feature-card,
.contact-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card h4,
.feature-card,
.contact-card {
  color: #fff;
}

.card p {
  margin-top: 18px;
}

.feature-list {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.feature-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(179, 139, 89, 0.7);
}

.feature-card::after {
  content: "→";
  float: right;
  color: #b38b59;
}

.note {
  margin-top: 18px;
  font-size: 0.95rem;
}

.section-dark {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 32px;
  padding: 48px;
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-list a {
  color: #f5f1eb;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(179, 139, 89, 0.08);
}

.contact-callout {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.site-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(229, 214, 196, 0.75);
}

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

  .hero {
    padding-top: 40px;
  }

  .hero-visual {
    justify-self: stretch;
  }
}

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

.skill-item {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.skill-item h4 {
  color: #fff;
  margin-bottom: 12px;
}

.skill-item p {
  color: rgba(229, 214, 196, 0.86);
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .site-header {
    align-items: stretch;
  }

  .site-nav {
    flex-direction: column;
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
  }

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