/* Martino Pacheco — LP v0 (condensada)
   Background: paper-cream do brandbook
   Logo PNG do brandbook 2011
*/

:root {
  --paper-cream: #EDECE5;
  --brand-navy: #1A5673;
  --brand-cyan: #4FBBC2;
  --line-color: #9AC9D0;
  --row-cyan: #BFDFE3;
  --text-dark: #1A5673;
  --text-light: #FFFFFF;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--paper-cream);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-5) var(--space-3) var(--space-3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--brand-navy);
  max-width: 22ch;
}

.info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.addr {
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.hours {
  font-size: 0.9rem;
  color: var(--brand-navy);
  opacity: 0.75;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 100%;
  max-width: 320px;
}

.cta {
  display: block;
  padding: 0.85rem var(--space-3);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease, transform 0.15s ease, background 0.2s ease;
  text-align: center;
}

.cta-primary { background: var(--brand-navy); color: var(--text-light); }
.cta-secondary { background: transparent; color: var(--brand-navy); border: 1px solid var(--line-color); }
.cta:hover { opacity: 0.88; }
.cta-secondary:hover { background: var(--row-cyan); opacity: 1; }
.cta:active { transform: scale(0.98); }

footer {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-4) var(--space-3);
  border-top: 1px solid var(--line-color);
  text-align: center;
  font-size: 0.78rem;
  color: var(--brand-navy);
  opacity: 0.75;
  line-height: 1.7;
}

footer p { margin-bottom: var(--space-1); }
footer p:last-child { margin-bottom: 0; }

/* Desktop */
@media (min-width: 768px) {
  main { padding: var(--space-6) var(--space-4); gap: var(--space-5); }
  .logo { max-width: 520px; }
  .headline { font-size: 2rem; max-width: 24ch; }
  .addr { font-size: 1.05rem; }
  .hours { font-size: 1rem; }
  .cta-group { flex-direction: row; max-width: none; justify-content: center; }
  .cta { min-width: 220px; }
}

/* Acessibilidade */
.cta:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brand-cyan);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
