/* =========================================================
   YAMI SUSHII — Landing Page Premium
   Agência Destaque | 2026
   ========================================================= */

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

/* ── Tokens de Design ─────────────────────────────────── */
:root {
  --red: #c0392b;
  --red-glow: #e74c3c;
  --red-deep: #8b1a1a;
  --black: #080808;
  --black-card: #111111;
  --black-lift: #181818;
  --white: #f5f0ec;
  --muted: #9a8f8a;
  --border: rgba(192, 57, 43, 0.18);
  --radius-card: 20px;
  --radius-btn: 50px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────────── */
/* ── Bloqueio global de seleção de texto e cursor ─────── */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  cursor: default;
}

/* ── Cursores ────────────────────────────────────────── */
a,
button,
.card,
.sticky-cta,
.agency-watermark {
  cursor: pointer;
}

.hero,
.cards-grid,
.page-wrapper {
  cursor: default;
}

/* ── Background: Palco Escuro com Profundidade ─────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(192, 57, 43, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(192, 57, 43, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 80% 60%, rgba(192, 57, 43, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Grain fotográfico sutil */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ── Layout Wrapper ───────────────────────────────────── */
.page-wrapper {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 0 36px;
  text-align: center;
  gap: 0;
  -webkit-user-select: none;
  user-select: none;
}

.hero__logo-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2.5px solid var(--red);
  background: var(--black-card);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 8px rgba(192, 57, 43, 0.08),
    0 0 40px rgba(192, 57, 43, 0.30),
    0 0 100px rgba(192, 57, 43, 0.14);
  overflow: hidden;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.hero__logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Kanji decorativo */
.hero__kanji {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 8px;
  -webkit-user-select: none;
  user-select: none;
}

.hero__brand {
  font-size: clamp(36px, 9vw, 52px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1.5px;
  margin-bottom: 4px;
  -webkit-user-select: none;
  user-select: none;
}

.hero__brand span {
  color: var(--red);
}

.hero__sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  -webkit-user-select: none;
  user-select: none;
}

.hero__tagline {
  font-size: clamp(13px, 3.5vw, 15px);
  font-weight: 400;
  color: rgba(245, 240, 236, 0.72);
  line-height: 1.6;
  max-width: 300px;
  -webkit-user-select: none;
  user-select: none;
}

.hero__tagline strong {
  color: var(--white);
  font-weight: 600;
}

/* ── Divisor Pincelado ────────────────────────────────── */
.brush-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, var(--red-glow) 50%, var(--red) 70%, transparent 100%);
  border-radius: 2px;
  margin: 28px 0;
  position: relative;
  opacity: 0.55;
}

.brush-divider::before {
  content: '\5BFF\53F8';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--black);
  padding: 0 12px;
  font-size: 13px;
  color: var(--red);
  opacity: 0.8;
  letter-spacing: 0.15em;
}

/* ── Grid de Cards CTA ────────────────────────────────── */
.section-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Coluna única em TODAS as telas — sem exceção */
.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.card {
  width: 100%;
}

/* Card base */
.card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  border: 1px solid var(--border);
  background: var(--black-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.06) 0%, transparent 60%);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover::before,
.card:focus-visible::before {
  opacity: 1;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-4px) scale(1.012);
  border-color: rgba(192, 57, 43, 0.45);
  box-shadow:
    0 12px 40px rgba(192, 57, 43, 0.22),
    0 4px 16px rgba(0, 0, 0, 0.55);
  outline: none;
}

.card:active {
  transform: translateY(-1px) scale(1.004);
}

/* Imagem do card ocupa 100% */
.card__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
  transition: transform var(--transition);
}

.card:hover .card__img {
  transform: scale(1.025);
}

/* Badge de destaque (card principal WhatsApp) */
.card--primary {
  border-color: rgba(192, 57, 43, 0.35);
  box-shadow: 0 0 0 1px rgba(192, 57, 43, 0.12), 0 8px 32px rgba(192, 57, 43, 0.14);
}




/* ── Floating WhatsApp Sticky ─────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  box-shadow:
    0 0 0 0 rgba(192, 57, 43, 0.5),
    0 8px 32px rgba(192, 57, 43, 0.45);
  animation: pulse-ring 2.4s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.sticky-cta:hover {
  transform: translateX(-50%) scale(1.04);
  box-shadow: 0 12px 40px rgba(192, 57, 43, 0.6);
}

.sticky-cta svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
  flex-shrink: 0;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.55), 0 8px 32px rgba(192, 57, 43, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(192, 57, 43, 0), 0 8px 32px rgba(192, 57, 43, 0.4);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0), 0 8px 32px rgba(192, 57, 43, 0.4);
  }
}

/* Espaço extra para o sticky CTA não bloquear o último card */
.bottom-spacer {
  height: 90px;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  text-align: center;
  padding: 32px 0 20px;
}

.footer__social {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.footer__social a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.footer__social a:hover {
  color: var(--red-glow);
}

.footer__location {
  font-size: 11px;
  color: rgba(154, 143, 138, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Animação de entrada ──────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  animation: fadeUp 0.7s ease both;
}

.brush-divider {
  animation: fadeUp 0.7s 0.15s ease both;
}

.section-label {
  animation: fadeUp 0.7s 0.2s ease both;
}

.card:nth-child(1) {
  animation: fadeUp 0.6s 0.25s ease both;
}

.card:nth-child(2) {
  animation: fadeUp 0.6s 0.35s ease both;
}

.card:nth-child(3) {
  animation: fadeUp 0.6s 0.45s ease both;
}

.card:nth-child(4) {
  animation: fadeUp 0.6s 0.55s ease both;
}

/* ── Responsivo: Tablet (>= 600px) ───────────────────── */
@media (min-width: 600px) {
  .page-wrapper {
    padding: 0 24px 64px;
  }

  /* Coluna única mantida — sem alteração de grid */
  .cards-grid {
    flex-direction: column;
    gap: 16px;
  }

  .hero__logo-ring {
    width: 200px;
    height: 200px;
  }
}

/* ── Responsivo: Desktop (>= 768px) ──────────────────── */
@media (min-width: 768px) {
  .page-wrapper {
    max-width: 640px;
    padding: 0 28px 80px;
  }

  .hero {
    padding: 64px 0 44px;
  }

  /* Coluna única em desktop também — todos os banners mesma largura */
  .cards-grid {
    flex-direction: column;
    gap: 16px;
  }

  .card--primary {
    grid-column: unset;
  }

  .card:not(.card--primary) {
    grid-column: unset;
  }
}

/* ── Responsivo: Desktop Largo (>= 1100px) ───────────── */
@media (min-width: 1100px) {
  .page-wrapper {
    max-width: 680px;
  }

  .cards-grid {
    gap: 18px;
  }
}

/* ── Rodapé Assessoria Destaque ───────────────────────── */
.site-footer {
  width: 100%;
  padding: 1rem 0 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.footer-agency-link {
  display: block;
  width: 200px;
  max-width: 80vw;
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  margin: 0 auto;
}

.footer-agency-link img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.footer-agency-link:hover {
  opacity: 0.95;
  transform: scale(1.02);
}

/* ── Link Instagram no Hero ───────────────────────────── */
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.insta-link svg {
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.insta-link:hover {
  color: var(--red);
}

.insta-link:hover svg {
  opacity: 1;
}