* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1e3a5f;
  --secondary: #0f2040;
  --accent: #000000;
  --text-dark: #1a1a1a;
  --text-medium: #4a5568;
  --text-light: #6b7280;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --border: 1px solid #e2e8f0;
  --border-light: 1px solid #f1f5f9;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 12px rgba(30, 58, 95, 0.1);
  --transition: all 0.3s ease;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

code {
  font-family: 'Courier New', monospace;
}

main {
  min-height: calc(100vh - 70px - 200px);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

button {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Responsive */
@media (max-width: 1024px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #9ca3af;
    --text-h: #f3f4f6;
    --bg: #16171d;
    --border: #2e303a;
    --code-bg: #1f2028;
    --accent: #c084fc;
    --accent-bg: rgba(192, 132, 252, 0.15);
    --accent-border: rgba(192, 132, 252, 0.5);
    --social-bg: rgba(47, 48, 58, 0.5);
    --shadow:
      rgba(0, 0, 0, 0.4) 0 10px 15px -3px, rgba(0, 0, 0, 0.25) 0 4px 6px -2px;
  }

  #social .button-icon {
    filter: invert(1) brightness(2);
  }
}

#root {
  width: 1126px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  border-inline: 1px solid var(--border);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

body {
  margin: 0;
}

h1,
h2 {
  font-family: var(--heading);
  font-weight: 500;
  color: var(--text-h);
}

h1 {
  font-size: 56px;
  letter-spacing: -1.68px;
  margin: 32px 0;
  @media (max-width: 1024px) {
    font-size: 36px;
    margin: 20px 0;
  }
}
h2 {
  font-size: 24px;
  line-height: 118%;
  letter-spacing: -0.24px;
  margin: 0 0 8px;
  @media (max-width: 1024px) {
    font-size: 20px;
  }
}
p {
  margin: 0;
}

code,
.counter {
  font-family: var(--mono);
  display: inline-flex;
  border-radius: 4px;
  color: var(--text-h);
}

code {
  font-size: 15px;
  line-height: 135%;
  padding: 4px 8px;
  background: var(--code-bg);
}
.navbar {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2040 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.navbar-logo {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 2px;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-logo span {
  color: #5eb3ff;
}

.navbar-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  background: #5eb3ff;
  transform: translateY(-2px);
  border-color: #5eb3ff;
}

.social-icon:hover img {
  filter: brightness(0) invert(0);
}

.menu-icon {
  display: none;
  color: white;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  height: auto;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 0.5rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .navbar-social {
    display: none;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: -100%;
    opacity: 1;
    transition: all 0.5s ease;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2040 100%);
    gap: 0;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 1;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: table;
    width: 100%;
    padding: 2rem;
    text-align: center;
  }

  .nav-link::after {
    background-color: #000000;
  }

  .navbar-container {
    padding: 0 1rem;
  }
}
.footer {
  background: #1a1a1a;
  color: #ecf0f1;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
  border-top: 2px solid #1e3a5f;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #5eb3ff;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #5eb3ff;
}

.footer-section p {
  color: #bdc3c7;
  margin: 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #1e3a5f;
}

.footer-section:has(.social-links) {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-section:has(.social-links) h4 {
  margin-bottom: 1rem;
  width: 100%;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
  width: 100%;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1e3a5f;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  padding: 8px;
  box-sizing: border-box;
}

.social-links a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.social-links a:hover {
  background: #0f2040;
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #333;
  text-align: center;
  color: #7f8c8d;
}

@media screen and (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer {
    padding: 2rem 1rem 1rem;
  }
}
.profile-section {
  padding: 3rem 2rem;
  background: white;
}

.profile-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.profile-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.profile-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-xs);\n  transition: transform 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.05);
}

.profile-info h2 {
  font-size: 2.5rem;
  margin: 0 0 0.5rem 0;
  color: #2c3e50;
}

.job-title {
  font-size: 1.3rem;
  color: #1e3a5f;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.location {
  color: #7f8c8d;
  font-size: 1rem;
  margin: 0 0 1.5rem 0;
}

.profile-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 0.3rem;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #7f8c8d;
}

.profile-bio {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

@media screen and (max-width: 968px) {
  .profile-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-image {
    width: 250px;
    height: 250px;
  }

  .profile-info h2 {
    font-size: 2rem;
  }

  .profile-stats {
    gap: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  .profile-section {
    padding: 2rem 1rem;
  }

  .profile-container {
    gap: 1.5rem;
  }

  .profile-image {
    width: 200px;
    height: 200px;
    border-width: 4px;
  }

  .profile-info h2 {
    font-size: 1.6rem;
  }

  .job-title {
    font-size: 1.1rem;
  }

  .profile-stats {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.home {
  min-height: calc(100vh - 70px);
}

.hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2040 100%);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
}

.hero-title span {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin: 0 0 1.5rem 0;
  color: #e0e0e0;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  margin: 0 0 2rem 0;
  line-height: 1.8;
  color: #e8e8e8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
}

.cta-button.primary {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.cta-button.primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: var(--shadow-hover);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background: white;
  color: #1e3a5f;
  transform: translateY(-2px);
}

.hero-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-button:hover {
  background: white;
  color: #1e3a5f;
  transform: translateY(-2px);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

.highlight-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: var(--border);
  transition: var(--transition);
}

.highlight-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-hover);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.12);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  color: #2c3e50;
  margin: 1rem 0;
  font-size: 1.3rem;
}

.highlight-card p {
  color: #666;
  line-height: 1.6;
}

@media screen and (max-width: 1024px) {
  .hero {
    padding: 4rem 1.5rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  .highlights {
    grid-template-columns: repeat(2, 1fr);
    margin: 3rem auto;
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .highlights {
    grid-template-columns: 1fr;
    margin: 2rem auto;
    padding: 1rem;
  }
}
.tech-badge-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.tech-badge-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.15);
  border-color: #1e3a5f;
}

.tech-badge-container.small {
  padding: 0.7rem;
  gap: 0.7rem;
}

.tech-badge-container.large {
  padding: 1.5rem;
  gap: 1.5rem;
}

.tech-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  width: 40px;
  height: 40px;
}

.tech-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tech-badge-container.small .tech-icon {
  width: 30px;
  height: 30px;
}

.tech-badge-container.large .tech-icon {
  width: 50px;
  height: 50px;
}

.tech-info {
  flex: 1;
}

.tech-info h4 {
  margin: 0;
  color: #2c3e50;
  font-size: 1rem;
  font-weight: 600;
}

.tech-badge-container.small .tech-info h4 {
  font-size: 0.9rem;
}

.tech-badge-container.large .tech-info h4 {
  font-size: 1.2rem;
}

.proficiency {
  display: block;
  color: #000000;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.2rem;
}

@media screen and (max-width: 768px) {
  .tech-badge-container {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .tech-icon {
    width: 35px;
    height: 35px;
  }

  .tech-info h4 {
    font-size: 0.95rem;
  }
}
.technologies-page {
  min-height: 100vh;
  background: #f9f9f9;
}

.tech-header {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2040 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.tech-header h1 {
  margin: 0 0 1rem 0;
  font-size: 2.5rem;
}

.tech-header p {
  margin: 0;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.tech-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.tech-category {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #1e3a5f;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.tech-stats {
  background: white;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: #666;
  font-weight: 500;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .tech-header h1 {
    font-size: 2rem;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .tech-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-content {
    padding: 1.5rem 1rem;
  }
}
.project-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-hover);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.card-header h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.3rem;
  flex: 1;
  font-weight: 600;
}

.card-links {
  display: flex;
  gap: 0.5rem;
}

.card-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
}

.card-link-btn.github {
  background: #333;
}

.card-link-btn.github:hover {
  background: #000;
  transform: scale(1.1);
}

.card-link-btn.external {
  background: #1e3a5f;
}

.card-link-btn.external:hover {
  background: #0f2040;
  transform: scale(1.1);
}

.card-description {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  flex: 1;
  font-weight: 500;
}

.card-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tech-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2040 100%);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.card-category {
  border-top: 1px solid #e0e0e0;
  padding-top: 1rem;
}

.category-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.category-tag.full-stack {
  background: #e8f5e9;
  color: #2e7d32;
}

.category-tag.backend {
  background: #e3f2fd;
  color: #1565c0;
}

.category-tag.frontend {
  background: #fce4ec;
  color: #c2185b;
}

.category-tag.html\/css {
  background: #fff3e0;
  color: #e65100;
}

.category-tag.estudos-c\# {
  background: #f3e5f5;
  color: #6a1b9a;
}

.category-tag.estudos-java {
  background: #fce4ec;
  color: #ad1457;
}

@media screen and (max-width: 768px) {
  .project-card {
    padding: 1.5rem;
  }

  .card-header h3 {
    font-size: 1.2rem;
  }

  .card-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
.case-study-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.case-study-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.case-study-sushi .case-study-backdrop {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8c42 100%);
  opacity: 0.15;
}

.case-study-ghosttech .case-study-backdrop {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0.15;
}

.case-study-portfolio .case-study-backdrop {
  background: linear-gradient(135deg, #1e3a5f 0%, #5eb3ff 100%);
  opacity: 0.15;
}

.case-study-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3.5rem;
  background: white;
  border-radius: 16px;
  border: var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.case-study-card:hover .case-study-content {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-hover);
}

.case-study-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: #f0f0f0;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.case-study-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.case-study-text h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.case-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.case-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.case-tech-badge {
  padding: 0.5rem 1rem;
  background: #f0f4ff;
  color: #1e3a5f;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #d4e0ff;
}

.case-study-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.case-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.case-btn.visit {
  background: #1e3a5f;
  color: white;
}

.case-btn.visit:hover {
  background: #0f2040;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
}

.case-btn.github {
  background: white;
  color: #1e3a5f;
  border: 2px solid #1e3a5f;
}

.case-btn.github:hover {
  background: #1e3a5f;
  color: white;
  transform: translateY(-2px);
}

.case-study-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.preview-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
  position: relative;
  overflow: hidden;
}

.preview-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.preview-emoji {
  font-size: 6rem;
  opacity: 0.3;
}

/* Tema Sushi */
.case-study-sushi .preview-placeholder {
  background: linear-gradient(135deg, #ffe8d6 0%, #ffd6e8 100%);
  border-color: #ffccb3;
}

/* Tema GhostTech */
.case-study-ghosttech .preview-placeholder {
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
  border-color: #c3b1e1;
}

/* Tema Portfólio */
.case-study-portfolio .preview-placeholder {
  background: linear-gradient(135deg, #1e3a5f 0%, #5eb3ff 100%);
  border-color: #1e3a5f;
}

/* Tema RH-Modelo */
.case-study-rh .preview-placeholder {
  background: linear-gradient(135deg, #e8d4f8 0%, #d4f0e8 100%);
  border-color: #c3a6e1;
}

/* Image hover effect */
.case-study-card:hover .preview-image {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Responsivo */
@media (max-width: 768px) {
  .case-study-content {
    padding: 2rem;
  }

  .case-study-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .case-study-text h2 {
    font-size: 2rem;
  }

  .case-description {
    font-size: 1rem;
  }

  .preview-placeholder {
    height: 350px;
  }

  .preview-emoji {
    font-size: 4rem;
  }

  .case-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .case-study-content {
    padding: 1.5rem;
  }

  .case-study-main {
    gap: 1.5rem;
  }

  .case-study-text h2 {
    font-size: 1.5rem;
  }

  .case-description {
    font-size: 0.95rem;
  }

  .preview-placeholder {
    height: 200px;
  }

  .preview-emoji {
    font-size: 3rem;
  }

  .case-study-buttons {
    flex-direction: column;
  }

  .case-btn {
    width: 100%;
    justify-content: center;
  }
}
.projects-page {
  min-height: 100vh;
  background: #f9f9f9;
}

.projects-header {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2040 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.projects-header h1 {
  margin: 0 0 1rem 0;
  font-size: 2.5rem;
}

.projects-header p {
  margin: 0;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.projects-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.stat-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  border: var(--border);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-hover);
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e3a5f;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

.projects-filter {
  background: white;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

.filter-buttons {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.7rem 1.5rem;
  border: 2px solid #e0e0e0;
  background: white;
  color: #2c3e50;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn .count {
  background: #f0f0f0;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-left: 0.3rem;
}

.filter-btn:hover {
  border-color: #1e3a5f;
  color: #1e3a5f;
}

.filter-btn.active {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2040 100%);
  color: white;
  border-color: #1e3a5f;
}

.filter-btn.active .count {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.projects-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.no-projects {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
  font-size: 1.1rem;
}

.projects-note {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  text-align: center;
  color: #666;
}

.projects-note a {
  color: #1e3a5f;
  font-weight: 600;
  text-decoration: none;
}

.projects-note a:hover {
  text-decoration: underline;
}

/* Projects Section */
.projects-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.projects-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.projects-section-header h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.projects-section-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* Featured Projects Section */
.featured-projects {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.featured-header-section {
  text-align: center;
  margin-bottom: 3rem;
}

.featured-header-section h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.featured-header-section p {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Case Studies Section */
.case-studies-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.case-studies-header {
  text-align: center;
  margin-bottom: 3rem;
}

.case-studies-header h2 {
  font-size: 2.2rem;
  color: #1e3a5f;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.case-studies-header p {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.case-studies-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (max-width: 1024px) {
  .projects-header h1 {
    font-size: 2.2rem;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .featured-projects-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .projects-header h1 {
    font-size: 2rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .featured-projects-grid {
    grid-template-columns: 1fr;
  }

  .featured-header-section h2 {
    font-size: 1.8rem;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}
.contact-page {
  min-height: 100vh;
  background: #f9f9f9;
}

.contact-header {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2040 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-header h1 {
  margin: 0 0 1rem 0;
  font-size: 2.5rem;
}

.contact-header p {
  margin: 0;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-methods {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  border: var(--border);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2040 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  padding: 15px;
  box-sizing: border-box;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-card h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin: 1rem 0;
}

.contact-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-link {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2040 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.15);
}

.contact-info {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #1e3a5f;
  padding-bottom: 1rem;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box li {
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
  line-height: 1.6;
}

.info-box li:last-child {
  border-bottom: none;
}

.info-box strong {
  color: #1e3a5f;
}

@media screen and (max-width: 768px) {
  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .contact-info {
    margin: 1.5rem;
    padding: 1.5rem;
  }

  .info-box ul {
    padding: 0;
  }
}
#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading state */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  font-size: 1.2rem;
  color: var(--text-light);
}

/* Error state */
.error {
  background: #ffebee;
  color: #c62828;
  padding: 1rem;
  border-radius: 5px;
  margin: 1rem 0;
}

/* Success state */
.success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 1rem;
  border-radius: 5px;
  margin: 1rem 0;
}

.base,
.framework,
.vite {
  inset-inline: 0;
  margin: 0 auto;
}

.base {
  width: 170px;
  position: relative;
  z-index: 0;
}

.framework,
.vite {
  position: absolute;
}

.framework {
  z-index: 1;
  top: 34px;
  height: 28px;
  transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg) scale(1.4);
}

.vite {
  z-index: 0;
  top: 107px;
  height: 26px;
  width: auto;
  transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg) scale(0.8);
}


#center {
  display: flex;
  flex-direction: column;
  gap: 25px;
  place-content: center;
  place-items: center;
  flex-grow: 1;

  @media (max-width: 1024px) {
    padding: 32px 20px 24px;
    gap: 18px;
  }
}

#next-steps {
  display: flex;
  border-top: 1px solid var(--border);
  text-align: left;

  &>div {
    flex: 1 1 0;
    padding: 32px;

    @media (max-width: 1024px) {
      padding: 24px 20px;
    }
  }

  .icon {
    margin-bottom: 16px;
    width: 22px;
    height: 22px;
  }

  @media (max-width: 1024px) {
    flex-direction: column;
    text-align: center;
  }
}

#docs {
  border-right: 1px solid var(--border);

  @media (max-width: 1024px) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

#next-steps ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 8px;
  margin: 32px 0 0;

  .logo {
    height: 18px;
  }

  a {
    color: var(--text-h);
    font-size: 16px;
    border-radius: 6px;
    background: var(--social-bg);
    display: flex;
    padding: 6px 12px;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: box-shadow 0.3s;

    &:hover {
      box-shadow: var(--shadow);
    }

    .button-icon {
      height: 18px;
      width: 18px;
    }
  }

  @media (max-width: 1024px) {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;

    li {
      flex: 1 1 calc(50% - 8px);
    }

    a {
      width: 100%;
      justify-content: center;
      box-sizing: border-box;
    }
  }
}

#spacer {
  height: 88px;
  border-top: 1px solid var(--border);

  @media (max-width: 1024px) {
    height: 48px;
  }
}

.ticks {
  position: relative;
  width: 100%;

  &::before,
  &::after {
    content: '';
    position: absolute;
    top: -4.5px;
    border: 5px solid transparent;
  }

  &::before {
    left: 0;
    border-left-color: var(--border);
  }

  &::after {
    right: 0;
    border-right-color: var(--border);
  }
}