:root {
  --bg: #0b0b0b;
  --card: #111111;
  --fg: #ffffff;
  --accent: #4f46e5;
  --accent-light: #6366f1;
  --gray-300: #d1d5db;
  --gray-400: #a8b0bd;
  --gray-500: #98a2b3;
  --border: rgba(255, 255, 255, 0.05);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  color: var(--fg);
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

::selection {
  background: rgba(79, 70, 229, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(79, 70, 229, 0.4);
  border-radius: 9999px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border-radius: 0.75rem;
}

/* ---------- Layout ---------- */
.section-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin: 0 0 3rem;
  max-width: 42rem;
}

.text-accent {
  color: var(--accent);
}

.glass-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(79, 70, 229, 0.2);
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
  display: block;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-light);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-outline:hover {
  border-color: rgba(79, 70, 229, 0.4);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
}

/* ---------- Navbar ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
  transform: translateY(-100%);
  animation: navDrop 0.5s ease forwards;
}

@keyframes navDrop {
  to {
    transform: translateY(0);
  }
}

.site-header.is-scrolled,
body.is-inner .site-header {
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
}

.site-brand img {
  max-height: 2.25rem;
  width: auto;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .is-active > a {
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-toggle .icon-close,
.nav-toggle[aria-expanded='true'] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded='true'] .icon-close {
  display: block;
}

.nav-mobile {
  display: none;
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.nav-mobile a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-glow-a {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(79, 70, 229, 0.05), transparent 60%);
  pointer-events: none;
}

.hero-glow-b {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  max-width: 150vw;
  background: rgba(79, 70, 229, 0.05);
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

/* ---------- Sobre ---------- */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.about-text {
  color: var(--gray-300);
  font-size: 1.125rem;
  line-height: 1.75;
  margin: 0;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-300);
}

.about-list li::before {
  content: '';
  margin-top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---------- Grids ---------- */
.grid-2,
.grid-3,
.grid-stack {
  display: grid;
  gap: 1.5rem;
}

.grid-stack {
  gap: 2rem;
}

/* ---------- Soluções ---------- */
.solution-icon {
  font-size: 1.875rem;
  display: block;
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  transition: color 0.2s ease;
}

.glass-card:hover .card-title {
  color: var(--accent);
}

.card-text {
  color: var(--gray-400);
  margin: 0;
  line-height: 1.7;
}

/* ---------- Projetos ---------- */
.project-card {
  display: grid;
  gap: 1.5rem;
  padding: 0;
  overflow: hidden;
}

.project-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0e0e0e;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.04);
}

.project-body {
  padding: 0 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.project-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0;
}

.project-title a:hover {
  color: var(--accent);
}

.project-excerpt {
  color: var(--gray-400);
  margin: 0;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  background: rgba(79, 70, 229, 0.1);
  color: var(--accent);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 0.5rem;
}

.chip {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: var(--gray-300);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.chip:hover {
  border-color: rgba(79, 70, 229, 0.3);
  color: #fff;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tech-group-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 1.25rem;
}

.section-footer {
  margin-top: 3rem;
  text-align: center;
}

/* ---------- Single projeto ---------- */
.entry-hero {
  padding-top: 8rem;
}

.entry-hero .breadcrumb {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.entry-hero .breadcrumb:hover {
  color: var(--accent);
}

.entry-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.entry-lead {
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 46rem;
  margin: 0 0 2rem;
}

.entry-featured {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

.entry-content {
  color: var(--gray-300);
  line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--font-heading);
  color: #fff;
  margin: 2.5rem 0 1rem;
}

.entry-content a {
  color: var(--accent-light);
  text-decoration: underline;
}

.entry-content img {
  border-radius: 0.75rem;
}

.entry-content blockquote {
  border-left: 3px solid var(--accent);
  margin: 2rem 0;
  padding-left: 1.25rem;
  color: var(--gray-400);
}

.entry-content code {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15em 0.4em;
  border-radius: 0.35rem;
  font-size: 0.9em;
}

.entry-content pre {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  overflow-x: auto;
}

.detail-block + .detail-block {
  margin-top: 1.5rem;
}

.detail-block p {
  color: var(--gray-300);
  margin: 0.25rem 0 0;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.post-nav a:hover {
  color: #fff;
}

/* ---------- Galeria do projeto ---------- */
.project-gallery {
  margin-top: 3.5rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.gallery-item {
  margin: 0;
}

.gallery-link {
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: zoom-in;
}

.gallery-link img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.gallery-link:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

.gallery-item figcaption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 1rem;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  border-radius: 0.75rem;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 9999px;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.5rem;
}

.lightbox-nav {
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .lightbox-nav {
    position: absolute;
    bottom: 1.5rem;
  }

  .lightbox-prev {
    left: 1.5rem;
  }

  .lightbox-next {
    right: 1.5rem;
  }
}

/* ---------- Páginas legais ---------- */
.legal-page {
  max-width: 52rem;
}

.legal-content {
  font-size: 1rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content em {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.legal-page .post-nav {
  gap: 1.5rem;
  justify-content: flex-start;
}

/* ---------- Contato ---------- */
.contact-wrap {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.contact-wrap .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gray-300);
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #fff;
}

.contact-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

/* ---------- Rodapé ---------- */
.site-footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
  text-align: center;
  width: 100%;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--gray-500);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.footer-menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.footer-menu a {
  color: var(--gray-500);
}

.footer-menu a:hover {
  color: #fff;
}

/* ---------- Paginação ---------- */
.pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.pagination .page-numbers {
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  margin: 0 0.25rem;
  color: var(--gray-400);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  border-color: rgba(79, 70, 229, 0.4);
  color: #fff;
}

/* ---------- Processo ---------- */
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
}

.process-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ---------- Depoimentos ---------- */
.testimonial {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-quote {
  margin: 0;
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.75;
}

.testimonial-quote p:first-child::before {
  content: '“';
  color: var(--accent);
  margin-right: 0.15rem;
}

.testimonial-quote p:last-child::after {
  content: '”';
  color: var(--accent);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-role {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.testimonial-link {
  font-size: 0.8rem;
  color: var(--accent-light);
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ---------- Métricas ---------- */
.metrics {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

.metric {
  text-align: center;
  padding: 1.5rem 1rem;
}

.metric-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.metric-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* ---------- Filtro ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.chip.is-active {
  background: rgba(79, 70, 229, 0.15);
  border-color: rgba(79, 70, 229, 0.5);
  color: #fff;
}

/* ---------- Formulário ---------- */
.contact-form {
  text-align: left;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-field {
  margin: 0 0 1rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(79, 70, 229, 0.6);
}

.form-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy {
  display: block;
  margin-top: 0.875rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.form-privacy a {
  color: var(--gray-400);
  text-decoration: underline;
}

.form-privacy a:hover {
  color: #fff;
}

.form-notice {
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  text-align: left;
}

.form-notice--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.form-notice--error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

.contact-links--after {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* O selo pode ser ocultado desde que o aviso legal apareça no formulário. */
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-notice a {
  color: var(--gray-400);
  text-decoration: underline;
}

.recaptcha-notice a:hover {
  color: #fff;
}

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border-radius: 9999px;
  background: #25d366;
  color: #06331a;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 1.375rem;
  height: 1.375rem;
}

@media (max-width: 639px) {
  .whatsapp-float-label {
    display: none;
  }

  .whatsapp-float {
    padding: 0.875rem;
  }
}

/* ---------- Animações ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-header {
    animation: none;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- Responsivo ---------- */
@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .footer-inner {
    flex-direction: row;
    text-align: left;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .section-container {
    padding: 8rem 1.5rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .glass-card {
    padding: 2rem;
  }

  .project-body {
    padding: 0 2rem 2rem;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-title {
    font-size: 2.75rem;
  }

  .detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (min-width: 900px) {
  .process-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .project-card.has-thumb {
    grid-template-columns: 42% 1fr;
    align-items: center;
    gap: 0;
  }

  .project-card.has-thumb .project-thumb {
    height: 100%;
    aspect-ratio: auto;
    min-height: 260px;
  }

  .project-card.has-thumb .project-body {
    padding: 2rem;
  }
}
