/* Florissima — home */

:root {
  --rose: #cf848a;
  --rose-dark: #cf848a;
  --rose-soft: #d99aa9;
  --cream: #ffffff;
  --cream-deep: #f5f0ee;
  --ink: #cf848a;
  --line: #e7d9d3;
  --maxw: 1200px;
  --hero-bg: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Jost", "Poppins", sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

hr {
  border: none;
  border-top: 1px solid currentColor;
  opacity: 0.35;
  margin: 20px 0;
}

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

/* Header */

header.site {
  position: relative;
  z-index: 10;
  width: 100%;
  background: var(--cream);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.logo {
  display: block;
  line-height: 0;
}
.logo img {
  width: 100px;
  height: auto;
  display: block;
  transition: transform 0.25s ease;
}

.logo:hover img {
  transform: scale(1.06);
}

nav.main {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--rose);
}

nav.main a:not(.disabled) {
  position: relative;
  padding-bottom: 4px;
}

nav.main a:not(.disabled)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

nav.main a.disabled {
  color: var(--rose);
  opacity: 0.45;
  cursor: default;
  position: relative;
}


/* Hero */

.hero {
  width: 100%;
  background: var(--hero-bg);
}

.hero picture {
  display: block;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Shared type helpers */

.script-heading {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--rose-dark);
  margin: 0;
}

.script-tag {
  font-family: "Alex Brush", cursive;
  color: var(--rose-soft);
  font-weight: 400;
}

.eyebrow {
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.18em;
  color: var(--rose);
  margin: 0 0 6px;
}

.eyebrow.light { color: #fff; opacity: 0.85; }

.text-link {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--rose);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}

.text-link:hover { opacity: 0.65; }

.text-link.light { color: #fff; }

/* Intro */

.intro {
  text-align: center;
  max-width: 780px;
  margin: 90px auto 0;
  padding: 0 32px;
}

.intro .script-heading {
  font-size: 44px;
  margin-bottom: 22px;
}

.intro .lead {
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 22px;
}

.intro p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink);
  margin: 0 0 16px;
}

.intro .text-link {
  margin-top: 10px;
}

.scroll-hint {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.4px solid var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  color: var(--rose);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  animation: scroll-hint-bounce 2s ease-in-out infinite;
}

.scroll-hint:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  animation-play-state: paused;
}

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Clube Floríssima */

.clube {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 100px;
}

.clube-photo {
  position: relative;
  height: 540px;
}

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

.clube-photo .ai-note {
  position: absolute;
  left: 20px;
  bottom: 16px;
  color: #fff;
  font-size: 12px;
  opacity: 0.85;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.clube-copy {
  background: var(--rose);
  color: #fff;
  padding: 30px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clube-copy .script-heading {
  color: #fff;
  font-size: 26px;
}

.clube-copy .script-tag {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  display: block;
  margin: 2px 0 10px;
}

.clube-copy .tag-img {
  height: 80px;
  width: auto;
  align-self: flex-start;
  margin: 0 0 12px;
}

.clube-copy p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.92);
}

.clube-copy .eyebrow.light {
  margin-top: 12px;
}

.clube-copy .text-link.light {
  max-width: 420px;
  margin-top: 16px;
}

/* Showcase */

.showcase {
  max-width: var(--maxw);
  margin: 100px auto 0;
  padding: 0 32px;
}

.showcase-heading-img {
  height: 130px;
  width: auto;
  margin: 0 0 40px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.showcase-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.showcase-item:hover img {
  transform: scale(1.03);
}

.showcase-item span {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink);
  text-align: center;
}

.showcase-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.showcase-footer p {
  flex: 1 1 420px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0;
}

/* Noivas */

.noivas {
  position: relative;
  margin-top: 100px;
  padding: 90px 32px;
  background: #b9b9b9 url("/img/noivas-bg.jpg") center / cover no-repeat;
}

.noivas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(120, 116, 114, 0.45);
}

.noivas-card {
  position: relative;
  max-width: 980px;
  height: 540px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 2px;
  overflow: hidden;
}

.noivas-photo {
  padding: 24px;
  min-height: 0;
  overflow: hidden;
}

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

.noivas-copy {
  position: relative;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.noivas-title-img {
  height: 170px;
  width: auto;
  max-width: none;
  align-self: flex-start;
  margin: 0 0 4px;
}

.noivas-copy p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0;
}

.noivas-copy .text-link {
  margin-top: 16px;
}

/* CTA */

.cta {
  background: var(--rose);
  color: #fff;
  text-align: center;
  padding: 90px 32px;
  margin-top: 0;
}

.cta h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 1.25;
  margin: 0 0 18px;
}

.cta h2 em {
  font-style: italic;
  font-weight: 500;
}

.cta p {
  font-size: 15px;
  margin: 0 auto 34px;
  max-width: 480px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.4px solid #fff;
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease;
}

.cta-btn:hover {
  background: #fff;
  color: var(--rose);
}

/* FAQ */

.faq {
  max-width: 820px;
  margin: 60px auto 0;
  padding: 0 32px 100px;
}

.faq > .script-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 36px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

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

.faq-item summary .chev { transition: transform 0.25s ease; flex-shrink: 0; margin-left: 16px; }

.faq-item[open] summary .chev { transform: rotate(180deg); }

.faq-item[open] summary {
  background: var(--rose);
  color: #fff;
}

.faq-item p {
  margin: 0;
  padding: 4px 24px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}

/* Footer */

footer.site {
  background: var(--cream-deep);
  text-align: center;
  padding: 26px 20px;
  font-size: 12.5px;
  color: var(--ink);
  border-top: 1px solid var(--rose);
}

/* Responsive */

@media (max-width: 900px) {
  .clube { grid-template-columns: 1fr; }
  .clube-photo { height: 300px; }
  .clube-copy { padding: 48px 32px; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .noivas-card { grid-template-columns: 1fr; height: auto; }
  .noivas-photo { min-height: 320px; }
  .noivas-title-img { height: auto; width: 60%; max-width: 260px; align-self: flex-start; margin-right: 0; }
}

@media (max-width: 560px) {
  .header-inner { flex-direction: column; align-items: center; padding: 16px 20px; gap: 12px; }
  nav.main { justify-content: center; flex-wrap: wrap; gap: 10px 16px; font-size: 10.5px; }
  .intro { margin-top: 60px; }
  .intro .script-heading { font-size: 32px; }
  .clube-copy { padding: 40px 24px; }
  .showcase { margin-top: 70px; }
  .showcase-heading-img { height: 90px; }
  .noivas { padding: 60px 16px; }
  .noivas-copy { padding: 40px 28px; }
  .cta { padding: 60px 24px; }
  .cta h2 { font-size: 30px; }
  .faq { margin-top: 70px; }
}
