/* ============================================================
   VALÉRIA JANUZZI — passeioslisboa.pt
   style.css — folha de estilos partilhada por todas as páginas
   ============================================================ */

/* ── SKIP LINK (acessibilidade — visível só ao focar via teclado) ── */
.skip-link {
  position: absolute;
  left: 10px; top: -60px;
  z-index: 1000;
  background: var(--azul);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 10px; }

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

/* ── TOKENS ── */
:root {
  --areia:        #F5EFE6;
  --areia-mid:    #EDE4D6;
  --tijolo:       #B5451B;
  --tijolo-soft:  rgba(181,69,27,.12);
  --tijolo-dark:  #8f340f;
  --azul:         #1A3A5C;
  --azul-soft:    #2C5F8A;
  --azul-deep:    #112940;
  --ouro:         #C9973A;
  --texto:        #2A1F1A;
  --muted:        #7A6A5E;
  --white:        #ffffff;
  --rule:         rgba(181,69,27,.25);

  /* tipografia */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  /* espaçamentos de secção */
  --section-pad: clamp(56px, 9vw, 96px) 5%;
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--areia);
  color: var(--texto);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITÁRIOS ── */
.eyebrow {
  display: block;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--tijolo); margin-bottom: 14px;
}
.serif { font-family: var(--font-serif); }
.rule-h {
  display: block; width: 40px; height: 2px;
  background: var(--tijolo); margin-bottom: 24px;
}

/* ── HEADER / NAV ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: rgba(245,239,230,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.logo {
  position: relative;
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 700;
  color: var(--azul); line-height: 1; text-decoration: none;
}
.logo small {
  display: block;
  font-family: var(--font-sans);
  font-size: .58rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--tijolo); margin-top: 2px;
}

/* ── EASTER EGG: aviãozinho que decola em "Valéria" e pousa em "Lisboa" ── */
.logo-plane {
  position: absolute;
  left: -6%; top: -25%;
  font-size: .8rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: rotate(-12deg);
  animation: logoPlaneFly 12s ease-in-out infinite;
}
@keyframes logoPlaneFly {
  0%, 75%  { left: -6%; top: -25%; opacity: 0; transform: rotate(-12deg); }
  80%      { opacity: 1; }
  88%      { left: 55%; top: 30%; transform: rotate(8deg); }
  95%      { left: 98%; top: 88%; opacity: 1; transform: rotate(28deg); }
  99%      { left: 98%; top: 88%; opacity: 0; transform: rotate(28deg); }
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 400;
  letter-spacing: .06em;
  color: var(--texto); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--tijolo); }
.nav-links a.active { font-weight: 600; }

.nav-cta {
  background: var(--tijolo); color: var(--white);
  border: none; border-radius: 40px;
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: .8rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  white-space: nowrap;
  display: flex; align-items: center; gap: 7px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--tijolo-dark); }

/* menu mobile */
.nav-menu-btn {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--texto); padding: 4px;
}
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--areia);
  border-top: 1px solid var(--rule);
  padding: 20px 5%; gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: .9rem; color: var(--texto);
  text-decoration: none; padding: 13px 0;
  border-bottom: 1px solid var(--rule);
}
.nav-mobile a:last-child { border-bottom: none; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta.desktop { display: none; }
  .nav-menu-btn { display: block; }
}

/* ── HERO (base — override por página com a imagem certa) ── */
.hero {
  min-height: 72vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 120px 5% 60px;
}
/* index.html usa min-height: 100svh e tem scroll-hint — mantido inline */
.hero-inner { max-width: 700px; }
.hero-eyebrow {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 18px; display: block;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: #F5C98A; }
.hero-desc {
  font-size: clamp(.95rem, 2.5vw, 1.05rem);
  line-height: 1.75; color: rgba(255,255,255,.85);
  max-width: 540px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BOTÕES ── */
.btn-primary {
  background: var(--tijolo); color: var(--white);
  border: none; border-radius: 40px;
  padding: 15px 30px;
  font-family: var(--font-sans);
  font-size: .9rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 24px rgba(181,69,27,.45);
  transition: background .2s;
}
.btn-primary:hover { background: var(--tijolo-dark); }

.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 40px; padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: .9rem; font-weight: 400;
  cursor: pointer; text-decoration: none;
  display: inline-block;
  transition: border-color .2s;
}
.btn-ghost:hover { border-color: var(--white); }

.btn-white {
  background: var(--white); color: var(--tijolo);
  border: none; border-radius: 40px;
  padding: 15px 30px;
  font-family: var(--font-sans);
  font-size: .9rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity .2s;
}
.btn-white:hover { opacity: .9; }

@media (max-width: 500px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--azul);
  padding: 18px 5%;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: clamp(16px, 4vw, 48px);
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .78rem; color: rgba(255,255,255,.8);
  font-weight: 400; white-space: nowrap;
}
.trust-item strong { color: var(--white); font-weight: 600; }
.trust-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.3);
}

/* ── SECÇÕES ── */
section { padding: var(--section-pad); }
.section-wrap { max-width: 1100px; margin: 0 auto; }

/* ── COMO FUNCIONA / ROTEIRO ── */
.como-section { background: var(--areia); }
.como-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px); align-items: start;
}
.como-grid h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700; line-height: 1.2;
  color: var(--azul); margin-bottom: 20px;
}
.como-grid p {
  font-size: .95rem; line-height: 1.8;
  color: var(--muted); margin-bottom: 14px;
}
.passos-lista { list-style: none; display: flex; flex-direction: column; }
.passo {
  display: flex; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid var(--rule);
}
.passo:last-child { border-bottom: none; }
.passo-num {
  font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 700;
  color: var(--tijolo); flex-shrink: 0; line-height: 1; width: 36px;
}
.passo-content h3 {
  font-family: var(--font-sans);
  font-size: .92rem; font-weight: 700;
  color: var(--azul); margin-bottom: 5px;
}
.passo-content p { font-size: .85rem; line-height: 1.7; color: var(--muted); }

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

/* ── INCLUI / CARDS ── */
.inclui-section { background: var(--azul); }
.inclui-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700; color: var(--white); margin-bottom: 40px;
}
.inclui-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.inclui-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 26px 22px;
}
.inclui-icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.inclui-card h3 {
  font-family: var(--font-sans);
  font-size: .88rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.inclui-card p { font-size: .78rem; line-height: 1.65; color: rgba(255,255,255,.6); }

/* ── DEPOIMENTOS ── */
.depo-section { background: var(--areia); }
.depo-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700; color: var(--azul); margin-bottom: 36px;
}
.depo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.depo-card {
  background: var(--white); border-radius: 8px;
  padding: 24px; border: 1px solid rgba(181,69,27,.1);
}
.depo-stars { color: var(--ouro); font-size: .9rem; margin-bottom: 12px; letter-spacing: 2px; }
.depo-text { font-size: .88rem; line-height: 1.75; color: var(--texto); margin-bottom: 16px; font-style: italic; }
.depo-author { font-size: .72rem; font-weight: 600; color: var(--tijolo); letter-spacing: .06em; text-transform: uppercase; }

/* ── CTA SECTION ── */
.cta-section { background: var(--tijolo); padding: clamp(56px, 9vw, 90px) 5%; }
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.cta-inner p { font-size: .95rem; line-height: 1.75; color: rgba(255,255,255,.82); margin-bottom: 36px; }
.cta-contatos {
  margin-top: 28px;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 24px;
}
.cta-contato-item {
  font-size: .8rem; color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: 6px;
}
.cta-contato-item a { color: rgba(255,255,255,.9); text-decoration: none; font-weight: 500; }

/* ── FAQ ── */
.faq-section { background: var(--areia); }
.faq-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700; color: var(--azul); margin-bottom: 36px;
}
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  text-align: left;
  font-family: var(--font-sans); font-size: .93rem; font-weight: 500;
  color: var(--texto); transition: color .2s;
}
.faq-q:hover { color: var(--tijolo); }
.faq-q svg { flex-shrink: 0; color: var(--tijolo); transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { font-size: .88rem; line-height: 1.75; color: var(--muted); padding-bottom: 20px; }

/* ── LINKS INTERNOS / OUTROS PASSEIOS ── */
.outros-passeios { background: var(--areia-mid); }
.outros-passeios h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: var(--azul); margin-bottom: 28px;
}
.links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.link-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 8px; padding: 20px 18px;
  text-decoration: none;
  transition: border-color .2s, transform .2s;
  display: block;
}
.link-card:hover { border-color: var(--tijolo); transform: translateY(-2px); }
.link-card-eyebrow {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--tijolo); margin-bottom: 6px; display: block;
}
.link-card h3 {
  font-family: var(--font-serif);
  font-size: .95rem; font-weight: 700;
  color: var(--azul); line-height: 1.3;
}

/* ── FOOTER ── */
footer { background: var(--azul); padding: clamp(40px, 6vw, 64px) 5% 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex; flex-wrap: wrap; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}
.footer-brand { flex: 1 1 220px; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.footer-brand-sub {
  font-size: .65rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ouro); margin-bottom: 14px; display: block;
}
.footer-brand p { font-size: .8rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-col { flex: 1 1 150px; }
.footer-col h4 {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .82rem; color: rgba(255,255,255,.65);
  text-decoration: none; transition: color .2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
}
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.65); }
.footer-social { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-social a {
  font-size: .72rem; color: rgba(255,255,255,.7);
  text-decoration: none; transition: color .2s;
}
.footer-social a:hover { color: var(--white); }

/* ── WHATSAPP FLUTUANTE ── */
.wpp-float {
  position: fixed; bottom: 24px; right: 20px; z-index: 500;
  background: #25D366; color: var(--white);
  border-radius: 50%; width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  text-decoration: none; transition: transform .2s;
}
.wpp-float:hover { transform: scale(1.08); }

/* ── DINAMISMO: revelação suave ao rolar a página ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
/* cascata sutil dentro de grades (cards, depoimentos, etc.) */
[data-reveal]:nth-child(2) { transition-delay: .06s; }
[data-reveal]:nth-child(3) { transition-delay: .12s; }
[data-reveal]:nth-child(4) { transition-delay: .18s; }
[data-reveal]:nth-child(5) { transition-delay: .24s; }
[data-reveal]:nth-child(6) { transition-delay: .30s; }
[data-reveal]:nth-child(7) { transition-delay: .36s; }
[data-reveal]:nth-child(8) { transition-delay: .42s; }

/* ── DINAMISMO: zoom lento e contínuo no banner ── */
@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.12); }
}

/* ── DINAMISMO: respiração sutil no botão do WhatsApp ── */
@keyframes wppPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 0 8px rgba(37,211,102,.18); }
}
.wpp-float { animation: wppPulse 3.2s ease-in-out infinite; }

/* ── DINAMISMO: sublinhado animado no menu ── */
.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--tijolo);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

/* Respeita quem prefere menos animação */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ── SECÇÕES ESPECÍFICAS DO INDEX ── */

/* citação destaque */
.quote-section { background: var(--azul); padding: clamp(48px, 8vw, 80px) 5%; }
.quote-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem; line-height: .6;
  color: var(--tijolo); opacity: .6;
  display: block; margin-bottom: 16px;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 400; font-style: italic;
  line-height: 1.5; color: var(--white); margin-bottom: 24px;
}
.quote-author {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* sobre */
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px); align-items: center;
}
.sobre-img-wrap { position: relative; }
.sobre-img {
  width: 100%; border-radius: 4px; display: block;
  aspect-ratio: 3/4; object-fit: cover; object-position: center 32%;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-soft) 100%);
}
.sobre-img-caption {
  position: absolute; bottom: -1px; left: 0; right: 0;
  background: var(--tijolo); padding: 14px 20px;
  border-radius: 0 0 4px 4px;
}
.sobre-img-caption p { font-size: .72rem; color: rgba(255,255,255,.9); line-height: 1.5; }
.sobre-img-caption strong { font-size: .78rem; font-weight: 600; color: var(--white); }
.sobre-texto h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700; line-height: 1.2;
  color: var(--azul); margin-bottom: 20px;
}
.sobre-texto p { font-size: .95rem; line-height: 1.8; color: var(--muted); margin-bottom: 14px; }
.sobre-texto p:last-of-type { margin-bottom: 28px; }
.sobre-selo {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--tijolo-soft); border: 1px solid var(--rule);
  border-radius: 40px; padding: 10px 18px;
  font-size: .78rem; color: var(--tijolo); font-weight: 600;
}
@media (max-width: 700px) { .sobre-grid { grid-template-columns: 1fr; } }

/* problema / aviso */
.problema-section { background: var(--areia-mid); }
.problema-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.problema-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700; line-height: 1.2;
  color: var(--azul); margin-bottom: 20px;
}
.problema-inner p { font-size: .95rem; line-height: 1.8; color: var(--muted); margin-bottom: 14px; }
