/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Canela';
  src: url('canela-text-trial/CanelaText-Thin-Trial.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('canela-text-trial/CanelaText-Light-Trial.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('canela-text-trial/CanelaText-Regular-Trial.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('canela-text-trial/CanelaText-Medium-Trial.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --wine: #43102F;
  --sand: #D0B995;
  --off-white: #F2EFF1;
  --white: #FFFFFF;

  --font-title: 'Canela', 'Georgia', serif;
  --font-body: 'Montserrat', sans-serif;

  --max-width: 1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--wine);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow { max-width: 760px; }

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 400;
  color: var(--wine);
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow-dark { color: var(--wine); opacity: 0.7; }
.eyebrow-light { color: var(--sand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 30px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--wine);
  color: var(--off-white);
  box-shadow: 0 8px 24px rgba(67, 16, 47, 0.25);
}
.btn-primary:hover { background: #571640; }

.btn-secondary {
  background: var(--sand);
  color: var(--wine);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover { background: #dac6a6; }

.icon-wa { width: 20px; height: 20px; flex-shrink: 0; }

/* Logo recolorida via mask (arte original é dourada; aqui é preenchida com a cor vinho/vermelha da marca) */
.logo-mask {
  display: inline-block;
  background-color: var(--wine);
  -webkit-mask-image: url('logo.png');
  mask-image: url('logo.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--wine);
  padding: 96px 0 96px;
}

.hero-bg {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  background:
    linear-gradient(160deg, rgba(67, 16, 47, 0.95) 0%, rgba(67, 16, 47, 0.85) 50%, rgba(67, 16, 47, 0.96) 100%),
    url('hero-bg.jpg') center / cover no-repeat;
  will-change: transform;
  z-index: 0;
}

.hero-grid { position: relative; z-index: 1; }

.hero-logo {
  height: 58px;
  aspect-ratio: 502 / 176;
  margin-bottom: 32px;
  background-color: var(--sand);
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--sand);
  margin-bottom: 16px;
  max-width: 46ch;
}

.hero-text {
  font-size: 0.98rem;
  color: rgba(242, 239, 241, 0.8);
  margin-bottom: 32px;
  max-width: 48ch;
}

.hero-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 239, 241, 0.2);
}

.signature-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--off-white);
}

.signature-role {
  font-size: 0.85rem;
  color: rgba(242, 239, 241, 0.75);
  margin-top: 4px;
}

.signature-region {
  font-size: 0.82rem;
  color: var(--sand);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 8px;
}

.hero-photo-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(67, 16, 47, 0) 55%, rgba(67, 16, 47, 0.55) 100%);
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--sand);
  border-radius: 18px;
  margin: 14px;
  z-index: 2;
  pointer-events: none;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 20ch;
}

.section-intro {
  max-width: 60ch;
  color: #5a3348;
  margin-bottom: 44px;
  font-size: 1rem;
}

.areas { background: var(--white); }

.phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.phase {
  padding-top: 18px;
  border-top: 2px solid var(--sand);
}

.phase-index {
  display: block;
  font-family: var(--font-title);
  font-weight: 400;
  color: var(--sand);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.phase h3 {
  font-size: 1.02rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.phase p {
  font-size: 0.88rem;
  color: #5a3348;
  line-height: 1.5;
}

.assistance-highlight {
  display: flex;
  align-items: center;
  gap: 26px;
  background: linear-gradient(135deg, var(--wine) 0%, #5c1a42 100%);
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 28px;
  box-shadow: 0 16px 40px rgba(67, 16, 47, 0.18);
}

.assistance-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(208, 185, 149, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.assistance-icon svg {
  width: 26px;
  height: 26px;
  color: var(--sand);
}

.assistance-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}

.assistance-highlight h3 {
  color: var(--off-white);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.assistance-content p:not(.assistance-tag) {
  font-size: 0.93rem;
  color: rgba(242, 239, 241, 0.85);
  max-width: 58ch;
}

.fine-print {
  margin-top: 28px;
  font-size: 0.82rem;
  color: #8a6b7c;
  font-style: italic;
}

.section-cta {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(67, 16, 47, 0.1);
  text-align: center;
}

.section-cta--noline {
  border-top: none;
  padding-top: 0;
}

.publico { background: var(--off-white); }

.publico .eyebrow,
.publico h2 {
  text-align: center;
}

.publico h2 { margin-left: auto; margin-right: auto; margin-bottom: 48px; }

.publico-general {
  margin-top: 32px;
  text-align: center;
  font-size: 0.9rem;
  color: #5a3348;
}

.publico-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.publico-card {
  background: var(--white);
  border-radius: 14px;
  border-top: 3px solid var(--sand);
  padding: 34px 32px;
  box-shadow: 0 10px 30px rgba(67, 16, 47, 0.06);
}

.publico-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.65;
  margin-bottom: 20px;
}

.publico-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.publico-card li {
  position: relative;
  padding-left: 22px;
  font-size: 0.98rem;
  color: var(--wine);
  line-height: 1.5;
}

.publico-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--sand);
  border-radius: 50%;
}

/* ---------- FAQ ---------- */
.faq { background: var(--off-white); }

.accordion-item {
  border-bottom: 1px solid rgba(67, 16, 47, 0.15);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wine);
}

.accordion-icon {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--sand);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-panel p {
  padding-bottom: 22px;
  font-size: 0.95rem;
  color: #5a3348;
  max-width: 66ch;
}

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(67, 16, 47, 0.93) 0%, rgba(67, 16, 47, 0.82) 50%, rgba(67, 16, 47, 0.94) 100%),
    url('hero-bg.jpg') center / cover no-repeat;
  color: var(--off-white);
  padding: 96px 0;
  text-align: center;
}

.favicon-watermark {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 420px;
  max-width: none;
  opacity: 0.1;
  pointer-events: none;
}

.cta-final h2 { color: var(--off-white); margin: 0 auto 16px; }

.cta-final-text {
  max-width: 52ch;
  margin: 0 auto 36px;
  color: rgba(242, 239, 241, 0.85);
  font-size: 1rem;
}

.cta-trust {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--sand);
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--white);
  padding: 56px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(67, 16, 47, 0.1);
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.logo-footer { height: 36px; aspect-ratio: 502 / 176; margin: 0 auto 10px; opacity: 0.9; }

.footer-name { font-weight: 600; font-size: 0.95rem; }

.footer-oab, .footer-region {
  font-size: 0.82rem;
  color: #5a3348;
}

.footer-disclaimer {
  font-size: 0.76rem;
  color: #8a6b7c;
  max-width: 52ch;
  margin: 14px auto 6px;
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.76rem;
  color: #8a6b7c;
  margin-top: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { max-width: 380px; margin: 0 auto; order: -1; }
  .phases-grid { grid-template-columns: repeat(2, 1fr); }
  .publico-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .phases-grid { grid-template-columns: 1fr; }
  .assistance-highlight { flex-direction: column; text-align: center; padding: 28px 24px; }
  .cta-final { padding: 72px 0; }
}
