/*
Theme Name: Alena Tours
Theme URI: https://alenatours.com/
Author: Elena LD
Description: Tema editorial e responsivo para excursões em Nova York.
Version: 1.0.0
Text Domain: alena-tours
*/

:root {
  --ink: #12233f;
  --ink-soft: #38506d;
  --cream: #f6f1e8;
  --paper: #fffdf9;
  --coral: #e95645;
  --coral-dark: #c83f31;
  --gold: #c89f63;
  --line: rgba(18, 35, 63, .13);
  --shadow: 0 22px 60px rgba(18, 35, 63, .12);
  --radius: 26px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.25rem; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.025em;
}
.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--coral);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 32px; height: 1px; background: currentColor; content: ""; }
.section { padding: 110px 0; }
.section-title { max-width: 760px; font-size: clamp(2.7rem, 6vw, 5.2rem); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
}
.section-heading p { max-width: 430px; margin: 0; color: var(--ink-soft); }
.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .25s, background .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); background: var(--coral-dark); box-shadow: 0 12px 26px rgba(233, 86, 69, .25); }
.btn--ghost { border-color: rgba(255,255,255,.5); background: transparent; }
.btn--ghost:hover { background: #fff; color: var(--ink); box-shadow: none; }
.text-link { color: var(--coral); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}
.site-header.is-scrolled {
  position: fixed;
  background: rgba(18, 35, 63, .95);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 92px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; font-weight: 600; }
.brand img { max-height: 58px; width: auto; }
.brand span { color: var(--coral); }
.site-nav ul { display: flex; gap: 30px; margin: 0; padding: 0; list-style: none; }
.site-nav a { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.header-phone { font-size: .82rem; font-weight: 700; }
.header-cta { min-height: 42px; padding-inline: 18px; background: #fff; color: var(--ink); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: #fff; font-size: 0; }
.nav-toggle::before, .nav-toggle::after { display: block; width: 18px; height: 2px; margin: 5px auto; background: currentColor; content: ""; }

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 170px 0 95px;
  background: var(--ink);
  color: #fff;
}
.hero-media, .hero-media::after { position: absolute; inset: 0; }
.hero-media {
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}
.hero-media::after {
  background:
    linear-gradient(90deg, rgba(9,22,42,.94) 0%, rgba(9,22,42,.72) 43%, rgba(9,22,42,.18) 76%),
    linear-gradient(0deg, rgba(9,22,42,.67), transparent 50%);
  content: "";
}
.hero-content { position: relative; z-index: 2; max-width: 790px; }
.hero h1 { max-width: 780px; font-size: clamp(4rem, 8.4vw, 7.8rem); }
.hero-copy { max-width: 610px; margin: 28px 0 34px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.6vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-note {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1180px)/2));
  bottom: 96px;
  width: 185px;
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.5);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
}
.trust-strip { position: relative; z-index: 4; margin-top: -1px; background: var(--ink); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.15); }
.trust-item { padding: 27px 25px; border-right: 1px solid rgba(255,255,255,.15); text-align: center; font-size: .78rem; letter-spacing: .04em; }
.trust-item:last-child { border-right: 0; }

.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tour-card { position: relative; overflow: hidden; min-height: 550px; border-radius: var(--radius); background: #d8d8d8; color: #fff; box-shadow: var(--shadow); }
.tour-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.tour-card:hover img { transform: scale(1.04); }
.tour-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,22,42,.92), rgba(9,22,42,.04) 70%); content: ""; }
.tour-card-content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 34px; }
.tour-meta { display: flex; gap: 14px; margin-bottom: 14px; color: rgba(255,255,255,.75); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.tour-card h3 { margin-bottom: 20px; font-size: 2rem; line-height: 1.05; }
.tour-card .text-link { color: #fff; }
.tour-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg,#47627d,#142842); }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(50px,8vw,120px); }
.about-collage { position: relative; min-height: 650px; }
.about-main { width: 78%; height: 600px; object-fit: cover; border-radius: 200px 200px 24px 24px; }
.about-main.image-placeholder { background: linear-gradient(145deg, #d9c6b4, #8294a8); }
.about-accent { position: absolute; right: 0; bottom: 8%; width: 43%; aspect-ratio: .82; object-fit: cover; border: 10px solid var(--cream); border-radius: 20px; box-shadow: var(--shadow); }
.about-copy h2 { margin-bottom: 30px; font-size: clamp(3.2rem,6vw,5.5rem); }
.about-copy p { color: var(--ink-soft); }
.signature { margin: 26px 0; color: var(--coral); font-family: "Cormorant Garamond",serif; font-size: 2rem; font-style: italic; }

.benefits { background: var(--ink); color: #fff; }
.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 60px; background: rgba(255,255,255,.15); }
.benefit { min-height: 280px; padding: 38px 30px; background: var(--ink); }
.benefit-number { display: block; margin-bottom: 52px; color: var(--coral); font-size: .75rem; font-weight: 800; }
.benefit h3 { margin-bottom: 15px; font-size: 1.65rem; }
.benefit p { margin: 0; color: rgba(255,255,255,.62); font-size: .88rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review { padding: 34px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.stars { margin-bottom: 22px; color: var(--gold); letter-spacing: .2em; }
.review blockquote { margin: 0 0 26px; font-family: "Cormorant Garamond",serif; font-size: 1.45rem; line-height: 1.3; }
.review cite { font-size: .78rem; font-style: normal; font-weight: 800; }

.final-cta { padding: 55px 0; background: var(--coral); color: #fff; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.final-cta h2 { max-width: 650px; font-size: clamp(2.6rem,5vw,4.8rem); }
.final-cta .btn { flex: 0 0 auto; background: #fff; color: var(--ink); }

.page-hero { padding: 190px 0 90px; background: var(--ink); color: #fff; }
.page-hero h1 { font-size: clamp(3.8rem,8vw,7rem); }
.archive-content { padding: 90px 0 120px; }
.archive-content .tour-grid { grid-template-columns: repeat(2,1fr); }
.archive-content .tour-card { min-height: 620px; }
.entry-wrap { width: min(820px, calc(100% - 40px)); margin-inline: auto; padding: 90px 0 120px; }
.entry-wrap h2, .entry-wrap h3 { margin: 1.6em 0 .6em; }
.entry-wrap h2 { font-size: 2.6rem; }
.entry-wrap h3 { font-size: 2rem; }
.entry-wrap ul { padding-left: 1.2rem; }
.entry-featured { width: 100%; max-height: 680px; object-fit: cover; border-radius: 28px; margin-bottom: 45px; }
.tour-booking { margin-top: 55px; padding: 36px; border-radius: 24px; background: var(--cream); }
.tour-booking h3 { margin: 0 0 12px; }

.site-footer { padding: 75px 0 30px; background: #09162a; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 55px; }
.footer-brand p { max-width: 360px; margin-top: 20px; color: rgba(255,255,255,.55); font-size: .88rem; }
.footer-title { margin-bottom: 18px; color: rgba(255,255,255,.45); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-menu { margin: 0; padding: 0; list-style: none; }
.footer-menu li { margin: 8px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .72rem; }
.whatsapp-float { position: fixed; z-index: 20; right: 22px; bottom: 22px; display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.2); font-size: 1.35rem; font-weight: 900; }

@media (max-width: 1024px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .site-nav { position: fixed; inset: 0; z-index: -1; display: grid; place-items: center; visibility: hidden; background: var(--ink); opacity: 0; transition: .25s; }
  .nav-open .site-nav { z-index: 10; visibility: visible; opacity: 1; }
  .site-nav ul { flex-direction: column; align-items: center; gap: 22px; }
  .site-nav a { font-family: "Cormorant Garamond",serif; font-size: 2.6rem; text-transform: none; }
  .nav-toggle { position: relative; z-index: 11; display: block; }
  .header-phone { display: none; }
  .header-actions { grid-column: 3; }
  .tour-grid { grid-template-columns: repeat(2,1fr); }
  .tour-card:last-child { grid-column: 1 / -1; min-height: 420px; }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 620px); --radius: 20px; }
  .section { padding: 76px 0; }
  .section-heading { display: block; margin-bottom: 36px; }
  .section-heading p { margin-top: 20px; }
  .header-inner { min-height: 74px; }
  .brand { font-size: 1.65rem; }
  .brand img { max-height: 43px; }
  .header-cta { display: none; }
  .hero { min-height: 720px; padding: 140px 0 64px; }
  .hero-media { background-position: 62% center; }
  .hero-media::after { background: linear-gradient(0deg,rgba(9,22,42,.96),rgba(9,22,42,.2) 88%); }
  .hero h1 { font-size: clamp(3.5rem,17vw,5.2rem); }
  .hero-note { display: none; }
  .hero-actions .btn { width: 100%; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
  .tour-grid, .archive-content .tour-grid, .reviews-grid { grid-template-columns: 1fr; }
  .tour-card, .archive-content .tour-card { min-height: 500px; }
  .tour-card:last-child { grid-column: auto; min-height: 500px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-collage { min-height: 490px; }
  .about-main { height: 460px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit { min-height: 220px; }
  .benefit-number { margin-bottom: 32px; }
  .final-cta-inner { display: block; }
  .final-cta .btn { width: 100%; margin-top: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
}
