:root {
  --navy: #0B1E33;
  --navy-2: #102944;
  --navy-3: #183452;
  --gold: #C99A45;
  --gold-light: #E4C98C;
  --cream: #F7F4EE;
  --white: #FFFFFF;
  --text: #263444;
  --muted: #687483;
  --border: #E5E0D7;
  --shadow: 0 24px 70px rgba(11, 30, 51, .12);
  --shadow-soft: 0 12px 36px rgba(11, 30, 51, .08);
  --radius: 18px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-light {
  background: var(--cream);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.section-label-light {
  color: var(--gold-light);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--navy);
}

p {
  color: var(--muted);
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

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

.btn span {
  font-size: 1.1rem;
  line-height: 1;
}

.btn-gold {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(201, 154, 69, .24);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-navy {
  color: var(--white);
  background: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-3);
  box-shadow: 0 12px 28px rgba(11, 30, 51, .18);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.03);
}

.btn-outline-light:hover {
  border-color: var(--gold-light);
  background: rgba(255,255,255,.08);
}

.btn-full {
  width: 100%;
}

.btn-large {
  min-height: 62px;
  padding: 0 30px;
}

/* HEADER */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 30, 51, .92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(11, 30, 51, .98);
  box-shadow: 0 8px 30px rgba(0,0,0,.16);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  position: relative;
  min-width: 205px;
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 188px;
  height: 78px;
  max-height: 78px;
  object-fit: contain;
  object-position: left center;
}

.brand-fallback {
  display: none;
  flex-direction: column;
  color: var(--white);
  line-height: .9;
}

.brand-fallback strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
}

.brand-fallback small {
  margin-top: 7px;
  color: var(--gold-light);
  font-size: .48rem;
  letter-spacing: .18em;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
}

.main-nav a {
  position: relative;
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-whatsapp {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 4px;
  font-size: .74rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease;
}

.header-whatsapp:hover {
  transform: translateY(-1px);
  background: var(--gold-light);
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

/* HERO */
.hero {
  position: relative;
  min-height: 780px;
  padding-top: 84px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 28%, rgba(201,154,69,.14), transparent 27%),
    linear-gradient(135deg, #09192B 0%, var(--navy) 55%, #122C47 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.08) 42.1% 42.2%, transparent 42.3%),
    linear-gradient(25deg, transparent 0 69%, rgba(255,255,255,.05) 69.1% 69.2%, transparent 69.3%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: 7%;
  top: 18%;
  border: 1px solid rgba(201,154,69,.12);
}

.hero-glow-two {
  width: 210px;
  height: 210px;
  right: 15%;
  bottom: 21%;
  border: 1px solid rgba(255,255,255,.07);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 80px;
  padding: 80px 0 120px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: var(--gold-light);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 27px;
  color: var(--white);
  font-size: clamp(3.8rem, 6.5vw, 6.1rem);
  letter-spacing: -.035em;
}

.hero h1 em,
.quote-section blockquote em,
.comfort-frame em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 31px;
  color: rgba(255,255,255,.72);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255,255,255,.52);
  font-size: .77rem;
}

.hero-clarity {
  margin: 12px 0 0;
  color: rgba(255,255,255,.42);
  font-size: .68rem;
  letter-spacing: .045em;
}

.btn-plantao {
  color: #0b1e33;
  background: #f6f2e8;
  border-color: rgba(255,255,255,.45);
  box-shadow: 0 16px 36px rgba(0,0,0,.20);
}

.btn-plantao:hover {
  color: #0b1e33;
  background: var(--gold-light);
}

.plantao-whatsapp {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #20a65a;
  border-radius: 50%;
}

.plantao-whatsapp svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Abertura institucional com a viatura Eternum. */
.hero {
  background:
    linear-gradient(90deg, rgba(7,21,34,.97) 0%, rgba(9,25,43,.91) 38%, rgba(10,28,47,.64) 65%, rgba(8,23,38,.36) 100%),
    linear-gradient(0deg, rgba(7,21,34,.46), transparent 48%),
    url("viatura-eternum.jpeg") center 52% / cover no-repeat;
}

.hero-grid {
  grid-template-columns: 1fr;
}

.hero-copy {
  max-width: 710px;
}

.hero-visual {
  display: none;
}

.hero-registration {
  margin: 10px 0 0;
  color: rgba(255,255,255,.34);
  font-size: .62rem;
  letter-spacing: .055em;
}

@media (max-width: 820px) {
  .hero {
    display: block;
    min-height: auto;
    background-position: 60% center;
  }

  .hero-grid {
    display: block;
    padding: 164px 0 46px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual,
  .hero-brand-card,
  .hero-seal {
    display: none !important;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 10vw, 3.2rem);
    line-height: 1.02;
  }

  .hero-text {
    margin-bottom: 25px;
    font-size: .93rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 52px;
  }

  .hero-note {
    margin-top: 22px;
    font-size: .71rem;
  }

  .hero-clarity {
    margin-top: 9px;
    font-size: .65rem;
  }

  .hero-registration {
    margin-top: 8px;
  }

  .hero-bottom {
    position: relative;
    inset: auto;
    width: 100%;
    clear: both;
  }
}

.hero-coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-coverage span {
  padding: 7px 10px;
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  font-size: .66rem;
  font-weight: 700;
}

.note-mark {
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(440px, 100%);
  padding: 58px 55px;
  border: 1px solid rgba(201,154,69,.3);
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
  box-shadow: 0 35px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  border-color: rgba(201,154,69,.65);
}

.hero-card::before {
  left: -1px;
  top: -1px;
  border-left: 1px solid;
  border-top: 1px solid;
}

.hero-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.card-kicker {
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.card-rule {
  width: 45px;
  height: 1px;
  margin: 17px 0 28px;
  background: var(--gold);
}

.hero-card h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.hero-card p {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: .91rem;
}

.hero-seal {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 124px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 1px solid rgba(201,154,69,.5);
  border-radius: 50%;
  background: rgba(11,30,51,.88);
  box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

.hero-seal span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: .7;
}

.hero-seal small {
  color: rgba(255,255,255,.58);
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.hero-bottom {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(4,15,27,.27);
}

.trust-row {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-item {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  color: var(--gold);
  font-size: 1.4rem;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  color: rgba(255,255,255,.9);
  font-size: .77rem;
}

.trust-item small {
  margin-top: 2px;
  color: rgba(255,255,255,.43);
  font-size: .66rem;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 110px;
  align-items: start;
}

.section-heading h2 {
  max-width: 520px;
}

.heading-line {
  width: 54px;
  height: 2px;
  background: var(--gold);
}

.about-content {
  padding-top: 30px;
}

.about-content .lead {
  margin-bottom: 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.22;
}

.about-content > p:not(.lead) {
  max-width: 720px;
  font-size: .95rem;
}

.about-points {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-points > div {
  padding: 25px 22px 25px 0;
  border-right: 1px solid var(--border);
}

.about-points > div:not(:first-child) {
  padding-left: 22px;
}

.about-points > div:last-child {
  border-right: 0;
}

.about-points span {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.about-points p {
  margin: 12px 0 0;
  font-size: .76rem;
  line-height: 1.55;
}

.about-points strong {
  color: var(--navy);
  font-size: .84rem;
}

/* QUOTE */
.quote-section {
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
}

.quote-inner {
  position: relative;
  max-width: 920px;
  text-align: center;
}

.quote-symbol {
  display: block;
  height: 40px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: .9;
}

.quote-section blockquote {
  margin: 18px 0 20px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
}

.quote-author {
  color: rgba(255,255,255,.43);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

/* PLANS */
.plans-section {
  background: #fff;
}

.center-heading {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}

.center-heading .section-label {
  justify-content: center;
}

.center-heading h2 {
  margin-bottom: 14px;
}

.center-heading p {
  margin: 0;
  font-size: .93rem;
}

.plans-grid {
  max-width: 930px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 39px 38px 34px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.plan-featured {
  border-color: rgba(201,154,69,.62);
  box-shadow: 0 22px 60px rgba(11,30,51,.13);
}

.featured-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 15px;
  color: var(--navy);
  background: var(--gold);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-tag {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--gold);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plan-top h3 {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 2.3rem;
}

.plan-subtitle {
  margin: 0;
  font-size: .8rem;
}

.price-area {
  margin: 31px 0 26px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 4.6rem;
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.04em;
}

.price small {
  position: relative;
  top: -.45em;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.price sup {
  position: relative;
  top: -.8em;
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: 0;
}

.price-period {
  color: var(--muted);
  font-size: .67rem;
}

.plan-details {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.plan-details div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: .78rem;
}

.plan-details span {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: rgba(201,154,69,.16);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
}

.plan-footer {
  margin-top: auto;
}

.plan-footer small {
  display: block;
  margin-top: 13px;
  color: #8A929C;
  font-size: .61rem;
  line-height: 1.5;
  text-align: center;
}

.plans-disclaimer {
  max-width: 930px;
  margin: 24px auto 0;
  display: flex;
  gap: 12px;
  padding: 17px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
}

.plans-disclaimer > span {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: .65rem;
  font-weight: 800;
}

.plans-disclaimer p {
  margin: 0;
  font-size: .66rem;
  line-height: 1.55;
}

/* COMFORT */
.comfort-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: var(--white);
  background: var(--navy);
}

.comfort-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -220px;
  top: -220px;
  border: 1px solid rgba(201,154,69,.09);
  border-radius: 50%;
}

.comfort-grid {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 100px;
  align-items: center;
}

.comfort-image {
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(201,154,69,.12), transparent),
    rgba(255,255,255,.03);
  border: 1px solid rgba(201,154,69,.18);
}

.comfort-frame {
  position: relative;
  width: calc(100% - 80px);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
}

.comfort-frame::before,
.comfort-frame::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  border-color: var(--gold);
}

.comfort-frame::before {
  left: -1px;
  top: -1px;
  border-left: 1px solid;
  border-top: 1px solid;
}

.comfort-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.comfort-ornament {
  position: absolute;
  top: 25px;
  color: var(--gold);
  font-size: 1rem;
}

.comfort-frame p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.comfort-copy h2 {
  color: var(--white);
}

.comfort-copy p {
  max-width: 620px;
  color: rgba(255,255,255,.58);
  font-size: .94rem;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: .78rem;
  font-weight: 800;
}

.light-link {
  color: var(--gold-light);
}

/* FLOWERS */
.flowers-section {
  background: var(--cream);
}

.flowers-heading {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 52px;
}

.flowers-heading > p {
  max-width: 460px;
  margin: 0 0 5px auto;
  font-size: .9rem;
}

.flower-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.flower-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(11,30,51,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.flower-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.flower-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eae6dd;
}

.flower-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.flower-card:hover .flower-image img {
  transform: scale(1.03);
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background:
    radial-gradient(circle at center, rgba(201,154,69,.11), transparent 48%),
    #eeeae2;
}

.image-placeholder span {
  color: var(--gold);
  font-size: 1.4rem;
}

.image-placeholder small {
  color: #8d8a83;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.flower-image img[src=""] + .image-placeholder,
.flower-image img:not([src]) + .image-placeholder {
  display: flex;
}

.flower-info {
  padding: 26px 27px 29px;
}

.flower-type {
  color: var(--gold);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.flower-info h3 {
  margin: 9px 0 7px;
  color: var(--navy);
  font-size: 2rem;
}

.flower-info p {
  margin-bottom: 20px;
  font-size: .76rem;
}

.flower-info a {
  display: inline-flex;
  gap: 10px;
  color: var(--navy);
  font-size: .73rem;
  font-weight: 800;
}

.flower-info a:hover {
  color: var(--gold);
}

.flower-note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: .7rem;
}

.flower-note span {
  color: var(--gold);
  font-size: 1rem;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.faq-grid .section-heading p {
  max-width: 450px;
  font-size: .88rem;
}

.faq-grid .btn {
  margin-top: 15px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 17px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 0 22px;
  padding-right: 30px;
  font-size: .77rem;
}

/* CONTACT */
.contact-section {
  padding: 85px 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(201,154,69,.11), transparent 24%),
    var(--navy-2);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.contact-inner h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.contact-inner p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
}

/* FOOTER */
.site-footer {
  color: rgba(255,255,255,.55);
  background: #071522;
}

.footer-main {
  padding: 62px 0 50px;
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 80px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 215px;
  height: 105px;
  max-height: 105px;
  object-fit: contain;
  object-position: left center;
}

.footer-fallback {
  color: var(--white);
}

.footer-brand p {
  max-width: 360px;
  margin: 17px 0 0;
  color: rgba(255,255,255,.42);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.2;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: .65rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: rgba(255,255,255,.5);
  font-size: .72rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .62rem;
}

.footer-bottom a {
  color: var(--gold-light);
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  z-index: 110;
  right: 22px;
  bottom: 22px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--white);
  background: #1B8F4D;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(0,0,0,.22);
  font-size: .73rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #15763F;
}

.floating-whatsapp-icon {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
}

.floating-whatsapp-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

@media (max-width: 1050px) {
  .header-whatsapp {
    display: none;
  }

  .hero-grid {
    gap: 45px;
  }

  .about-grid,
  .faq-grid {
    gap: 55px;
  }

  .comfort-grid {
    gap: 55px;
  }

  .flowers-heading {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding: 80px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand,
  .brand-logo {
    width: 158px;
    min-width: 158px;
  }

  .brand-logo {
    height: 66px;
    max-height: 66px;
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 17px 22px;
    background: rgba(7,21,34,.98);
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 25px 45px rgba(0,0,0,.25);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: .82rem;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 70px 0 110px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 14vw, 5rem);
  }

  .hero-visual {
    min-height: 390px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }

  .trust-item {
    justify-content: flex-start;
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .about-grid,
  .comfort-grid,
  .faq-grid,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-content {
    padding-top: 0;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .about-points > div,
  .about-points > div:not(:first-child) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .about-points > div:last-child {
    border-bottom: 0;
  }

  .quote-section {
    padding: 75px 0;
  }

  .plans-grid,
  .flower-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
  }

  .flowers-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .flowers-heading > p {
    margin-left: 0;
  }

  .comfort-image {
    min-height: 350px;
  }

  .comfort-frame {
    width: calc(100% - 45px);
    min-height: 275px;
    padding: 30px;
  }

  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    max-width: 600px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .brand,
  .brand-logo {
    width: 145px;
    min-width: 145px;
  }

  .brand-logo {
    height: 62px;
    max-height: 62px;
  }

  .hero-grid {
    padding-top: 55px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 345px;
  }

  .hero-card {
    padding: 42px 30px;
  }

  .hero-seal {
    right: -4px;
    bottom: 6px;
    width: 95px;
    height: 95px;
  }

  .hero-seal span {
    font-size: 1.8rem;
  }

  .hero-seal small {
    font-size: .45rem;
  }

  .plan-card {
    padding: 32px 24px 27px;
  }

  .featured-ribbon {
    position: static;
    display: table;
    margin: -32px -24px 26px auto;
  }

  .price {
    font-size: 4rem;
  }

  .faq-grid .btn {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp-text {
    display: none;
  }
}


/* REFINO PREMIUM — identidade, acessibilidade e hero */
.skip-link {
  position: fixed;
  z-index: 300;
  left: 16px;
  top: -60px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--gold-light);
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 800;
  transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.hero-brand-card {
  position: relative;
  width: min(475px, 100%);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 48px 48px;
  overflow: hidden;
  border: 1px solid rgba(201,154,69,.34);
  background:
    radial-gradient(circle at 50% 18%, rgba(201,154,69,.10), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.012));
  box-shadow: 0 35px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}

.hero-brand-card::before,
.hero-brand-card::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  border-color: rgba(201,154,69,.70);
}

.hero-brand-card::before {
  left: -1px;
  top: -1px;
  border-left: 1px solid;
  border-top: 1px solid;
}

.hero-brand-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.hero-brand-topline {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-brand-topline span {
  flex: 1;
  height: 1px;
  background: rgba(201,154,69,.45);
}

.hero-brand-topline small {
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .20em;
}

.hero-brand-logo {
  width: min(390px, 100%);
  height: auto;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.16));
}

.hero-brand-divider {
  width: 58px;
  height: 1px;
  margin: 20px 0 22px;
  background: var(--gold);
}

.hero-brand-message {
  margin: 0;
  color: rgba(255,255,255,.94);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.02;
  text-align: center;
}

.hero-brand-message em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-brand-support {
  max-width: 340px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.48);
  font-size: .78rem;
  line-height: 1.6;
  text-align: center;
}

.hero-seal {
  width: 108px;
  height: 108px;
  right: -3px;
  bottom: 10px;
}

.hero-seal span {
  color: var(--gold);
  font-size: 1.15rem;
}

.hero-seal small {
  font-size: .48rem;
}

/* Como começar */
.steps-section {
  padding: 92px 0;
  color: var(--white);
  background: #0a1b2e;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.steps-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.steps-heading h2 {
  margin: 0;
  color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 30px 32px 30px 0;
  border-right: 1px solid rgba(255,255,255,.09);
}

.step-item + .step-item { padding-left: 32px; }
.step-item:last-child { border-right: 0; }

.step-item > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.step-item h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.75rem;
}

.step-item p {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: .76rem;
  line-height: 1.6;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-links a { color: var(--gold-light); }

@media (max-width: 820px) {
  .hero-brand-card {
    min-height: 450px;
    padding: 34px 30px 42px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-item,
  .step-item + .step-item {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }

  .step-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .hero-brand-card {
    min-height: 405px;
    padding: 28px 22px 34px;
  }

  .hero-brand-logo {
    max-height: 210px;
  }

  .hero-brand-message {
    font-size: 1.95rem;
  }

  .hero-brand-support {
    font-size: .72rem;
  }

  .hero-seal {
    width: 86px;
    height: 86px;
    right: -2px;
  }

  .footer-bottom-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* Política de Privacidade */
.privacy-content {
  min-height: calc(100vh - 160px);
  padding: 150px 0 90px;
  background: var(--cream);
}

.privacy-wrap {
  max-width: 880px;
}

.privacy-wrap h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5rem);
}

.privacy-intro {
  max-width: 760px;
  margin-bottom: 52px;
  font-size: 1rem;
}

.privacy-wrap section {
  padding: 26px 0;
  border-top: 1px solid var(--border);
}

.privacy-wrap section h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.privacy-wrap section p {
  margin: 0;
  font-size: .9rem;
}

.privacy-note {
  margin: 34px 0;
  padding: 18px 20px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.6;
}

/* Ajustes de apresentação — assistência familiar */
html { scroll-padding-top: 122px; }
section[id] { scroll-margin-top: 122px; }

.header-inner { min-height: 104px; }
.brand { min-width: 155px; }
.brand-logo { width: 155px; height: 92px; max-height: 92px; }

.plans-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 14%, rgba(201,154,69,.10), transparent 22%), linear-gradient(180deg, #fcfbf8 0%, #f6f3ec 100%);
}

.plans-section::before {
  content: "";
  position: absolute;
  inset: 28px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,154,69,.45), transparent);
}

.plans-section .container { position: relative; }
.center-heading { max-width: 770px; margin-bottom: 42px; }
.center-heading h2 { max-width: 650px; margin-right: auto; margin-left: auto; font-size: clamp(2.7rem, 4.3vw, 4.5rem); }
.center-heading p { max-width: 610px; margin: 0 auto; font-size: .95rem; }
.plans-grid { max-width: 1060px; gap: 28px; }

.plan-card {
  min-height: 530px;
  padding: 42px 42px 34px;
  border: 1px solid rgba(11,30,51,.13);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(11,30,51,.08);
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 42px;
  left: 42px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #f0d69c);
}

.plan-card:hover { transform: translateY(-7px); box-shadow: 0 25px 58px rgba(11,30,51,.14); }

.plan-featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, #0b1e33 0%, #153554 100%);
  box-shadow: 0 25px 65px rgba(11,30,51,.24);
}

.plan-featured::before { background: linear-gradient(90deg, #e4c98c, #b98330); }
.featured-ribbon { top: 20px; right: 22px; padding: 7px 12px; border-radius: 99px; color: var(--navy); font-size: .58rem; letter-spacing: .08em; }
.plan-tag { margin-bottom: 13px; font-size: .68rem; }
.plan-top h3 { margin-bottom: 8px; font-size: 2.75rem; }
.plan-subtitle { font-size: .88rem; }

.plan-featured .plan-top h3, .plan-featured .price, .plan-featured .plan-details div { color: var(--white); }
.plan-featured .plan-subtitle, .plan-featured .price-label, .plan-featured .price-period { color: rgba(255,255,255,.62); }
.price-area { margin: 27px 0 24px; padding: 21px 0; }
.plan-featured .price-area { border-color: rgba(255,255,255,.16); }
.price-label { margin-bottom: 7px; font-size: .7rem; }
.price { font-size: 5rem; }
.price-period { display: block; margin-top: 6px; font-size: .73rem; }
.plan-details { gap: 15px; margin-bottom: 25px; }
.plan-details div { font-size: .84rem; }
.plan-details span { width: 23px; height: 23px; }
.plan-featured .plan-details span { color: var(--navy); background: var(--gold-light); }
.plan-footer small { color: #74808e; font-size: .65rem; }
.plan-featured .plan-footer small { color: rgba(255,255,255,.46); }
.plans-disclaimer { max-width: 1060px; margin-top: 28px; padding: 18px 22px; border-radius: 8px; background: rgba(255,255,255,.62); }

/* Preços: alinhamento intencional, sem sobrescritos ou cortes visuais. */
.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-height: 78px;
  letter-spacing: 0;
}

.price-currency {
  padding-bottom: 12px;
  color: currentColor;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.price-amount {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.055em;
}

.price-cents {
  align-self: flex-start;
  padding-top: 4px;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
}

@media (max-width: 820px) {
  html { scroll-padding-top: 86px; }
  section[id] { scroll-margin-top: 86px; }
  .header-inner { min-height: 76px; }
  .brand, .brand-logo { width: 124px; min-width: 124px; }
  .brand-logo { height: 73px; max-height: 73px; }
  .plan-card { min-height: 0; padding: 36px 30px 30px; }
  .plan-card::before { right: 30px; left: 30px; }
  .price-amount { font-size: 4.5rem; }
  .price-cents { font-size: 1.65rem; }
}
