/* ==========================================================================
   SIM, ACEITO! — PLATAFORMA DE SITES DE CASAMENTO
   Stylesheet da Landing Page Institucional
   ========================================================================== */

:root {
  --font-serif: "Playfair Display", Georgia, serif;
  --font-display: "Cinzel", Georgia, serif;
  --font-script: "Alex Brush", cursive;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --bg-main: #fdfbf7;
  --bg-card: #ffffff;
  --bg-card-alt: #f7f3ed;
  --bg-dark: #1f1d1a;

  --primary: #c5a880;
  --primary-hover: #b3946a;
  --primary-light: #f4ede3;
  --primary-glow: rgba(197, 168, 128, 0.25);

  --accent: #b76e79;
  --accent-light: #fbf0f2;
  --accent-dark: #914d57;

  --text-main: #2b2825;
  --text-muted: #6e6963;
  --text-light: #9e9890;
  --text-on-dark: #fcfbf9;

  --border: #ede6dc;
  --border-light: #f2ede6;

  --shadow-sm: 0 2px 8px rgba(43, 40, 37, 0.04);
  --shadow-md: 0 8px 24px rgba(43, 40, 37, 0.08);
  --shadow-lg: 0 16px 40px rgba(43, 40, 37, 0.12);
  --shadow-glow: 0 10px 30px rgba(197, 168, 128, 0.28);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.pl-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.pl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1240px;
  gap: 1.2rem;
}

.pl-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.pl-logo span {
  white-space: nowrap;
}

.pl-logo__icon {
  font-size: 1.5rem;
  display: inline-flex;
  animation: pulse-ring 3s infinite ease-in-out;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(4deg); }
}

.pl-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 960px) {
  .pl-nav {
    display: flex;
  }
}

.pl-nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.pl-nav__link:hover {
  color: var(--text-main);
}

.pl-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.pl-header-example-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1160px) {
  .pl-nav {
    gap: 1.1rem;
  }
  .pl-header-example-btn span {
    font-size: 0.84rem;
  }
}

@media (max-width: 1040px) {
  .pl-header-example-btn {
    display: none;
  }
}

@media (max-width: 640px) {
  .pl-header__inner {
    height: 68px;
  }
  .pl-logo {
    font-size: 1.25rem;
  }
  .pl-header__actions {
    gap: 0.45rem;
  }
  .pl-header__actions .btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
  }
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #a98759 100%);
  color: #fff;
  box-shadow: 0 4px 16px var(--primary-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn--secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border);
}

.btn--secondary:hover {
  background: var(--bg-card-alt);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

.btn--lg {
  padding: 0.95rem 1.8rem;
  font-size: 1.02rem;
  max-width: 100%;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn--whatsapp:hover {
  background: #1ebd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* Menu Hambúrguer Mobile */
.pl-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

@media (min-width: 860px) {
  .pl-menu-btn {
    display: none;
  }
}

.pl-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.pl-hero {
  padding: 5rem 0 4.5rem;
  text-align: center;
  position: relative;
  background-color: #1a1412;
  background-image: 
    linear-gradient(180deg, 
      rgba(15, 11, 9, 0.55) 0%, 
      rgba(15, 11, 9, 0.62) 35%, 
      rgba(15, 11, 9, 0.76) 75%, 
      rgba(15, 11, 9, 0.94) 100%
    ),
    url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
  color: #ffffff;
}

@media (max-width: 768px) {
  .pl-hero {
    background-image: 
      linear-gradient(180deg, 
        rgba(15, 11, 9, 0.65) 0%, 
        rgba(15, 11, 9, 0.70) 35%, 
        rgba(15, 11, 9, 0.82) 75%, 
        rgba(15, 11, 9, 0.95) 100%
      ),
      url('assets/hero-bg-mobile.jpg');
    background-position: center 10%;
    padding: 3.5rem 0 3.2rem;
  }
}

.pl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 1.35rem;
  background: rgba(26, 22, 19, 0.78);
  border: 1px solid rgba(197, 168, 128, 0.45);
  border-radius: var(--radius-full);
  color: #fdfbf7;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.02em;
}

.pl-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #c5a880;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.9);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.pl-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.16;
  color: #ffffff;
  max-width: 860px;
  margin: 0 auto 1.35rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 4px 24px rgba(0, 0, 0, 0.5);
}

.pl-hero__title span {
  color: #f7cb73;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.pl-hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.pl-hero__lead strong {
  color: #ffffff;
  font-weight: 700;
}

.pl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .pl-hero__actions {
    flex-direction: column;
    gap: 0.85rem;
  }
  .pl-hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

.pl-hero .btn--primary {
  background: linear-gradient(135deg, #c5a880 0%, #a98759 100%);
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(197, 168, 128, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pl-hero .btn--primary:hover {
  background: linear-gradient(135deg, #d4b890 0%, #b89566 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(197, 168, 128, 0.6);
}

.pl-hero .btn--secondary {
  background: #ffffff;
  color: #1a1714;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.pl-hero .btn--secondary:hover {
  background: #fbf8f3;
  color: #1a1714;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pl-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.2rem 1rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pl-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    padding: 1.8rem 0.5rem 0.5rem;
  }
}

.pl-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pl-stat__value {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.pl-stat__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   Mockup / Live Preview Teaser
   ========================================================================== */
.pl-preview-card {
  max-width: 960px;
  margin: 2rem auto 0;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.pl-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.4rem;
  background: #faf8f5;
  border-bottom: 1px solid var(--border);
}

.pl-browser-dots {
  display: flex;
  gap: 6px;
}

.pl-browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e2ded8;
}

.pl-browser-url {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pl-browser-url span.highlight {
  color: var(--primary);
  font-weight: 600;
}

.pl-preview-content {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .pl-preview-content {
    grid-template-columns: 1.1fr 1fr;
    padding: 3rem;
  }
}

.pl-preview-info h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.pl-preview-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pl-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pl-tag {
  padding: 0.35rem 0.8rem;
  background: var(--bg-card-alt);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}

.pl-preview-mockup {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(253, 248, 242, 0.95) 100%), url('assets/photos/photo1.jpg') center 25%/cover no-repeat;
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  border: 1px solid rgba(197, 168, 128, 0.35);
  text-align: center;
  box-shadow: 0 12px 30px rgba(43, 40, 37, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow: hidden;
}

.pl-preview-mockup__ring {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}

.pl-preview-mockup__names {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.pl-preview-mockup__date {
  font-size: 0.88rem;
  color: var(--primary-hover);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.pl-preview-mockup__boxes {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pl-mockup-box {
  background: #ffffff;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  min-width: 60px;
  box-shadow: var(--shadow-sm);
}

.pl-mockup-box strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-main);
}

.pl-mockup-box small {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   Section Base
   ========================================================================== */
.pl-section {
  padding: 5.5rem 0;
}

.pl-section--alt {
  background: var(--bg-card-alt);
}

.pl-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.pl-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.pl-section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pl-section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Comparativo Matador (Sim, Aceito! vs Outros)
   ========================================================================== */
.pl-comparison {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}

.pl-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.pl-table th, .pl-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.pl-table th {
  background: #faf8f5;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
}

.pl-table th.highlight, .pl-table td.highlight {
  background: #fdfaf4;
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.pl-table th.highlight {
  color: var(--primary-hover);
  font-size: 1.05rem;
}

.pl-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--border-light);
}

.pl-table td {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.pl-badge-check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #15803d;
  font-weight: 700;
}

.pl-badge-cross {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #b91c1c;
  font-weight: 600;
}

/* ==========================================================================
   Recursos / Features Grid
   ========================================================================== */
.pl-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
}

.pl-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pl-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.pl-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}

.pl-feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.pl-feature-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ==========================================================================
   Planos e Preços
   ========================================================================== */
.pl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pl-price-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pl-price-card--featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.pl-price-card:hover {
  transform: translateY(-4px);
}

.pl-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, #b76e79 100%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.38rem 1.15rem;
  border-radius: 999px;
  white-space: nowrap;
  max-width: 90%;
  box-shadow: 0 4px 14px rgba(183, 110, 121, 0.35);
  z-index: 2;
}

.pl-price-card__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.pl-price-card__sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}

.pl-price-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.pl-price-val small {
  font-size: 1.4rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.pl-price-val strong {
  font-family: var(--font-sans);
  font-size: clamp(2.9rem, 6.5vw, 3.8rem);
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pl-price-note {
  font-size: 0.88rem;
  color: #15803d;
  font-weight: 600;
  margin-bottom: 2rem;
}

.pl-price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.2rem;
  flex-grow: 1;
}

.pl-price-list li {
  font-size: 0.94rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.45;
}

.pl-price-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #16a34a;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.pl-faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pl-faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.pl-faq-question {
  width: 100%;
  text-align: left;
  padding: 1.4rem 1.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.pl-faq-question svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--primary);
}

.pl-faq-item.is-active .pl-faq-question svg {
  transform: rotate(180deg);
}

.pl-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pl-faq-item.is-active .pl-faq-answer {
  max-height: 300px;
  padding-bottom: 1.4rem;
  transition: max-height 0.3s ease-in-out;
}

/* ==========================================================================
   CTA Final Banner
   ========================================================================== */
.pl-cta-banner {
  background: linear-gradient(135deg, #2b2825 0%, #1a1918 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-on-dark);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.pl-cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  margin-bottom: 1rem;
}

.pl-cta-banner p {
  color: #cfc8be;
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 2.2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.pl-footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pl-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.pl-footer__copy {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.83rem;
  color: var(--text-light);
}

/* ==========================================================================
   Ajustes Responsivos Mobile (Conserto dos 3 problemas relatados)
   ========================================================================== */

/* 1. Navbar Header Mobile: Sem aperto, sem quebra de logo e sem clipping */
@media (max-width: 768px) {
  .pl-header__inner {
    height: 62px;
  }

  .pl-logo {
    font-size: 1.18rem;
    gap: 0.4rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .pl-logo img {
    width: 26px;
    height: 26px;
  }

  .pl-header__actions {
    gap: 0.4rem;
  }

  /* Oculta botão 'Ver Exemplo' no topo mobile (já existe logo abaixo no hero) */
  .pl-header-example-btn {
    display: none !important;
  }

  .pl-header__actions .btn--sm {
    padding: 0.42rem 0.72rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 380px) {
  .pl-logo span {
    font-size: 1.05rem;
  }
  .pl-header__actions .btn--sm {
    padding: 0.38rem 0.55rem;
    font-size: 0.74rem;
  }
}

/* 2. Tabela Comparativa Mobile: Elimina barra de rolagem horizontal e textos cortados */
@media (max-width: 680px) {
  .pl-comparison {
    border-radius: var(--radius-md);
    overflow-x: hidden;
    margin: 0;
    width: 100%;
  }

  .pl-table {
    min-width: 100%;
    width: 100%;
    table-layout: fixed;
  }

  .pl-table th, .pl-table td {
    padding: 0.75rem 0.45rem;
    font-size: 0.76rem;
    word-break: break-word;
    white-space: normal;
    line-height: 1.35;
  }

  .pl-table th:first-child, .pl-table td:first-child {
    width: 38%;
  }

  .pl-table th.highlight, .pl-table td.highlight {
    width: 36%;
    border-left-width: 1.5px;
    border-right-width: 1.5px;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }

  .pl-table th:last-child, .pl-table td:last-child {
    width: 26%;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
    font-size: 0.7rem;
  }

  .pl-badge-check, .pl-badge-cross {
    font-size: 0.72rem;
    display: inline;
    line-height: 1.3;
  }
}

/* 3. Card de Preço / Taxa Única Mobile: Badge perfeito sem deformação e lista em 1 coluna */
@media (max-width: 600px) {
  .pl-price-card {
    padding: 2.2rem 1.15rem;
    border-radius: 20px;
  }

  .pl-price-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.95rem;
    letter-spacing: 0.3px;
    top: -12px;
  }

  .pl-price-card__title {
    font-size: 1.6rem;
  }

  .pl-price-val {
    gap: 0.4rem 0.6rem;
  }

  .pl-price-val strong {
    font-size: 3rem;
  }

  .pl-price-list {
    grid-template-columns: 1fr !important;
    gap: 0.95rem;
  }
}

/* ==========================================================================
   BENTO SHOWCASE CARDS (Inspirado no Casar.com)
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

.bento-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.bento-card--large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 2.5rem;
}

.bento-card--terracota {
  background: linear-gradient(145deg, #ffffff 0%, #fdf8f5 100%);
  border-color: #f3e5db;
}

.bento-card--blue {
  background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
  border-color: #dbeafe;
}

.bento-card--pink {
  background: linear-gradient(145deg, #ffffff 0%, #fdf2f8 100%);
  border-color: #fce7f3;
}

.bento-card--wallet {
  background: linear-gradient(145deg, #ffffff 0%, #f7fbf8 100%);
  border-color: #dcfce7;
}

.bento-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  background: #faf5ee;
  color: var(--primary-hover);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.bento-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 0.7rem;
}

.bento-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.bento-mockup {
  margin-top: 1.5rem;
}

.bento-card--large .bento-mockup {
  margin-top: 0;
}

/* Mockup: Janela de Site */
.bento-site-window {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #ede6dc;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.bento-site-bar {
  background: #f7f5f2;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #ede6dc;
}

.bento-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.bento-dot.red { background: #ef4444; }
.bento-dot.yellow { background: #f59e0b; }
.bento-dot.green { background: #10b981; }

.bento-site-url {
  font-size: 0.72rem;
  color: #8c827a;
  background: #ffffff;
  padding: 2px 10px;
  border-radius: 6px;
  border: 1px solid #ede6dc;
  margin-left: 6px;
  flex: 1;
}

.bento-site-preview {
  padding: 1.5rem;
  background: linear-gradient(135deg, #fdfaf6 0%, #f7f1e9 100%);
  text-align: center;
}

.bento-hero-date {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #c5a880;
  font-weight: 700;
  display: block;
}

.bento-hero-names {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #2b2825;
  display: block;
  margin: 0.2rem 0 1rem;
}

.bento-timer-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.2rem;
}

.bento-timer-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  min-width: 48px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.bento-timer-box span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2b2825;
  display: block;
  line-height: 1;
}

.bento-timer-box small {
  font-size: 0.6rem;
  color: #8c827a;
  text-transform: uppercase;
}

.bento-dress-preview {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.bento-dress-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2b2825;
}

.bento-dress-dots {
  display: flex;
  gap: 4px;
}

.bento-dress-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

/* Mockup: RSVP */
.bento-rsvp-stat-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.bento-rsvp-stat {
  background: #faf8f5;
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  border: 1px solid #ede6dc;
}

.bento-rsvp-stat strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.1;
}

.bento-rsvp-stat span {
  font-size: 0.7rem;
  color: #8c827a;
}

.bento-rsvp-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #faf8f5;
  border: 1px solid #ede6dc;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.8rem;
}

.bento-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #c5a880;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-rsvp-btn {
  background: #2e7d32;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.6rem;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

/* Mockup: Presentes Virtuais */
.bento-mockup--gifts {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.bento-gift-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #faf8f5;
  border: 1px solid #ede6dc;
  border-radius: 14px;
  padding: 0.85rem 1rem;
}

.bento-gift-icon {
  font-size: 1.5rem;
}

.bento-gift-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  padding: 3px 8px;
  border-radius: 999px;
}

/* Mockup: Smartphone Carteira */
.bento-phone {
  background: #1e1b18;
  border-radius: 28px;
  padding: 0.8rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  margin: 0 auto;
}

.bento-phone-screen {
  background: #12100e;
  border-radius: 20px;
  padding: 1.4rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bento-wallet-top {
  text-align: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #2a2622;
}

.bento-wallet-action {
  background: #15803d;
  color: #ffffff;
  padding: 0.65rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.bento-wallet-notif {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
}

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

  .bento-card--large {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .bento-card {
    padding: 1.3rem 1rem;
    border-radius: 18px;
  }

  .bento-card--large {
    padding: 1.3rem 1rem;
  }

  .bento-site-window {
    width: 100%;
    max-width: 100%;
  }

  .bento-site-preview {
    padding: 1.2rem 0.5rem;
  }

  .bento-timer-row {
    gap: 5px;
    flex-wrap: wrap;
  }

  .bento-timer-box {
    min-width: 40px;
    padding: 0.35rem 0.4rem;
  }

  .bento-timer-box span {
    font-size: 0.95rem;
  }

  .bento-dress-preview {
    padding: 0.35rem 0.5rem;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
  }

  .bento-dress-label {
    font-size: 0.68rem;
    text-align: center;
  }

  .btn {
    white-space: normal;
  }

  .btn--lg {
    padding: 0.85rem 1.15rem;
    font-size: 0.92rem;
    width: 100%;
    max-width: 100%;
  }
}

/* ==========================================================================
   Vitrine de Temas e Modelos (Inspirado no Casar.com e iCasei)
   ========================================================================== */
.pl-themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .pl-themes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pl-theme-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.pl-theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.pl-theme-banner {
  height: 165px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.35s ease;
}

.pl-theme-card:hover .pl-theme-banner {
  transform: scale(1.03);
}

.pl-theme-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #2b2825;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.pl-theme-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pl-theme-swatches {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.8rem;
}

.pl-theme-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.pl-theme-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.pl-theme-style {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-hover);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.pl-theme-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.4rem;
  flex: 1;
}

.pl-theme-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Card Temático: Terracota (Doce Brisa) */
.pl-theme-card--terracota {
  background: #fffcfb;
  border-color: rgba(200, 100, 70, 0.22);
}
.pl-theme-card--terracota:hover {
  border-color: #c86446;
  box-shadow: 0 14px 34px rgba(200, 100, 70, 0.15);
}
.pl-theme-card--terracota .pl-theme-style {
  color: #c86446;
}
.pl-theme-card--terracota .btn--primary {
  background: linear-gradient(135deg, #c86446 0%, #b33927 100%);
  box-shadow: 0 4px 16px rgba(200, 100, 70, 0.3);
}
.pl-theme-card--terracota .btn--primary:hover {
  background: linear-gradient(135deg, #d87254 0%, #bf412e 100%);
}
.pl-theme-card--terracota .btn--secondary {
  border-color: rgba(200, 100, 70, 0.3);
  color: #9e351d;
  background: #fff9f6;
}
.pl-theme-card--terracota .btn--secondary:hover {
  background: #faece6;
  border-color: #c86446;
}

/* Card Temático: Serenity Floral (Azul) */
.pl-theme-card--serenity {
  background: #fafcff;
  border-color: rgba(54, 96, 137, 0.2);
}
.pl-theme-card--serenity:hover {
  border-color: #366089;
  box-shadow: 0 14px 34px rgba(54, 96, 137, 0.15);
}
.pl-theme-card--serenity .pl-theme-style {
  color: #366089;
}
.pl-theme-card--serenity .btn--primary {
  background: linear-gradient(135deg, #43719e 0%, #20456b 100%);
  box-shadow: 0 4px 16px rgba(32, 69, 107, 0.3);
}
.pl-theme-card--serenity .btn--primary:hover {
  background: linear-gradient(135deg, #4f80b0 0%, #26517d 100%);
}
.pl-theme-card--serenity .btn--secondary {
  border-color: rgba(54, 96, 137, 0.3);
  color: #1e3e60;
  background: #f2f7fc;
}
.pl-theme-card--serenity .btn--secondary:hover {
  background: #e6f0fa;
  border-color: #366089;
}

/* Card Temático: Grace Botânico (Oliva) */
.pl-theme-card--olive {
  background: #fafcfa;
  border-color: rgba(85, 107, 47, 0.2);
}
.pl-theme-card--olive:hover {
  border-color: #556b2f;
  box-shadow: 0 14px 34px rgba(85, 107, 47, 0.15);
}
.pl-theme-card--olive .pl-theme-style {
  color: #556b2f;
}
.pl-theme-card--olive .btn--primary {
  background: linear-gradient(135deg, #627b37 0%, #3e5220 100%);
  box-shadow: 0 4px 16px rgba(62, 82, 32, 0.3);
}
.pl-theme-card--olive .btn--primary:hover {
  background: linear-gradient(135deg, #718d40 0%, #475d25 100%);
}
.pl-theme-card--olive .btn--secondary {
  border-color: rgba(85, 107, 47, 0.3);
  color: #36481c;
  background: #f4f8f2;
}
.pl-theme-card--olive .btn--secondary:hover {
  background: #e9f2e6;
  border-color: #556b2f;
}

/* Card Temático: Dourado Real (Champagne) */
.pl-theme-card--champagne {
  background: #fffdfb;
  border-color: rgba(197, 168, 128, 0.25);
}
.pl-theme-card--champagne:hover {
  border-color: #c5a880;
  box-shadow: 0 14px 34px rgba(197, 168, 128, 0.18);
}
.pl-theme-card--champagne .pl-theme-style {
  color: #987a4a;
}
.pl-theme-card--champagne .btn--primary {
  background: linear-gradient(135deg, #c5a880 0%, #a8885c 100%);
  box-shadow: 0 4px 16px rgba(197, 168, 128, 0.3);
}
.pl-theme-card--champagne .btn--primary:hover {
  background: linear-gradient(135deg, #d2b68e 0%, #b39466 100%);
}
.pl-theme-card--champagne .btn--secondary {
  border-color: rgba(197, 168, 128, 0.35);
  color: #8a6c3d;
  background: #fdfaf6;
}
.pl-theme-card--champagne .btn--secondary:hover {
  background: #f7f1e6;
  border-color: #c5a880;
}

/* =======================================================
   COMPARATIVO MINIMALISTA (Cards Modernos + Destaque)
   ======================================================= */
.pl-compare-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .pl-compare-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .pl-compare-cards {
    grid-template-columns: 1fr;
  }
}

.pl-cmp-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.6rem 1.25rem;
  border: 1px solid #ede6dc;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pl-cmp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.pl-cmp-card--winner {
  border-top: 4px solid #10b981;
}

.pl-cmp-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.pl-cmp-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #8c827a;
  margin-bottom: 0.6rem;
}

.pl-cmp-us {
  font-size: 1.05rem;
  font-weight: 700;
  color: #065f46;
  background: #ecfdf5;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  width: 100%;
}

.pl-cmp-them {
  font-size: 0.82rem;
  color: #991b1b;
  line-height: 1.35;
}

/* Destaque financeiro (R$ 10.000 arrecadados) */
.pl-cmp-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #faf6f0 100%);
  border: 2px solid #e7decb;
  border-radius: 18px;
  padding: 1.75rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.pl-cmp-highlight__label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #6b635b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.pl-cmp-highlight__values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pl-cmp-highlight__us,
.pl-cmp-highlight__them {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pl-cmp-highlight__amount {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #065f46;
}

.pl-cmp-highlight__amount--bad {
  color: #991b1b;
  text-decoration: line-through;
  opacity: 0.8;
}

.pl-cmp-highlight__caption {
  font-size: 0.88rem;
  font-weight: 600;
  color: #4b5563;
}

.pl-cmp-highlight__vs {
  font-weight: 800;
  font-size: 1rem;
  color: #9ca3af;
  background: #f3f4f6;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}



