:root {
  /* Superfícies */
  --gradient-hero-bg: linear-gradient(180deg, #000000 0%, #202020 100%);
  --color-footer-bg: #202020;

  /* Botão outline */
  --btn-outline-bg: rgba(255, 255, 255, 0.17);
  --btn-outline-border: #FFFFFF;

  /* Gradientes de ação */
  --gradient-1: linear-gradient(135deg, #D93B2B 0%, #7A1207 100%); /* Cardápio - tomate */
  --gradient-2: linear-gradient(135deg, #FFC93C 0%, #FF7A00 100%); /* Avaliações - dourado */
  --gradient-3: linear-gradient(135deg, #E63960 0%, #A3123A 100%); /* Fidelidade - rosa/vermelho */
  --gradient-4: linear-gradient(135deg, #FF7A00 0%, #D93B2B 100%); /* Pedir Agora - CTA forte */
  --gradient-5: linear-gradient(135deg, #2E7D5B 0%, #14432E 100%); /* Localização - verde manjericão */
  --gradient-6: linear-gradient(135deg, #7741AD 0%, #F000EA 100%); /* Promoções - roxo/magenta */
  --gradient-7: linear-gradient(135deg, #415DAD 0%, #20A6AC 100%);

  /* Decoração */
  --line-base: rgba(51, 51, 54, 0.34);
  --line-trail: #FF7A00;

  /* Tipografia */
  --font-ui-label: "Plus Jakarta Sans", sans-serif;
  --font-ui-footer: "DM Sans", sans-serif;

  /* Espaçamento */
  --space-grid-gap: 16px;
  --space-hero-padding: 3em;

  /* Layout */
  --container-max-width: 720px;
  --bp-mobile: 480px;

  /* Bordas */
  --radius-card: 20px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-ui-label);
  background: #000;
  color: #fff;
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: var(--space-hero-padding) 1em;
  background: var(--gradient-hero-bg);
  overflow: hidden;
}

.lines {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90vw;
  pointer-events: none;
  z-index: 0;
}

.line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: var(--line-base);
  overflow: hidden;
}

.line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, transparent, var(--line-trail));
  animation: drop 5s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.line:nth-child(1) { margin-left: -30%; }
.line:nth-child(1)::after { animation-delay: 2s; }
.line:nth-child(2) { margin-left: -10%; }
.line:nth-child(2)::after { animation-delay: 2.5s; }
.line:nth-child(3) { margin-left: 10%; }
.line:nth-child(3)::after { animation-delay: 3s; }
.line:nth-child(4) { margin-left: 30%; }
.line:nth-child(4)::after { animation-delay: 3.5s; }

@keyframes drop {
  0% { top: -50%; }
  100% { top: 110%; }
}

/* ---------- PERFIL ---------- */

.profile {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  margin-bottom: 1em;
  text-align: center;
}

.profile img {
  width: clamp(90px, 28vw, 140px);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.profile-name {
  margin: 0.75em 0 0.25em;
  font-family: var(--font-ui-label);
  font-weight: 700;
  font-size: 1.3rem;
}

.profile-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ---------- GRID DE AÇÕES ---------- */

.actions-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max-width);
  margin-top: 2em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-grid-gap);
}

.action-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  aspect-ratio: 1080 / 1350;
  border-radius: var(--radius-card);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-ui-label);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 1em;
  transition: transform 0.2s, filter 0.3s;
}

.action-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #1A3C16, #9F200D);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.action-card:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.action-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.action-icon {
  font-size: 2rem;
  line-height: 1;
}


.action-card.gradient-1 { background: var(--gradient-1); }
.action-card.gradient-2 { background: var(--gradient-2); }
.action-card.gradient-3 { background: var(--gradient-3); }
.action-card.gradient-4 { background: var(--gradient-4); }
.action-card.gradient-5 { background: var(--gradient-5); }
.action-card.gradient-6 { background: var(--gradient-6); }
.action-card.gradient-7 { background: var(--gradient-7); }

.action-card.outline {
  background: var(--btn-outline-bg);
  border: 1px solid var(--btn-outline-border);
}

.action-card.has-image {
  position: relative;
  background-color: #fff;
  background-size: cover;
  background-position: center;
}

@media (max-width: 480px) {
  .actions-grid {
    gap: 12px;
  }
  .action-card {
    font-size: 13px;
    padding: 0.75em;
  }
  .action-icon {
    font-size: 1.6rem;
  }
}

/* ---------- RODAPÉ ---------- */

.site-footer {
  background: var(--color-footer-bg);
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  font-family: var(--font-ui-footer);
  font-size: 12px;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  transition: opacity 0.3s;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-copy {
  color: #fff;
  opacity: 0.6;
  margin: 0;
}
