:root {
  --white: #ffffff;
  --soft: #fbf7f3;
  --espresso: #332d2b;
  --terracotta: #ad5b48;
  --coral: #f79c7c;
  --copper: #c08672;
  --gold: #c9a66b;

  --text: #332d2b;
  --muted: rgba(51, 45, 43, 0.66);

  --line: rgba(173, 91, 72, 0.16);
  --line-gold: rgba(201, 166, 107, 0.4);

  --shadow: 0 24px 70px rgba(51, 45, 43, 0.06);
  --shadow-gold: 0 28px 90px rgba(151, 104, 55, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--copper);
  color: var(--white);
}

/* PRELOADER */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader p {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* CURSOR */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--terracotta);
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(173, 91, 72, 0.35);
  transition: 0.25s ease;
}

body.cursor-hover .cursor-ring {
  width: 50px;
  height: 50px;
  background: rgba(173, 91, 72, 0.06);
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  padding: 18px 24px;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(51, 45, 43, 0.05);
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 22px;
}

.logo,
.footer-logo {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-divider {
  width: 1px;
  height: 24px;
  background: rgba(201, 166, 107, 0.35);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.nav-links a {
  color: rgba(51, 45, 43, 0.64);
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--terracotta);
}

.nav-button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3a312f, #2d2624);
  color: var(--white);
  border: 1px solid rgba(201, 166, 107, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  transition: 0.3s ease;
  box-shadow: 0 14px 28px rgba(51, 45, 43, 0.12);
}

.nav-button:hover {
  background: linear-gradient(180deg, #4a3c38, #372d2a);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-button span {
  width: 16px;
  height: 1px;
  background: currentColor;
}

.mobile-menu {
  display: none;
}

/* GERAL */

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 76px 0;
}

.section-light {
  background: var(--white);
}

.section-soft {
  background: var(--soft);
}

.page-texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 166, 107, 0.12), transparent 28%),
    radial-gradient(circle at 86% 62%, rgba(247, 156, 124, 0.12), transparent 30%),
    repeating-linear-gradient(
      90deg,
      rgba(51, 45, 43, 0.018) 0,
      rgba(51, 45, 43, 0.018) 1px,
      transparent 1px,
      transparent 8px
    );
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--terracotta);
  font-size: 0.67rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.042em;
  font-weight: 600;
}

.section-description {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.compact-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.compact-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.centered-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-actions,
.page-actions,
.solution-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

/* BOTÕES */

.primary-button,
.secondary-button,
.text-link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
}

.primary-button,
.secondary-button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.primary-button {
  background: linear-gradient(180deg, #3a312f, #2d2624);
  color: #ffffff;
  border: 1px solid rgba(201, 166, 107, 0.22);
  box-shadow: 0 16px 34px rgba(51, 45, 43, 0.14);
}

.primary-button:hover {
  background: linear-gradient(180deg, #4a3c38, #372d2a);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(51, 45, 43, 0.18);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.8);
  color: var(--espresso);
  border: 1px solid rgba(201, 166, 107, 0.42);
  box-shadow: 0 10px 28px rgba(51, 45, 43, 0.06);
}

.secondary-button:hover {
  background: #fffaf5;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(51, 45, 43, 0.1);
}

.text-link {
  position: relative;
  padding-bottom: 8px;
  color: var(--espresso);
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.45);
  transform-origin: left;
  transition: 0.3s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

/* HERO HOME */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 128px 0 70px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), #fffaf7);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 620px;
}

.hero-title {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2.7rem, 4.5vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.hero-title span {
  display: block;
}

.hero-text {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  padding: 8px 12px;
  border: 1px solid rgba(201, 166, 107, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: rgba(51, 45, 43, 0.62);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.hero-logo-area {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-stage {
  position: relative;
  width: min(100%, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-stage::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(247, 156, 124, 0.12) 0%,
    rgba(201, 166, 107, 0.08) 35%,
    transparent 70%
  );
  filter: blur(10px);
  z-index: 0;
}

.hero-logo-main {
  position: relative;
  z-index: 2;
  width: min(100%, 550px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(51, 45, 43, 0.08));
}

.soft-shape {
  position: absolute;
  border-radius: 48% 52% 62% 38%;
  pointer-events: none;
  filter: blur(4px);
}

.shape-left {
  width: 270px;
  height: 340px;
  left: -120px;
  top: 20%;
  background: rgba(192, 134, 114, 0.16);
}

.shape-right {
  width: 330px;
  height: 290px;
  right: -150px;
  bottom: 12%;
  background: rgba(247, 156, 124, 0.13);
}

/* HERO PÁGINAS INTERNAS */

.page-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 132px 0 78px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), #fffaf7);
}

.page-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 56px;
}

.page-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 4.6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.page-text {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.page-visual {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  position: relative;
  width: min(100%, 390px);
  min-height: 440px;
  padding: 30px;
  border: 1px solid var(--line-gold);
  border-radius: 34px;
  box-shadow: var(--shadow-gold);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 166, 107, 0.28);
  border-radius: 26px;
  pointer-events: none;
}

.visual-card small {
  position: relative;
  z-index: 2;
  color: var(--terracotta);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.visual-card h3 {
  position: relative;
  z-index: 2;
  margin: 12px 0 0;
  max-width: 280px;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.visual-one,
.visual-two,
.visual-three,
.visual-four {
  background:
    radial-gradient(circle at 26% 20%, rgba(247, 156, 124, 0.24), transparent 34%),
    radial-gradient(circle at 80% 28%, rgba(201, 166, 107, 0.22), transparent 34%),
    linear-gradient(180deg, #fffaf7, #f4e6df);
}

/* CARDS VISUAIS COM IMAGEM */

.visual-image-card,
.service-image-card,
.contact-image-card {
  position: relative;
  width: min(100%, 390px);
  min-height: 440px;
  border: 1px solid var(--line-gold);
  border-radius: 34px;
  box-shadow: var(--shadow-gold);
  overflow: hidden;
  background: #f8f4f1;
}

.visual-image-card::before,
.service-image-card::before,
.contact-image-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 166, 107, 0.28);
  border-radius: 26px;
  pointer-events: none;
  z-index: 3;
}

.visual-image-card img,
.service-image-card img,
.contact-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  transition: 0.6s ease;
}

.visual-image-card::after,
.service-image-card::after,
.contact-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(51, 45, 43, 0.02) 0%,
    rgba(51, 45, 43, 0.14) 45%,
    rgba(51, 45, 43, 0.62) 100%
  );
  z-index: 1;
}

.visual-image-card:hover img,
.service-image-card:hover img,
.contact-image-card:hover img {
  transform: scale(1.04);
}

.visual-card-content,
.service-image-content,
.contact-image-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 2;
}

.visual-card-content small,
.service-image-content small,
.contact-image-content small {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.visual-card-content h3,
.service-image-content h3,
.contact-image-content h3 {
  max-width: 280px;
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}

/* SOBRE HERO COM LOGO SOLTA */

.about-brand-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
}

.about-brand-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(247, 156, 124, 0.16) 0%,
      rgba(201, 166, 107, 0.10) 38%,
      transparent 70%
    );
  filter: blur(10px);
  z-index: 0;
}

.about-floating-logo {
  position: relative;
  z-index: 2;
  width: min(78%, 500px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(51, 45, 43, 0.10));
}

.about-floating-text {
  position: relative;
  z-index: 2;
  margin-top: 26px;
}

.about-floating-text small {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--terracotta);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.about-floating-text h3 {
  max-width: 330px;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}

/* INTRO HOME */

.intro-card {
  padding: 38px;
  border: 1px solid var(--line-gold);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 16%, rgba(201, 166, 107, 0.12), transparent 32%),
    linear-gradient(145deg, #fffaf5, #ffffff);
  box-shadow: var(--shadow-gold);
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 36px;
  align-items: center;
}

.intro-text p {
  max-width: 540px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

/* GRIDS */

.delivery-grid,
.plans-grid,
.process-grid,
.portfolio-grid,
.why-grid,
.home-links-grid,
.preview-cards {
  display: grid;
  gap: 20px;
}

.delivery-grid,
.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.home-links-grid,
.plans-grid,
.portfolio-grid,
.preview-cards {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid {
  grid-template-columns: repeat(5, 1fr);
}

/* CARDS COM ÍCONES */

.delivery-card,
.why-card,
.home-link-card {
  position: relative;
  min-height: 250px;
  padding: 30px 24px;
  border: 1px solid var(--line-gold);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 166, 107, 0.10), transparent 38%),
    linear-gradient(180deg, #fffaf4, #ffffff);
  box-shadow: var(--shadow);
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.delivery-card:hover,
.why-card:hover,
.home-link-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.home-link-card {
  min-height: 310px;
  align-items: center;
}

.premium-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border: 1px solid rgba(201, 166, 107, 0.42);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 245, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 14px 28px rgba(51, 45, 43, 0.06);
  color: var(--terracotta);
}

.premium-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.delivery-card h3,
.why-card h3,
.home-link-card h3 {
  max-width: 270px;
  margin: 0 auto 12px;
  font-size: 1.42rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.home-link-card h3 {
  font-size: 1.6rem;
}

.delivery-card p,
.why-card p,
.home-link-card p {
  max-width: 290px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.home-link-card p {
  margin-bottom: 24px;
}

.home-link-card .text-link {
  margin-top: auto;
}

/* PRÉVIA HOME */

.preview-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px;
  align-items: center;
}

.preview-copy p {
  max-width: 460px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.preview-card {
  position: relative;
  min-height: auto;
  padding: 12px;
  border-radius: 28px;
  border: 1px solid var(--line-gold);
  background: linear-gradient(180deg, #fffaf4, #ffffff);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: 0.35s ease;
  overflow: hidden;
}

.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.preview-thumb {
  width: 100%;
  height: 250px;
  border-radius: 22px;
  overflow: hidden;
  background: #f8f4f1;
  margin-bottom: 18px;
}

.preview-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: 0.5s ease;
}

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

.preview-card small {
  display: block;
  padding: 0 8px;
  color: var(--terracotta);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.preview-card h3 {
  margin: 10px 0 0;
  padding: 0 8px 8px;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 600;
}

/* AJUSTE ESPECIAL PARA IMAGEM COM MUITO ESPAÇO INTERNO */

.preview-zoom .preview-thumb img {
  transform: scale(1.28);
}

.preview-zoom:hover .preview-thumb img {
  transform: scale(1.34);
}

/* PROCESSO */

.process-card {
  position: relative;
  min-height: 220px;
  padding: 26px 22px;
  border: 1px solid var(--line-gold);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 12%, rgba(201, 166, 107, 0.13), transparent 30%),
    linear-gradient(180deg, #fffaf4, #ffffff);
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.process-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* PLANOS */

.plan-card {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--line-gold);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 12%, rgba(201, 166, 107, 0.13), transparent 30%),
    linear-gradient(180deg, #fffaf4, #ffffff);
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.plan-card.featured {
  border-color: rgba(201, 166, 107, 0.68);
  box-shadow: var(--shadow-gold);
}

.plan-card span,
.plan-badge {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--terracotta);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.plan-badge {
  padding: 8px 12px;
  border: 1px solid rgba(201, 166, 107, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.plan-card h3 {
  margin: 0 0 12px;
  font-size: 1.65rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.plan-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.plan-card li {
  padding: 11px 0;
  border-top: 1px solid rgba(173, 91, 72, 0.12);
  color: rgba(51, 45, 43, 0.72);
  font-size: 0.9rem;
}

/* PORTFÓLIO */

.portfolio-card {
  position: relative;
  min-height: auto;
  padding: 14px;
  border: 1px solid var(--line-gold);
  border-radius: 30px;
  background: linear-gradient(180deg, #fffaf4, #ffffff);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: 0.35s ease;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 166, 107, 0.22);
  border-radius: 22px;
  pointer-events: none;
  z-index: 3;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.portfolio-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: #f8f4f1;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.04);
}

.portfolio-content {
  position: relative;
  z-index: 4;
  padding: 22px 8px 8px;
}

.portfolio-content small {
  display: inline-block;
  color: var(--terracotta);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 10px;
}

.portfolio-content h3 {
  margin: 0 0 10px;
  max-width: 280px;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.portfolio-content p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* SOBRE */

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 46px;
  align-items: center;
}

.about-photo {
  min-height: 540px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(201, 166, 107, 0.34);
  box-shadow: var(--shadow-gold);
  background: #f8f4f1;
}

.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-copy p {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* CONTATO */

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: stretch;
}

.contact-card,
.form-card {
  border: 1px solid var(--line-gold);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 12%, rgba(201, 166, 107, 0.14), transparent 32%),
    linear-gradient(145deg, #fffaf5, #ffffff);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 34px;
}

.contact-card h3 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.contact-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(173, 91, 72, 0.12);
  color: rgba(51, 45, 43, 0.72);
  font-size: 0.92rem;
}

.form-card {
  padding: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.input-group label {
  color: var(--terracotta);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  border: 1px solid rgba(201, 166, 107, 0.36);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  outline: none;
  padding: 15px 16px;
  transition: 0.25s ease;
}

.input-group textarea {
  min-height: 150px;
  resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: rgba(173, 91, 72, 0.52);
  box-shadow: 0 0 0 4px rgba(173, 91, 72, 0.06);
}

/* CTA FINAL */

.final-section {
  padding: 84px 0;
  background: var(--white);
}

.final-box {
  padding: 48px;
  border: 1px solid var(--line-gold);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 12%, rgba(201, 166, 107, 0.18), transparent 32%),
    linear-gradient(145deg, #fffaf5, #ffffff);
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.final-box .section-title {
  max-width: 820px;
  margin: 0 auto;
}

.final-box p {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-actions {
  justify-content: center;
}

/* FOOTER */

.footer {
  padding: 38px 0;
  border-top: 1px solid rgba(173, 91, 72, 0.12);
  background: var(--white);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.footer p {
  max-width: 360px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(51, 45, 43, 0.64);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 500;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--terracotta);
}

.developer-credit {
  margin: 0;
  color: rgba(51, 45, 43, 0.55);
  font-size: 0.78rem;
  line-height: 1.5;
}

.developer-credit a {
  color: var(--terracotta);
  font-weight: 500;
  transition: 0.25s ease;
}

.developer-credit a:hover {
  color: var(--espresso);
}

/* RESPONSIVO */

@media (max-width: 1180px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .delivery-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .page-hero-layout,
  .intro-card,
  .preview-layout,
  .about-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-links-grid,
  .plans-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-thumb {
    height: 280px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-logo-area {
    min-height: 380px;
  }

  .hero-logo-main {
    width: min(100%, 340px);
  }

  .about-photo {
    min-height: 420px;
  }

  .page-visual {
    min-height: auto;
  }

  .visual-card,
  .visual-image-card,
  .service-image-card,
  .contact-image-card {
    width: 100%;
    min-height: 360px;
  }
}

@media (max-width: 920px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-divider,
  .nav-links,
  .nav-button {
    display: none;
  }

  .menu-button {
    display: flex;
    justify-self: end;
  }

  .mobile-menu {
    position: absolute;
    top: 92px;
    left: 24px;
    right: 24px;
    padding: 22px;
    border: 1px solid var(--line-gold);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 18px;
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .mobile-menu a {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-weight: 500;
  }
}

@media (max-width: 720px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .container {
    width: calc(100% - 32px);
  }

  .site-header {
    padding: 14px 16px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 112px 0 60px;
  }

  .page-hero {
    min-height: auto;
    padding: 118px 0 64px;
  }

  .hero-layout,
  .page-hero-layout {
    gap: 34px;
  }

  .hero-title,
  .page-title {
    font-size: clamp(2.25rem, 10vw, 3.7rem);
    line-height: 1.06;
  }

  .section-title {
    font-size: clamp(1.85rem, 8vw, 3rem);
  }

  .hero-actions,
  .page-actions,
  .solution-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    text-align: center;
  }

  .delivery-grid,
  .home-links-grid,
  .plans-grid,
  .process-grid,
  .portfolio-grid,
  .why-grid,
  .preview-cards {
    grid-template-columns: 1fr;
  }

  .preview-thumb {
    height: 300px;
  }

  .hero-logo-area {
    min-height: 320px;
  }

  .hero-logo-main {
    width: min(78%, 240px);
  }

  .hero-logo-stage::before {
    width: 260px;
    height: 260px;
  }

  .intro-card,
  .final-box,
  .form-card,
  .contact-card {
    padding: 28px;
  }

  .about-photo {
    min-height: 360px;
    max-width: 100%;
  }

  .about-brand-visual {
    min-height: 320px;
  }

  .about-brand-visual::before {
    width: 280px;
    height: 280px;
  }

  .about-floating-logo {
    width: min(76%, 240px);
  }

  .about-floating-text h3 {
    font-size: 1.65rem;
  }

  .delivery-card,
  .why-card,
  .home-link-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .process-card {
    min-height: auto;
  }

  .portfolio-card,
  .preview-card {
    min-height: auto;
  }

  .visual-card,
  .visual-image-card,
  .service-image-card,
  .contact-image-card {
    min-height: 340px;
  }

  .visual-card-content,
  .service-image-content,
  .contact-image-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .visual-card-content h3,
  .service-image-content h3,
  .contact-image-content h3 {
    font-size: 1.65rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-layout {
    flex-direction: column;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }
}
/* HOVER PREMIUM — CARDS CRESCENDO */

.delivery-card,
.why-card,
.home-link-card,
.process-card,
.plan-card,
.portfolio-card,
.preview-card,
.contact-card,
.form-card,
.final-box,
.intro-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.delivery-card:hover,
.why-card:hover,
.home-link-card:hover,
.process-card:hover,
.plan-card:hover,
.portfolio-card:hover,
.preview-card:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: var(--shadow-gold);
}

.intro-card:hover,
.final-box:hover,
.contact-card:hover,
.form-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: var(--shadow-gold);
}


/* PORTFÓLIO — ROLAGEM VERTICAL MOVENDO OS CARDS */

.portfolio-grid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 22px;
  overflow: visible !important;
  padding: 8px 0 28px;
  cursor: default;
  will-change: transform;
}

.portfolio-grid .portfolio-card {
  flex: 0 0 340px;
  width: 340px;
}

@media (max-width: 920px) {
  .portfolio-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
    overflow: visible !important;
    padding: 0;
    transform: none !important;
  }

  .portfolio-grid .portfolio-card {
    flex: initial;
    width: auto;
  }
}

@media (max-width: 720px) {
  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ======================================================
   RESPONSIVIDADE FINAL — TABLET E CELULAR
   Colar no final do style.css
====================================================== */

/* TABLET */
@media (max-width: 1080px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 40px, 920px);
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 130px 0 72px;
  }

  .hero-layout,
  .page-hero-layout,
  .intro-card,
  .preview-layout,
  .about-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy,
  .page-text,
  .hero-text,
  .section-description {
    max-width: 100%;
  }

  .hero-logo-area,
  .page-visual {
    min-height: auto;
  }

  .hero-logo-main {
    width: min(80%, 380px);
  }

  .hero-logo-stage::before {
    width: 340px;
    height: 340px;
  }

  .page-visual {
    justify-content: flex-start;
  }

  .visual-card,
  .visual-image-card,
  .service-image-card,
  .contact-image-card {
    width: 100%;
    min-height: 420px;
  }

  .home-links-grid,
  .plans-grid,
  .portfolio-grid,
  .preview-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-thumb {
    height: 300px;
  }

  .about-photo {
    min-height: 440px;
  }

  .footer-layout {
    gap: 28px;
  }
}

/* TABLET MENOR */
@media (max-width: 920px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav {
    grid-template-columns: auto 1fr auto;
    min-height: 58px;
  }

  .nav-divider,
  .nav-links,
  .nav-button {
    display: none;
  }

  .menu-button {
    display: flex;
    justify-self: end;
  }

  .mobile-menu {
    position: fixed;
    top: 84px;
    left: 18px;
    right: 18px;
    z-index: 89;
    padding: 22px;
    border: 1px solid var(--line-gold);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-gold);
    display: none;
    flex-direction: column;
    gap: 18px;
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .mobile-menu a {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-weight: 500;
  }

  .portfolio-grid {
    transform: none !important;
  }
}

/* CELULAR */
@media (max-width: 720px) {
  body {
    cursor: auto;
    overflow-x: hidden;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .container {
    width: calc(100% - 30px);
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding: 112px 0 58px;
  }

  .page-hero {
    padding: 112px 0 58px;
  }

  .hero-layout,
  .page-hero-layout,
  .intro-card,
  .preview-layout,
  .about-layout,
  .contact-grid {
    gap: 32px;
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .hero-title,
  .page-title {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: -0.052em;
  }

  .section-title {
    font-size: clamp(1.85rem, 8.5vw, 2.7rem);
    line-height: 1.08;
  }

  .hero-text,
  .page-text,
  .section-description,
  .intro-text p,
  .preview-copy p,
  .about-copy p,
  .final-box p {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .hero-actions,
  .page-actions,
  .solution-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    min-height: 50px;
    text-align: center;
  }

  .text-link {
    width: fit-content;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points span {
    font-size: 0.6rem;
    padding: 7px 10px;
  }

  .hero-logo-area {
    min-height: 280px;
  }

  .hero-logo-main {
    width: min(90%, 300px);
  }

  .hero-logo-stage::before {
    width: 260px;
    height: 260px;
  }

  .page-visual {
    justify-content: center;
  }

  .visual-card,
  .visual-image-card,
  .service-image-card,
  .contact-image-card {
    width: 100%;
    min-height: 360px;
    border-radius: 28px;
  }

  .visual-card::before,
  .visual-image-card::before,
  .service-image-card::before,
  .contact-image-card::before {
    inset: 14px;
    border-radius: 22px;
  }

  .visual-card-content,
  .service-image-content,
  .contact-image-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .visual-card-content h3,
  .service-image-content h3,
  .contact-image-content h3,
  .visual-card h3 {
    font-size: 1.55rem;
  }

  .intro-card,
  .final-box,
  .form-card,
  .contact-card {
    padding: 26px;
    border-radius: 28px;
  }

  .delivery-grid,
  .home-links-grid,
  .plans-grid,
  .process-grid,
  .portfolio-grid,
  .why-grid,
  .preview-cards {
    grid-template-columns: 1fr !important;
  }

  .delivery-card,
  .why-card,
  .home-link-card,
  .process-card,
  .plan-card,
  .portfolio-card,
  .preview-card {
    min-height: auto;
  }

  .home-link-card {
    padding: 30px 22px;
  }

  .delivery-card,
  .why-card {
    padding: 28px 22px;
  }

  .process-card,
  .plan-card {
    padding: 26px 22px;
  }

  .preview-card {
    padding: 12px;
  }

  .preview-thumb {
    height: 280px;
  }

  .portfolio-image {
    aspect-ratio: 4 / 4.8;
  }

  .portfolio-content {
    padding: 20px 8px 8px;
  }

  .portfolio-content h3,
  .preview-card h3 {
    font-size: 1.35rem;
  }

  .about-photo {
    min-height: 340px;
    border-radius: 28px;
  }

  .about-brand-visual {
    min-height: 300px;
  }

  .about-brand-visual::before {
    width: 260px;
    height: 260px;
  }

  .about-floating-logo {
    width: min(90%, 300px);
  }

  .about-floating-text {
    margin-top: 4px;
  }

  .about-floating-text h3 {
    font-size: 1.55rem;
  }

  .contact-grid {
    gap: 22px;
  }

  .contact-card h3 {
    font-size: 1.65rem;
  }

  .contact-list li {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .input-group input,
  .input-group textarea,
  .input-group select {
    border-radius: 16px;
    padding: 14px 15px;
  }

  .input-group textarea {
    min-height: 130px;
  }

  .final-section {
    padding: 62px 0;
  }

  .footer {
    padding: 34px 0;
  }

  .footer-layout {
    flex-direction: column;
    gap: 24px;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .developer-credit {
    font-size: 0.76rem;
  }
}

/* CELULAR PEQUENO */
@media (max-width: 420px) {
  .container {
    width: calc(100% - 24px);
  }

  .hero-title,
  .page-title {
    font-size: 2.15rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .intro-card,
  .final-box,
  .form-card,
  .contact-card {
    padding: 22px;
  }

  .hero-logo-main {
    width: min(92%, 260px);
  }

  .visual-card,
  .visual-image-card,
  .service-image-card,
  .contact-image-card {
    min-height: 320px;
  }

  .preview-thumb {
    height: 240px;
  }

  .about-photo {
    min-height: 300px;
  }
}
/* ======================================================
   TABLET E CELULAR — TUDO MAIS CENTRALIZADO
   Colar no final do style.css
====================================================== */

@media (max-width: 1080px) {
  .hero-copy,
  .page-hero-layout > div:first-child,
  .intro-card,
  .intro-text,
  .preview-copy,
  .about-copy,
  .compact-head,
  .contact-card,
  .final-box {
    text-align: center;
  }

  .hero-text,
  .page-text,
  .section-description,
  .intro-text p,
  .preview-copy p,
  .about-copy p,
  .final-box p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .page-actions,
  .solution-actions,
  .final-actions {
    justify-content: center;
  }

  .hero-points {
    justify-content: center;
  }

  .page-visual,
  .hero-logo-area {
    justify-content: center;
  }

  .delivery-card,
  .why-card,
  .home-link-card,
  .process-card,
  .plan-card,
  .portfolio-card,
  .preview-card {
    text-align: center;
  }

  .delivery-card h3,
  .why-card h3,
  .home-link-card h3,
  .process-card h3,
  .plan-card h3,
  .portfolio-content h3,
  .preview-card h3,
  .delivery-card p,
  .why-card p,
  .home-link-card p,
  .process-card p,
  .plan-card p,
  .portfolio-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .portfolio-content {
    text-align: center;
  }

  .plan-card span,
  .plan-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .plan-card ul {
    text-align: center;
  }

  .contact-list {
    text-align: center;
  }

  .footer-layout,
  .footer-right,
  .footer-links {
    align-items: center;
    text-align: center;
  }

  .footer p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .primary-button,
  .secondary-button {
    justify-content: center;
  }

  .text-link {
    margin-left: auto;
    margin-right: auto;
  }

  .form-card {
    text-align: left;
  }

  .form-card .primary-button {
    text-align: center;
  }

  .input-group label {
    text-align: left;
  }

  .visual-card-content,
  .service-image-content,
  .contact-image-content {
    text-align: left;
  }
}
/* ======================================================
   AJUSTE ESPECÍFICO — TABLET GRANDE 800x1280
   Colar no final do style.css
====================================================== */

@media (min-width: 721px) and (max-width: 900px) {
  .container {
    width: calc(100% - 56px);
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 125px 0 72px;
  }

  .hero-layout,
  .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }

  .hero-copy,
  .page-hero-layout > div:first-child {
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-title,
  .page-title {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(3rem, 7vw, 4.4rem);
    line-height: 1.04;
  }

  .hero-text,
  .page-text {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.02rem;
  }

  .hero-actions,
  .page-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-logo-area {
    min-height: 360px;
  }

  .hero-logo-main {
    width: min(78%, 380px);
  }

  .hero-logo-stage::before {
    width: 340px;
    height: 340px;
  }

  .home-links-grid,
  .preview-cards,
  .plans-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .delivery-grid,
  .why-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .home-link-card,
  .delivery-card,
  .why-card,
  .process-card,
  .plan-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .preview-layout,
  .intro-card,
  .about-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: center;
  }

  .preview-copy,
  .about-copy,
  .intro-text {
    max-width: 680px;
    margin: 0 auto;
  }

  .preview-thumb {
    height: 300px;
  }

  .page-visual {
    justify-content: center;
    min-height: auto;
  }

  .visual-card,
  .visual-image-card,
  .service-image-card,
  .contact-image-card {
    width: min(100%, 520px);
    min-height: 440px;
  }

  .about-photo {
    max-width: 620px;
    min-height: 430px;
    margin: 0 auto;
  }

  .about-brand-visual {
    min-height: 360px;
  }

  .about-floating-logo {
    width: min(80%, 380px);
  }

  .final-box {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .footer-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }
}
/* ======================================================
   TABLET GRANDE — CARDS DE 3 ITENS UM EMBAIXO DO OUTRO
   Faixa tipo 800x1280
====================================================== */

@media (min-width: 721px) and (max-width: 900px) {
  .home-links-grid,
  .preview-cards,
  .portfolio-grid {
    grid-template-columns: 1fr !important;
    justify-items: center;
  }

  .home-link-card,
  .preview-card,
  .portfolio-card {
    width: min(100%, 520px);
  }
}