@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;600;800&display=swap');

:root {
  /* Primary Colors from Palette */
  --mist: #DEEBEE;
  --black: #000000;
  --abyss: #3F5286;
  --abyss-deep: #000930;

  /* Secondary Colors */
  --carbon: #353C43;
  --slate: #40424D;
  --slate-light: #9599B3;

  /* UI Tokens */
  --bg: var(--black);
  --card-bg: rgba(53, 60, 67, 0.3);
  /* Carbon with transparency */
  --card-border: rgba(222, 235, 238, 0.1);
  /* Mist with transparency */
  --text: var(--mist);
  --text-muted: var(--slate-light);
  --accent: var(--abyss);
  --glass: rgba(255, 255, 255, 0.03);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Resume System Tokens */
  --glass-bg: rgba(13, 14, 18, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --accent-bright: #8ea8ff;
  --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  --card-radius-lg: 24px;
}

/* ── KPI Components ── */
.kpi-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .kpi-section {
    grid-template-columns: repeat(4, 1fr);
  }
}

.kpi-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.kpi-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-bright);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.kpi-num {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  display: block;
  margin-bottom: 0.3rem;
  color: #fff;
}

.kpi-txt {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 0% 0%, var(--abyss-deep) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, var(--carbon) 0%, transparent 40%);
  background-size: 200% 200%;
  animation: bgBreathing 15s ease infinite;
  background-attachment: fixed;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

@keyframes bgBreathing {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.site-header {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.90); /* Fundo sólido sempre visível */
  border-bottom: 1px solid var(--card-border);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--mist), var(--abyss));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--mist);
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  border: 1px solid var(--card-border);
}

.lang-opt {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

.lang-opt:hover {
  color: var(--mist);
}

.lang-opt.active {
  color: var(--mist);
  background: var(--abyss);
}

.lang-divider {
  color: var(--card-border);
  font-size: 0.8rem;
}

/* Hero */
.hero {
  padding: 8rem 0 4rem;
  text-align: center;
}

.hero h2 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--mist);
}

.hero p {
  color: var(--text-muted);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Sections */
.projects-section {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 3rem;
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
}

.section-header h3 {
  font-size: 2rem;
  color: var(--mist);
}

.section-header p {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Carousel container Wrapper */
.carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* Horizontal Carousel Grid (Scoped) */
.carousel-container .projects-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 2.5rem;
  padding: 1.5rem 0 3.5rem;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-container .projects-grid::-webkit-scrollbar {
  display: none;
}

/* Vertical Stack Grid (Standard) */
.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1.5rem 0;
  width: 100%;
}


.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 100;
  width: 56px;
  height: 56px;
  background: rgba(13, 14, 18, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.carousel-container:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: var(--abyss);
  border-color: var(--mist);
  box-shadow: 0 0 20px rgba(63, 82, 134, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: -28px; }
.carousel-btn.next { right: -28px; }

/* Fade effect for indication */
.carousel-container::before,
.carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }
  .carousel-container::before,
  .carousel-container::after {
    width: 50px;
  }
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }
}


/* Cards */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-container .card {
  flex: 0 0 88%; /* Mobile carrossel */
  width: auto;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(63, 82, 134, 0.2);
}

.card-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  background: #000;
}

.card-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Garante que a imagem apareça inteira */
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 768px) {
  .card {
    flex-direction: row;
    align-items: stretch;
  }

  .carousel-container .card {
    flex: 0 0 900px; /* Largura otimizada para legibilidade e visual */
  }


  .card-preview {
    width: 40%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }


  .card-content {
    flex: 1;
    padding: 2rem;
  }


  /* Ajuste do ícone no modo horizontal */
  .card-icon {
    margin-bottom: 1rem;
    width: 40px;
    height: 40px;
  }
}

.card:hover .card-preview img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card.placeholder-card {
  opacity: 0.6;
  border: 1px dashed var(--slate);
  background: transparent;
  padding: 1.5rem;
}


.card-icon {
  width: 48px;
  height: 48px;
  background: var(--abyss);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--mist);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--mist);
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

.card-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--abyss);
  color: var(--mist);
  border: none;
}

.btn-primary:after {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
  z-index: -1;
  transform: skewX(-20deg);
}

.btn-primary:hover {
  background: #4f64a0;
  box-shadow: 0 4px 15px rgba(63, 82, 134, 0.5);
}

.btn-primary:hover:after {
  left: 150%;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text-muted);
}

.btn-secondary:hover {
  border-color: var(--mist);
  color: var(--mist);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: var(--transition);
}

.modal.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: #0d0e12;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  width: min(1000px, 95vw);
  max-height: 90vh;
  padding: 2.5rem;
  overflow-y: auto;
  z-index: 1001;
}

.modal-content.bi-embed {
  width: min(1400px, 95vw);
  max-height: 95vh;
  padding: 1.5rem 2rem;
}

.modal-content.bi-embed .modal-body {
  margin-top: 1rem;
}

.modal-content.bi-embed .modal-body iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 78vh;
  display: block;
}

.bi-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--carbon, #0d0d0d);
  border-radius: 8px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bi-loader.hidden {
  opacity: 0;
}

.bi-loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent, #4f8ef7);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.bi-loader p {
  font-size: 0.85rem;
  color: var(--text-muted, #8899aa);
  margin: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  margin-top: 1.5rem;
  flex-grow: 1;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
}

@media (max-width: 480px) {
  .modal-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  
  .modal-actions .btn {
    width: 100%;
    text-align: center;
  }
}


/* Estilo base para iframes em outros modais (não BI) */
.modal-body:not(.bi-embed) iframe {
  width: 100%;
  height: 65vh;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  display: block;
}



.modal-image {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  margin-bottom: 2rem;
  display: block;
}

.workflow-viewer {
  background: var(--black);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--card-border);
}

/* Confidential Section Styles */
.confidential-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.confidential-card {
  background: linear-gradient(145deg, rgba(53, 60, 67, 0.4), rgba(0, 0, 0, 0.6));
  border: 1px dashed var(--slate);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  /* Adicionado transition */
}

.confidential-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--mist);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6), 0 0 24px rgba(63, 82, 134, 0.4);
}

.confidential-card::before {
  content: "RESTRICTED CONTENT";
  position: absolute;
  top: 10px;
  right: -30px;
  background: var(--abyss);
  color: var(--mist);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 40px;
  transform: rotate(45deg);
  opacity: 0.3;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag-cloud span {
  background: var(--carbon);
  color: var(--mist);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  border: 1px solid var(--card-border);
  transition: var(--transition);
  position: relative;
}

.tag-cloud span.blurred {
  filter: blur(5px);
  user-select: none;
  opacity: 0.6;
  cursor: pointer;
  transition: var(--transition);
}

.tag-cloud span.blurred:hover {
  filter: blur(0);
  opacity: 1;
  border-color: var(--abyss);
  background: rgba(63, 82, 134, 0.1);
}

.tag-cloud span.revealed {
  filter: blur(0);
  opacity: 1;
  border-color: var(--abyss);
  background: rgba(63, 82, 134, 0.2);
}

.tag-cloud span:hover {
  background: var(--abyss);
  border-color: var(--mist);
}

/* Footer */
.site-footer {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--card-border);
  margin-top: 4rem;
}

.contact-options {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.contact-button:hover::before {
  opacity: 1;
}

.contact-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.contact-button.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.contact-button.whatsapp:hover {
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.contact-button.email {
  background: linear-gradient(135deg, #0077FF, #0044BB);
  box-shadow: 0 10px 20px rgba(0, 119, 255, 0.2);
}

.contact-button.email:hover {
  box-shadow: 0 15px 35px rgba(0, 119, 255, 0.4);
}

/* ── Skill Bars ── */
.skill-bars {
  margin-top: 1.5rem;
}

.skill-bar-item {
  margin-bottom: 1.2rem;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
}

.skill-name-label {
  color: #fff;
}

.skill-progress-bg {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.skill-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mist), var(--abyss));
  border-radius: 10px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 0 15px rgba(222, 235, 238, 0.1);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .section-header h3 {
    font-size: 1.5rem;
  }

  .modal-content {
    padding: 1.5rem;
  }
}

/* 
  Animations & Utilities 
  Classe base para revelar no Scroll
*/
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delay Utilities */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* 
  Landing Page Styles 
*/
.landing-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Prevent scroll for the glow effect */
  position: relative;
}

.mouse-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(63, 82, 134, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
  filter: blur(80px);
}

.landing-container {
  width: 100%;
  max-width: 900px;
  padding: 2rem;
  margin: 0 auto;
  perspective: 1000px; /* Para o efeito 3D Tilt */
}

.landing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out, box-shadow 0.3s ease;
}

.landing-card:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8), 0 0 40px rgba(63, 82, 134, 0.3);
}

@media (min-width: 768px) {
  .landing-card {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
    padding: 4rem;
  }
}

.profile-photo-wrapper {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid var(--abyss);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(63, 82, 134, 0.5);
  margin-bottom: 2rem;
  background-color: var(--carbon);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .profile-photo-wrapper {
    margin-bottom: 0;
    width: 240px;
    height: 240px;
  }
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes floating {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.fallback-icon {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.profile-content {
  flex-grow: 1;
}

.landing-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--mist);
  margin-bottom: 0.5rem;
}

.landing-subtitle {
  font-size: 1.25rem;
  color: var(--abyss);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.landing-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.landing-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .landing-actions {
    justify-content: flex-start;
  }
}

/* 
  Resume / Curriculo Page Styles 
*/
.resume-main {
  padding: 4rem 0;
}

.resume-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-border);
}

@media (min-width: 768px) {
  .resume-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.resume-title {
  font-size: 2.5rem;
  color: var(--mist);
}

.resume-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.resume-section {
  margin-bottom: 2rem;
  padding: 2.5rem;
}

.resume-section h3 {
  font-size: 1.5rem;
  color: var(--mist);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.resume-section h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--abyss);
  border-radius: 50%;
}

.resume-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(222, 235, 238, 0.05);
}

.resume-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.resume-item h4 {
  font-size: 1.25rem;
  color: var(--mist);
  margin-bottom: 0.25rem;
}

.resume-date {
  font-size: 0.9rem;
  color: var(--abyss);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.resume-item ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.resume-item li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.resume-item li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--abyss);
}

.animate-in {
  animation: fadeInDown 1s ease-out forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}