* {
  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;
  }
}
.acomp-app {
  --acomp-bg: #0f1419;
  --acomp-surface: #1a222d;
  --acomp-surface-2: #243041;
  --acomp-border: #334155;
  --acomp-text: #e8eef6;
  --acomp-muted: #94a3b8;
  --acomp-accent: #3d9a7a;
  --acomp-accent-hover: #4cb892;
  --acomp-danger: #e05a5a;
  --acomp-warn: #e0a85a;
  --acomp-font: "Segoe UI", "Trebuchet MS", sans-serif;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(61, 154, 122, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(70, 110, 160, 0.15), transparent),
    var(--acomp-bg);
  color: var(--acomp-text);
  font-family: var(--acomp-font);
}

.acomp-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem;
}

.acomp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.acomp-brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.acomp-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.acomp-nav a {
  color: var(--acomp-muted);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  border: 1px solid transparent;
}

.acomp-nav a.active {
  color: var(--acomp-text);
  background: var(--acomp-surface);
  border-color: var(--acomp-border);
}

.acomp-nav a:hover {
  color: var(--acomp-text);
}

.acomp-btn {
  appearance: none;
  border: 1px solid var(--acomp-border);
  background: var(--acomp-surface);
  color: var(--acomp-text);
  padding: 0.55rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
}

.acomp-btn:hover:not(:disabled) {
  background: var(--acomp-surface-2);
}

.acomp-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.acomp-btn-primary {
  background: var(--acomp-accent);
  border-color: transparent;
  color: #04120e;
  font-weight: 600;
}

.acomp-btn-primary:hover:not(:disabled) {
  background: var(--acomp-accent-hover);
}

.acomp-btn-google {
  background: #fff;
  color: #1f1f1f;
  border-color: #dadce0;
  font-weight: 600;
}

.acomp-btn-google:hover:not(:disabled) {
  background: #f7f8f8;
}

.acomp-btn-danger {
  background: transparent;
  border-color: var(--acomp-danger);
  color: var(--acomp-danger);
}

.acomp-btn-sm {
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
}

.acomp-card {
  background: var(--acomp-surface);
  border: 1px solid var(--acomp-border);
  border-radius: 10px;
  padding: 1.5rem;
}

.acomp-auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.acomp-auth-card {
  width: min(420px, 100%);
}

.acomp-auth-card h1 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
}

.acomp-auth-card p.lead {
  margin: 0 0 1.25rem;
  color: var(--acomp-muted);
  font-size: 0.95rem;
}

.acomp-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.acomp-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--acomp-muted);
}

.acomp-form input,
.acomp-form textarea,
.acomp-form select {
  background: var(--acomp-bg);
  border: 1px solid var(--acomp-border);
  color: var(--acomp-text);
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.acomp-form textarea {
  min-height: 90px;
  resize: vertical;
}

.acomp-form-error {
  color: #ffb4b4;
  background: rgba(224, 90, 90, 0.12);
  border: 1px solid rgba(224, 90, 90, 0.35);
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.acomp-form-success {
  color: #b8f0d0;
  background: rgba(61, 154, 122, 0.15);
  border: 1px solid rgba(61, 154, 122, 0.4);
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.acomp-form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.35rem;
}

.acomp-link-btn {
  background: none;
  border: none;
  color: var(--acomp-accent);
  cursor: pointer;
  font: inherit;
  text-align: left;
  padding: 0;
}

.acomp-link-btn:hover {
  text-decoration: underline;
}

.acomp-pending {
  text-align: center;
  padding: 3rem 1rem;
}

.acomp-pending h2 {
  margin-top: 0;
}

.acomp-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.acomp-toolbar h2 {
  margin: 0;
  font-size: 1.35rem;
}

.acomp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--acomp-border);
  border-radius: 10px;
  background: var(--acomp-surface);
}

.acomp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.acomp-table th,
.acomp-table td {
  padding: 0.75rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--acomp-border);
  vertical-align: top;
  font-size: 0.92rem;
}

.acomp-table th {
  color: var(--acomp-muted);
  font-weight: 600;
  background: rgba(0, 0, 0, 0.2);
}

.acomp-table tr:last-child td {
  border-bottom: none;
}

.acomp-media-cell {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.acomp-poster {
  width: 48px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--acomp-bg);
  flex-shrink: 0;
}

.acomp-poster-placeholder {
  display: grid;
  place-items: center;
  color: var(--acomp-muted);
  font-size: 0.7rem;
  text-align: center;
  padding: 0.25rem;
}

.acomp-update-head {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-start;
}

.acomp-muted {
  color: var(--acomp-muted);
  font-size: 0.88rem;
}

.acomp-time-input {
  background: var(--acomp-bg);
  border: 1px solid var(--acomp-border);
  color: var(--acomp-text);
  border-radius: 6px;
  padding: 0.4rem 0.5rem;
  font: inherit;
  font-size: 0.9rem;
  max-width: 6.5rem;
}

.acomp-time-input:focus {
  outline: 1px solid var(--acomp-accent);
  border-color: var(--acomp-accent);
}

.acomp-progress-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  min-width: 180px;
}

.acomp-progress-select {
  background: var(--acomp-bg);
  border: 1px solid var(--acomp-border);
  color: var(--acomp-text);
  border-radius: 6px;
  padding: 0.4rem 0.55rem;
  font: inherit;
  font-size: 0.88rem;
  max-width: 240px;
  width: 100%;
}

.acomp-progress-select:focus {
  outline: 1px solid var(--acomp-accent);
  border-color: var(--acomp-accent);
}

.acomp-progress-select:disabled {
  opacity: 0.7;
}

.acomp-progress-error {
  color: #ffb4b4;
  font-size: 0.75rem;
}

.acomp-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 12, 0.72);
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 50;
}

.acomp-modal {
  width: min(640px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--acomp-surface);
  border: 1px solid var(--acomp-border);
  border-radius: 12px;
  padding: 1.25rem;
}

.acomp-modal h3 {
  margin: 0 0 1rem;
}

.acomp-search-results {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 220px;
  overflow: auto;
  margin: 0.75rem 0;
}

.acomp-search-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  text-align: left;
  width: 100%;
  background: var(--acomp-bg);
  border: 1px solid var(--acomp-border);
  border-radius: 8px;
  padding: 0.5rem;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.acomp-search-item.selected,
.acomp-search-item:hover {
  border-color: var(--acomp-accent);
}

.acomp-search-item img,
.acomp-search-item .acomp-poster {
  width: 40px;
  height: 60px;
}

.acomp-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1rem;
}

.acomp-suggestions {
  margin-top: 2rem;
}

.acomp-suggestions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.acomp-suggestions-header h3 {
  margin: 0;
}

.acomp-suggestion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.acomp-suggestion-card {
  background: var(--acomp-surface);
  border: 1px solid var(--acomp-border);
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
  width: 100%;
  display: block;
}

.acomp-suggestion-card:hover {
  border-color: var(--acomp-accent);
}

.acomp-suggestion-card:focus-visible {
  outline: 2px solid var(--acomp-accent);
  outline-offset: 2px;
}

.acomp-suggestion-card img,
.acomp-suggestion-card .acomp-poster-lg {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  background: var(--acomp-bg);
}

.acomp-suggestion-media {
  position: relative;
}

.acomp-rating-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(8, 12, 18, 0.85);
  color: #f5d76e;
  border: 1px solid rgba(245, 215, 110, 0.35);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.acomp-rating-text {
  margin: 0 0 0.35rem !important;
  color: #f5d76e !important;
  font-size: 0.82rem !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
}

.acomp-suggestion-card .body {
  padding: 0.75rem;
}

.acomp-suggestion-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.acomp-suggestion-card p {
  margin: 0;
  color: var(--acomp-muted);
  font-size: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.acomp-suggestion-modal {
  width: min(720px, 100%);
}

.acomp-suggestion-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.acomp-suggestion-modal-head h3 {
  margin: 0;
}

.acomp-suggestion-modal-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
}

.acomp-suggestion-modal-body h4 {
  margin: 0 0 0.5rem;
}

.acomp-suggestion-modal-body p {
  margin: 0;
  line-height: 1.5;
  color: var(--acomp-text);
  white-space: pre-wrap;
}

.acomp-suggestion-modal-poster {
  width: 140px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: var(--acomp-bg);
}

@media (max-width: 640px) {
  .acomp-suggestion-modal-body {
    grid-template-columns: 1fr;
  }

  .acomp-suggestion-modal-poster {
    width: 120px;
  }
}

.acomp-notify {
  position: relative;
}

.acomp-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--acomp-danger);
  color: white;
  font-size: 0.7rem;
  min-width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 0.25rem;
  font-weight: 700;
}

.acomp-notify-backdrop {
  display: none;
}

.acomp-notify-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: min(360px, 90vw);
  background: var(--acomp-surface);
  border: 1px solid var(--acomp-border);
  border-radius: 10px;
  padding: 0.85rem;
  z-index: 40;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.acomp-notify-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.acomp-notify-panel-head h4 {
  margin: 0;
  font-size: 0.95rem;
}

.acomp-notify-close {
  display: none;
}

.acomp-request-item {
  border-top: 1px solid var(--acomp-border);
  padding: 0.75rem 0;
}

.acomp-request-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.acomp-request-item strong {
  display: block;
  word-break: break-word;
}

.acomp-request-item .acomp-muted {
  word-break: break-word;
}

.acomp-request-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.55rem;
  flex-wrap: wrap;
}

.acomp-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--acomp-muted);
}

@media (max-width: 640px) {
  .acomp-shell {
    padding: 1rem 0.85rem 2.5rem;
  }

  .acomp-brand {
    font-size: 1.15rem;
  }

  .acomp-notify-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: none;
    padding: 0;
    margin: 0;
    background: rgba(5, 8, 12, 0.72);
    z-index: 55;
    cursor: pointer;
  }

  .acomp-notify-panel {
    position: fixed;
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 380px);
    max-height: min(80vh, 560px);
    overflow-y: auto;
    z-index: 60;
    padding: 1rem;
  }

  .acomp-notify-close {
    display: inline-flex;
  }

  .acomp-request-actions {
    width: 100%;
  }

  .acomp-request-actions .acomp-btn {
    flex: 1 1 40%;
    min-width: 0;
    text-align: center;
    justify-content: center;
  }
}
#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);
  }
}