/* ========================================
   SANDRA MARCIA BORDADOS - ESTILOS
   ======================================== */

/* ========================================
   VARIÁVEIS CSS
   ======================================== */
:root {
  --bg: #f7f7fb;
  --accent: #b3478f; /* rosé principal */
  --muted: #e4b1c1;  /* rosa suave para molduras */
  --gold: #d4b36a;   /* dourado suave para Batizado */
  --card-shadow: 0 6px 18px rgba(20,20,50,.04);
}

/* ========================================
   RESET BÁSICO
   ======================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========================================
   BODY E BACKGROUND
   ======================================== */
body {
  font-family: Inter, system-ui, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fdf6fa;

  /* textura leve */
  background-image:
    radial-gradient(circle at 12% 18%, rgba(225,138,183,0.07) 0 6px, transparent 7px),
    radial-gradient(circle at 86% 22%, rgba(179,71,143,0.05) 0 8px, transparent 9px),
    radial-gradient(circle at 24% 72%, rgba(196,150,179,0.05) 0 6px, transparent 7px),
    radial-gradient(circle at 74% 78%, rgba(225,138,183,0.06) 0 7px, transparent 8px),
    repeating-linear-gradient(135deg, rgba(179,71,143,0.04) 0 2px, rgba(179,71,143,0) 2px 20px),
    linear-gradient(180deg, #fff7fc, #f8eef5 60%);
  background-repeat: repeat;
  background-size: 220px 220px, 220px 220px, 180px 180px, 180px 180px, 28px 28px, cover;
  background-attachment: fixed;
  background-position: center;
  scroll-behavior: smooth;
}

/* ========================================
   SKIP LINK (ACESSIBILIDADE)
   ======================================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ========================================
   LIGHTBOX MELHORADO
   ======================================== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(5px);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.lightbox-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  animation: fadeZoom .3s ease;
  border: 5px solid #fff;
  background: #fff;
  transition: transform 0.3s ease;
}

.lightbox img.zoomed {
  transform: scale(1.5);
  cursor: move;
}

.lightbox-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-zoom {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-zoom:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-zoom svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.lightbox-share {
  display: flex;
  gap: 12px;
}

.share-options {
  display: flex;
  gap: 12px;
}

.share-option {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0;
}

.share-option svg {
  width: 22px;
  height: 22px;
}

.share-whatsapp svg {
  fill: #25D366;
}

.share-whatsapp:hover {
  background: #25D366;
  transform: scale(1.1);
}

.share-whatsapp:hover svg {
  fill: white;
}

.share-facebook svg {
  fill: #1877F2;
}

.share-facebook:hover {
  background: #1877F2;
  transform: scale(1.1);
}

.share-facebook:hover svg {
  fill: white;
}

@keyframes fadeZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ========================================
   HEADER - NOVO DESIGN COM BANNER
   ======================================== */
.header-banner-style {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #fff 0%, #fff5fa 100%);
  z-index: 10000;
  box-shadow: 0 4px 20px rgba(179,71,143,0.1);
}

/* Barra Superior */
.header-top-bar {
  background: linear-gradient(135deg, #b3478f 0%, #d4578f 100%);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.top-bar-left {
  flex: 1;
}

.top-bar-text {
  color: rgba(255,255,255,0.95);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-top-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-top-bar:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.btn-top-bar svg {
  width: 18px;
  height: 18px;
}

.btn-top-bar-primary {
  background: rgba(255,255,255,0.95);
  color: #b3478f;
  border-color: rgba(255,255,255,0.95);
}

.btn-top-bar-primary:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Banner Principal */
.header-banner {
  position: relative;
  padding: 60px 40px;
  background: linear-gradient(135deg, #fff5fa 0%, #ffe8f0 50%, #fff5fa 100%);
  overflow: hidden;
}

.header-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(179,71,143,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,87,143,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.header-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-decoration {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: 150px;
  color: #b3478f;
  opacity: 0.15;
  animation: rotate 40s linear infinite;
}

.banner-decoration-right {
  left: auto;
  right: 10%;
  width: 100px;
  height: 100px;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

@keyframes rotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(10px); }
}

.banner-brand-content {
  text-align: center;
  z-index: 1;
}

.banner-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #a67c96;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.banner-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #b3478f 0%, #d4578f 50%, #b3478f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(179,71,143,0.1);
}

.banner-brand-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #8b5a7d;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.banner-divider {
  width: 100px;
  margin: 0 auto 20px;
  color: #b3478f;
  opacity: 0.4;
}

.banner-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #666;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* OPÇÃO 1: Menu Integrado no Banner */
.banner-nav {
  margin-top: 30px;
}

.banner-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.banner-nav-links a {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(179, 71, 143, 0.2);
  border-radius: 25px;
  color: #8b5a7d;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.banner-nav-links a:hover {
  background: #b3478f;
  color: white;
  border-color: #b3478f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(179, 71, 143, 0.3);
}

/* OPÇÃO 2: Menu com Ícones */
.banner-nav-icons {
  margin-top: 30px;
}

.nav-with-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(179, 71, 143, 0.15);
  border-radius: 12px;
  color: #8b5a7d;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 80px;
}

.nav-icon-item svg {
  width: 24px;
  height: 24px;
  stroke: #b3478f;
}

.nav-icon-item:hover {
  background: #b3478f;
  color: white;
  border-color: #b3478f;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(179, 71, 143, 0.3);
}

.nav-icon-item:hover svg {
  stroke: white;
}

/* OPÇÃO 3: Menu Cards/Botões */
.menu-cards {
  padding: 30px 40px;
  background: linear-gradient(180deg, #fff5fa 0%, #ffffff 100%);
  border-top: 1px solid rgba(179, 71, 143, 0.1);
}

.cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.menu-card {
  background: white;
  padding: 24px 16px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(179, 71, 143, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: #b3478f;
  box-shadow: 0 8px 24px rgba(179, 71, 143, 0.2);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.card-label {
  color: #8b5a7d;
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-card:hover .card-label {
  color: #b3478f;
}

/* OPÇÃO 4: Menu Sticky Minimalista */
.menu-sticky {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(179, 71, 143, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
}

.sticky-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-links-minimal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.nav-links-minimal a {
  color: #8b5a7d;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-links-minimal a:hover {
  color: #b3478f;
  border-bottom-color: #b3478f;
}

/* OPÇÃO 6: Menu com Tabs Coloridas */
.menu-tabs {
  padding: 20px 40px;
  background: linear-gradient(135deg, #f8f0f5 0%, #fdf6fa 100%);
}

.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tab-item {
  padding: 14px 28px;
  border-radius: 12px 12px 0 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  top: 0;
}

.tab-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-item:hover::after {
  transform: scaleX(1);
}

.tab-item:hover {
  transform: translateY(-3px);
}

.tab-pink {
  background: #ffe4f0;
  color: #b3478f;
}

.tab-purple {
  background: #f0e4ff;
  color: #8b478f;
}

.tab-rose {
  background: #ffe8f0;
  color: #d4578f;
}

.tab-lavender {
  background: #f5e4ff;
  color: #a67c96;
}

.tab-mauve {
  background: #ffe4f5;
  color: #b35a8f;
}

/* Marca centralizada */
.brand {
  font-weight: 700;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #b3478f 0%, #d4578f 50%, #b3478f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  justify-self: center;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(179,71,143,0.1);
  position: relative;
  padding: 8px 20px;
}

.brand::before {
  content: '✿';
  position: absolute;
  left: -5px;
  color: #d4578f;
  font-size: 1.2rem;
  opacity: 0.6;
}

.brand::after {
  content: '✿';
  position: absolute;
  right: -5px;
  color: #d4578f;
  font-size: 1.2rem;
  opacity: 0.6;
}

/* OPÇÃO 4: Logo Moderno Minimalista */
.brand-option-4 {
  padding: 12px 24px;
  background: transparent;
}

.brand-option-4::before,
.brand-option-4::after {
  content: none;
}

.modern-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-icon-modern {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  color: #b3478f;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 2px 8px rgba(179, 71, 143, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(179, 71, 143, 0.15);
}

.logo-icon-modern:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 12px rgba(179, 71, 143, 0.2),
    0 2px 4px rgba(0, 0, 0, 0.08);
}

.logo-icon-modern svg {
  width: 32px;
  height: 32px;
}

.logo-text-modern {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name-line1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #b3478f;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.logo-name-line2 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #8b5a7d;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

/* OPÇÃO 3: Badge/Selo Vintage */
.brand-option-3 {
  padding: 10px 20px;
  background: transparent;
}

.brand-option-3::before,
.brand-option-3::after {
  content: none;
}

.badge-seal {
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-circle {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #fff5fa 100%);
  border-radius: 50%;
  box-shadow:
    0 4px 12px rgba(179, 71, 143, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
  border: 3px solid rgba(179, 71, 143, 0.2);
  transition: transform 0.3s ease;
}

.badge-circle:hover {
  transform: scale(1.05);
}

.badge-ornament {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #b3478f;
  opacity: 0.6;
  animation: rotateOrnament 30s linear infinite;
}

@keyframes rotateOrnament {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.badge-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}

.badge-top-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #b3478f;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 2px;
}

.badge-center-icon {
  width: 28px;
  height: 28px;
  margin: 3px 0;
  color: #b3478f;
  opacity: 0.8;
}

.badge-center-icon svg {
  width: 100%;
  height: 100%;
}

.badge-main-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #8b5a7d;
  letter-spacing: 2px;
  line-height: 1;
  margin-top: 2px;
  margin-bottom: 2px;
}

.badge-bottom-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #a67c96;
  letter-spacing: 1px;
  font-style: italic;
  line-height: 1;
  margin-bottom: 3px;
}

.badge-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  color: #b3478f;
  letter-spacing: 1px;
  opacity: 0.7;
  border-top: 1px solid rgba(179, 71, 143, 0.2);
  padding-top: 3px;
  margin-top: 2px;
}

/* OPÇÃO 2: Estilo Assinatura */
.brand-option-2 {
  padding: 16px 32px;
  background: transparent;
}

.brand-option-2::before,
.brand-option-2::after {
  content: none;
}

.signature-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.signature-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(135deg, #b3478f 0%, #d4578f 50%, #b3478f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  line-height: 1;
  position: relative;
  text-shadow: 0 2px 15px rgba(179, 71, 143, 0.15);
}

.signature-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #8b5a7d;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: -4px;
}

.signature-underline {
  width: 100%;
  margin: 4px 0;
  opacity: 0.8;
}

.signature-underline svg {
  width: 100%;
  height: 20px;
  color: #b3478f;
  filter: drop-shadow(0 2px 4px rgba(179, 71, 143, 0.2));
  animation: drawLine 2s ease-in-out;
}

@keyframes drawLine {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 0.8;
    transform: scaleX(1);
  }
}

.signature-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #a67c96;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  font-style: italic;
  margin-top: 2px;
}

/* OPÇÃO 1: Logo com Ícone de Bordado */
.brand-option-1 {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(179, 71, 143, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(179, 71, 143, 0.1);
}

.brand-option-1::before,
.brand-option-1::after {
  content: none; /* Remove as flores */
}

.brand-option-1 .brand-icon {
  width: 48px;
  height: 48px;
  color: #b3478f;
  filter: drop-shadow(0 2px 8px rgba(179, 71, 143, 0.3));
  flex-shrink: 0;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(-2deg); }
}

.brand-option-1 .brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.brand-option-1 .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #b3478f 0%, #d4578f 50%, #b3478f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.brand-option-1 .brand-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #8b5a7d;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.brand-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Menu de navegação */
.main-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 12px 0 16px 0;
  background: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #5a3649;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--accent);
  background: rgba(179,71,143,0.08);
  transform: translateY(-2px);
}

.nav-links a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

/* Espaço reservado para header + faixa (removido - header não é mais fixo) */
.header-space {
  display: none;
}

/* ========================================
   FAIXA ROSÉ
   ======================================== */
.faixa {
  position: relative;
  background: linear-gradient(90deg, rgba(179,71,143,0.08) 0%, rgba(255,210,230,0.12) 50%, rgba(179,71,143,0.08) 100%);
  border-top: 2px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(179,71,143,0.15);
  padding: 14px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(179,71,143,0.08);
}

.faixa .faixa-inner {
  pointer-events: auto;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

/* ========================================
   CONTAINER E LAYOUT
   ======================================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
}

/* ========================================
   CARDS E GRID
   ======================================== */
.card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(179,71,143,0.08);
  margin-top: 22px;
  border: 1px solid rgba(179,71,143,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(179,71,143,0.15);
  border-color: rgba(179,71,143,0.2);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.grid .card {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #fef8fb 100%);
}

.grid .card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(179,71,143,0.05) 0%, transparent 70%);
  transition: all 0.5s ease;
}

.grid .card:hover::before {
  top: -20%;
  right: -20%;
}

.grid .card h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  position: relative;
}

.grid .card p {
  color: #666;
  line-height: 1.6;
  position: relative;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--accent), #d4578f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(179,71,143,0.3);
  transition: all 0.3s ease;
}

.grid .card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(179,71,143,0.4);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

/* ========================================
   BOTÕES
   ======================================== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent) 0%, #c9589a 100%);
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(179,71,143,0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179,71,143,0.4);
}

.btn:hover::before {
  left: 100%;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-outline {
  background: white;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(179,71,143,0.2);
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* ========================================
   FORMULÁRIOS
   ======================================== */
input, textarea {
  width: 100%;
  padding: 14px 18px;
  margin-top: 10px;
  border: 2px solid rgba(179,71,143,0.15);
  border-radius: 12px;
  font-size: 1rem;
  font-family: Inter, sans-serif;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.8);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 4px 20px rgba(179,71,143,0.15);
  transform: translateY(-2px);
}

input::placeholder, textarea::placeholder {
  color: #bbb;
}

label {
  margin-top: 16px;
  display: block;
  font-weight: 600;
  color: #5a3649;
  font-size: 1rem;
  position: relative;
  padding-left: 28px;
}

label::before {
  content: '📝';
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

label:first-of-type::before {
  content: '👤';
}

label:nth-of-type(2)::before {
  content: '📧';
}

.form-submit {
  margin-top: 20px;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
}

/* ========================================
   BANNER TOPO
   ======================================== */
/* ========================================
   OPÇÃO A: HERO COM IMAGEM DE FUNDO
   ======================================== */
.top-banner-hero {
  position: relative;
  margin-top: 16px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #b3478f 0%, #d678b1 50%, #f0a8d4 100%);
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 48px rgba(179,71,143,0.25);
}

/* Overlay escuro para melhorar legibilidade */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(179,71,143,0.85) 0%, rgba(214,120,177,0.75) 100%);
  z-index: 1;
}

/* Conteúdo do hero */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  padding: 4rem 3rem;
}

/* Tag superior */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-tag svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
}

/* Título principal */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.25rem 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* Palavra destacada no título */
.hero-highlight {
  display: inline-block;
  padding: 0 0.5rem;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* Descrição */
.hero-text {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 0 2.5rem 0;
  opacity: 0.95;
  font-weight: 300;
}

/* Estatísticas em linha */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.hero-stat {
  text-align: center;
}

.hero-stat-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.75rem;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.hero-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-stat-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Botão CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  background: white;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  background: #fff;
}

.hero-cta svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

/* Responsivo - Hero */
@media (max-width: 768px) {
  .top-banner-hero {
    min-height: 450px;
  }

  .hero-content {
    padding: 3rem 2rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }

  .hero-stat {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .hero-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .top-banner-hero {
    min-height: 400px;
    border-radius: 12px;
  }

  .hero-content {
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-tag {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .hero-stats {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .hero-stat-value {
    font-size: 1.25rem;
  }

  .hero-stat-label {
    font-size: 0.8rem;
  }

  .hero-cta {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   OPÇÃO B: BANNER MODERNO COM CARD LATERAL
   ======================================== */
.top-banner-modern {
  background: linear-gradient(135deg, #fff5fa 0%, #ffe8f0 100%);
  margin-top: 16px;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(179,71,143,0.1);
  box-shadow: 0 8px 32px rgba(179,71,143,0.12);
  position: relative;
  overflow: hidden;
}

.top-banner-modern::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(179,71,143,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--accent), #c96ca4);
  color: white;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(179,71,143,0.3);
}

.banner-badge svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
}

.banner-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.banner-description {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 2rem 0;
}

.banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c96ca4);
  color: white;
  box-shadow: 0 4px 15px rgba(179,71,143,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179,71,143,0.4);
}

.btn-secondary {
  background: white;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* Card de Benefícios */
.benefits-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(179,71,143,0.1);
}

.benefits-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f5f5f5;
}

.benefits-header svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
}

.benefits-header span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefits-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefits-list li svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-list li div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.benefits-list li strong {
  font-size: 0.95rem;
  color: #333;
  font-weight: 600;
}

.benefits-list li span {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

/* Responsivo - Banner Moderno */
@media (max-width: 1024px) {
  .banner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .banner-card-col {
    order: -1;
  }
}

@media (max-width: 768px) {
  .top-banner-modern {
    padding: 2rem 1.5rem;
  }

  .banner-main-title {
    font-size: 1.85rem;
  }

  .banner-description {
    font-size: 1rem;
  }

  .benefits-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .top-banner-modern {
    padding: 1.5rem 1rem;
  }

  .banner-main-title {
    font-size: 1.6rem;
  }

  .banner-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .benefits-list {
    gap: 1rem;
  }

  .benefits-list li {
    gap: 0.75rem;
  }
}

/* ========================================
   OPÇÃO C: BANNER MINIMALISTA ELEGANTE
   ======================================== */
.top-banner-minimal {
  background: white;
  margin-top: 16px;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(179,71,143,0.15);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
}

.banner-content {
  max-width: 700px;
  margin: 0 auto;
}

.banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.banner-eyebrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
}

.banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.banner-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  font-weight: 300;
}

.banner-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: #fef9fc;
  border: 1px solid rgba(179,71,143,0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
}

.feature-tag svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
}

.banner-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--accent), #c96ca4);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(179,71,143,0.25);
}

.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179,71,143,0.35);
}

/* Responsivo - Banner Minimalista */
@media (max-width: 768px) {
  .top-banner-minimal {
    padding: 2rem 1.5rem;
  }

  .banner-title {
    font-size: 2rem;
  }

  .banner-subtitle {
    font-size: 1rem;
  }

  .banner-features {
    gap: 0.5rem;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .top-banner-minimal {
    padding: 1.5rem 1rem;
  }

  .banner-title {
    font-size: 1.75rem;
  }

  .banner-subtitle {
    font-size: 0.95rem;
  }

  .banner-features {
    flex-direction: column;
    align-items: center;
  }

  .feature-tag {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

/* ========================================
   BANNER ORIGINAL (DESATIVADO)
   ======================================== */
.top-banner:not(.top-banner-minimal) {
  display: flex;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,228,240,0.8) 0%, rgba(255,217,232,0.8) 100%);
  margin-top: 16px;
  padding: 32px;
  border-radius: 20px;
  border: 2px solid rgba(179,71,143,0.15);
  box-shadow: 0 8px 30px rgba(179,71,143,0.15);
  position: relative;
  overflow: hidden;
}

.top-banner:not(.top-banner-minimal)::before {
  content: '✿';
  position: absolute;
  top: -20px;
  right: 30px;
  font-size: 8rem;
  color: rgba(179,71,143,0.08);
  z-index: 0;
}

.top-banner:not(.top-banner-minimal)::after {
  content: '✿';
  position: absolute;
  bottom: -30px;
  left: 20px;
  font-size: 6rem;
  color: rgba(179,71,143,0.06);
  z-index: 0;
}

.top-banner .txt {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.top-banner-label {
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #d4578f);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(179,71,143,0.3);
}

.top-banner h3 {
  margin: 12px 0 0;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
}

.top-banner p {
  margin: 10px 0 0;
  font-size: 1rem;
  color: #6b4b5e;
  line-height: 1.6;
}

/* ========================================
   TÍTULOS DE SEÇÃO
   ======================================== */
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 1.3rem;
  margin: 0 0 10px 0;
  position: relative;
  padding-bottom: 14px;
}

.section-title .dec-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #fdeef3);
  box-shadow: 0 4px 10px rgba(179,71,143,0.10);
}

.section-subtitle {
  color: var(--accent);
  margin-top: 18px;
  margin-bottom: 10px;
}

/* ========================================
   IMAGENS E THUMBNAILS
   ======================================== */
.thumb {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin: auto;
  border: 4px solid var(--muted);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(179,71,143,0.2);
  position: relative;
}

.thumb::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  background: rgba(179,71,143,0.9);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
}

.thumb:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 12px 35px rgba(179,71,143,0.35);
  border-color: var(--accent);
}

.thumb:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.thumb.batizado {
  border-color: var(--gold);
}

.thumb.batizado:hover {
  border-color: var(--gold);
  filter: brightness(1.05);
}

/* ========================================
   CARROSSEL HORIZONTAL
   ======================================== */
.carousel-wrap {
  position: relative;
  margin-top: 8px;
  margin-bottom: 10px;
}

.carousel {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 12px 6px 18px 6px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 10px;
}

.carousel-item {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  text-align: center;
}

.carousel-item p {
  margin-top: 8px;
  font-weight: 600;
  color: #333;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #d4578f);
  box-shadow: 0 6px 20px rgba(179,71,143,0.4);
  border: 3px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 25px rgba(179,71,143,0.5);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn.left {
  left: -10px;
}

.carousel-btn.right {
  right: -10px;
}

.carousel-btn svg {
  width: 22px;
  height: 22px;
  stroke: white;
  stroke-width: 3;
  fill: none;
  transition: transform 0.3s ease;
}

.carousel-btn:hover svg {
  transform: scale(1.2);
}

/* ========================================
   CATÁLOGO
   ======================================== */
.catalogo-carousel-wrap {
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
}

.catalogo-carousel {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 12px 6px 18px 6px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.catalogo-carousel::-webkit-scrollbar {
  height: 8px;
}

.catalogo-carousel::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 10px;
}

.catalogo-carousel-item {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
}

.catalogo-item {
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #fef8fb 100%);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(179,71,143,0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border: 2px solid rgba(179,71,143,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.catalogo-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #d4578f, var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.catalogo-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 50px rgba(179,71,143,0.25);
  border-color: var(--accent);
}

.catalogo-item:hover::before {
  transform: scaleX(1);
}

.catalogo-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid rgba(179,71,143,0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(179,71,143,0.15);
}

.catalogo-item:hover img {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(179,71,143,0.3);
}

.catalogo-item h3 {
  margin: 0;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

.catalogo-item .price {
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #d4578f);
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(179,71,143,0.3);
  position: relative;
}

.catalogo-item .price::before {
  content: '💰';
  margin-right: 6px;
}

.catalogo-item .btn {
  margin-top: auto;
  width: 100%;
}

/* ========================================
   CATÁLOGO - OPÇÃO 2: CARROSSEL MELHORADO
   ======================================== */
.carousel-premium-wrap {
  position: relative;
  margin-top: 2rem;
}

.carousel-premium {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0.5rem 1.5rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #f0f0f0;
}

.carousel-premium::-webkit-scrollbar {
  height: 8px;
}

.carousel-premium::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.carousel-premium::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.carousel-premium::-webkit-scrollbar-thumb:hover {
  background: #9d3574;
}

/* Item do carrossel */
.carousel-premium-item {
  flex: 0 0 auto;
  width: 340px;
  scroll-snap-align: start;
}

/* Card premium */
.premium-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(179,71,143,0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(179,71,143,0.2);
  border-color: var(--accent);
}

/* Badge do card premium */
.premium-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.badge-new {
  background: linear-gradient(135deg, #5c7cfa, #4c6ef5);
  color: white;
}

/* Imagem do card premium */
.premium-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff5f7 100%);
}

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

.premium-card:hover .premium-image img {
  transform: scale(1.08);
}

/* Conteúdo do card premium */
.premium-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.premium-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.premium-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

/* Divisor decorativo */
.premium-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 1rem;
  border-radius: 2px;
}

/* Lista de features */
.premium-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.premium-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.4;
}

.premium-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Seção de preço */
.premium-price-section {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.premium-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.premium-price-label {
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.premium-price-value {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

/* Botão do card premium */
.premium-btn {
  display: inline-block;
  text-align: center;
  padding: 0.8rem 1.25rem;
  background: linear-gradient(135deg, var(--accent), #c96ca4);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(179,71,143,0.25);
}

.premium-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179,71,143,0.35);
  background: linear-gradient(135deg, #c96ca4, var(--accent));
}

/* Botões de navegação do carrossel */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: 2px solid rgba(179,71,143,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.carousel-nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(179,71,143,0.3);
}

.carousel-nav-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  transition: stroke 0.3s ease;
}

.carousel-nav-btn:hover svg {
  stroke: white;
}

.carousel-nav-left {
  left: -24px;
}

.carousel-nav-right {
  right: -24px;
}

/* Responsivo - Carrossel Premium */
@media (max-width: 1024px) {
  .carousel-nav-left {
    left: -16px;
  }

  .carousel-nav-right {
    right: -16px;
  }

  .carousel-premium-item {
    width: 320px;
  }
}

@media (max-width: 768px) {
  .carousel-nav-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .carousel-nav-left {
    left: -8px;
  }

  .carousel-nav-right {
    right: -8px;
  }

  .carousel-premium-item {
    width: 280px;
  }

  .premium-image {
    height: 180px;
  }

  .premium-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .carousel-nav-btn {
    display: none;
  }

  .carousel-premium-item {
    width: 260px;
  }

  .premium-content {
    padding: 1.25rem;
  }

  .premium-price-value {
    font-size: 1.5rem;
  }
}

/* ========================================
   CATÁLOGO - OPÇÃO 1: GRID MODERNO
   ======================================== */
.catalog-intro {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  margin: 1rem 0 2.5rem 0;
  line-height: 1.6;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.catalog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(179,71,143,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(179,71,143,0.2);
  border-color: var(--accent);
}

/* Badge de destaque */
.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.badge-popular {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
}

.badge-best {
  background: linear-gradient(135deg, #51cf66, #37b24d);
  color: white;
}

.badge-premium {
  background: linear-gradient(135deg, #ffd43b, #fab005);
  color: #333;
}

/* Imagem do card */
.card-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff5f7 100%);
}

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

.catalog-card:hover .card-image img {
  transform: scale(1.1);
}

/* Conteúdo do card */
.card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin: 0;
  line-height: 1.3;
}

.card-description {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Lista de itens inclusos */
.card-includes {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.card-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.card-includes li svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Rodapé do card */
.card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.price-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.price-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

/* Botão do card */
.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--accent), #c96ca4);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(179,71,143,0.25);
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179,71,143,0.35);
  background: linear-gradient(135deg, #c96ca4, var(--accent));
}

.card-btn svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.card-btn:hover svg {
  transform: translateX(4px);
}

/* Responsivo - Grid Catálogo */
@media (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .catalog-intro {
    font-size: 1rem;
    margin: 1rem 0 2rem 0;
  }

  .card-image {
    height: 200px;
  }

  .card-content {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .card-content {
    padding: 1.25rem;
  }

  .card-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
  }

  .price-value {
    font-size: 1.5rem;
  }

  .card-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* ========================================
   BOTÕES FLUTUANTES
   ======================================== */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

@keyframes pulseInsta {
  0% {
    box-shadow: 0 0 0 0 #bc1888;
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}


@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.whats-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  z-index: 9999;
  animation: pulse 2s infinite, float 3s ease-in-out infinite;
  transition: all 0.3s ease;
  border: 3px solid white;
}

.whats-btn:hover {
  transform: scale(1.15) rotate(5deg);
  /* box-shadow: 0 12px 35px rgba(37,211,102,0.6); */
}

.whats-btn img {
  width: 38px;
  height: 38px;
}

.insta-btn {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 110px;
  right: 20px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 12px 16px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  /* box-shadow: 0 8px 25px rgba(188,24,136,0.4); */
  z-index: 9999;
  transition: all 0.3s ease;
  border: 2px solid white;
  animation: pulseInsta 2s infinite, float 3s ease-in-out infinite;
  transition: all 0.3s ease;
  border: 3px solid white;
}

.insta-btn:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 12px 35px rgba(188,24,136,0.6);
}

.insta-btn svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ========================================
   SEÇÃO SOBRE
   ======================================== */
#sobre {
  background: linear-gradient(135deg, #fff0f7 0%, #ffe8f2 100%);
  border: 2px solid rgba(179,71,143,0.2);
  position: relative;
  overflow: hidden;
}

#sobre::before {
  content: '✿';
  position: absolute;
  top: -30px;
  right: -20px;
  font-size: 12rem;
  color: rgba(179,71,143,0.05);
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  margin-top: 20px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-intro {
  font-size: 1.2rem;
  font-weight: 600;
  color: #5a3649;
  line-height: 1.8;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.5);
  padding: 16px;
  padding-left: 20px;
  border-radius: 0 12px 12px 0;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a3649;
}

.about-text strong {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
}

.about-features {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  border: 2px solid rgba(179,71,143,0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(179,71,143,0.15);
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--accent), #d4578f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(179,71,143,0.3);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-item h4 {
  margin: 0 0 4px 0;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-item p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ========================================
   RODAPÉ
   ======================================== */
/* ========================================
   RODAPÉ MODERNO
   ======================================== */
.footer-modern {
  background: linear-gradient(135deg, #2d1b28 0%, #3d2535 100%);
  color: #f0d4e5;
  margin-top: 60px;
  padding: 60px 40px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 20px;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #ffe4f0;
  margin-bottom: 12px;
}

.footer-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffe4f0;
  margin-bottom: 16px;
}

.footer-desc {
  color: #d4a8c1;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 228, 240, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 228, 240, 0.2);
}

.footer-social a:hover {
  background: #b3478f;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(179, 71, 143, 0.4);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: #ffe4f0;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #d4a8c1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffe4f0;
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #d4a8c1;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  stroke: #b3478f;
  flex-shrink: 0;
}

.footer-contact a {
  color: #d4a8c1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffe4f0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 228, 240, 0.1);
  padding-top: 30px;
  text-align: center;
  color: #a07892;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 8px 0;
}

.footer-dev {
  font-style: italic;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-modern {
    padding: 40px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }
}

/* ========================================
   ANIMAÇÕES DE ENTRADA
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Elementos com animação */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.animated {
  animation-name: fadeInUp;
}

.fade-left.animated {
  animation-name: fadeInLeft;
}

.fade-right.animated {
  animation-name: fadeInRight;
}

.fade-in.animated {
  animation-name: fadeIn;
}

/* Delays escalonados para cards */
.animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { animation-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { animation-delay: 0.5s; }

/* ========================================
   MENU HAMBURGUER E MOBILE
   ======================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Mobile */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  pointer-events: none;
}

.mobile-menu.active {
  pointer-events: auto;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.active .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: linear-gradient(180deg, #ffe4f0 0%, #ffd9e8 100%);
  box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 2px solid rgba(179,71,143,0.15);
}

.mobile-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close svg {
  width: 28px;
  height: 28px;
}

.mobile-nav {
  flex: 1;
  padding: 20px 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  text-decoration: none;
  color: #5a3649;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(179,71,143,0.1);
  border-left-color: var(--accent);
  color: var(--accent);
}

.mobile-nav-link svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  flex-shrink: 0;
}

.mobile-menu-footer {
  padding: 20px;
  border-top: 2px solid rgba(179,71,143,0.15);
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (min-width: 1000px) {
  .decor-flower {
    display: block;
  }
}

@media (max-width: 880px) {
  .header-top-inner {
    padding: 0 20px;
  }

  .header-banner {
    padding: 50px 20px;
  }

  .banner-brand-name {
    font-size: 2.8rem;
  }

  .banner-brand-tagline {
    font-size: 1.4rem;
    letter-spacing: 6px;
  }

  .banner-decoration,
  .banner-decoration-right {
    opacity: 0.1;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    padding: 6px 12px;
    font-size: 0.95rem;
  }

  .brand {
    font-size: 1.5rem;
    padding: 6px 16px;
  }

  /* Opção 1 - responsivo */
  .brand-option-1 {
    gap: 12px;
    padding: 10px 18px;
  }

  .brand-option-1 .brand-icon {
    width: 40px;
    height: 40px;
  }

  .brand-option-1 .brand-name {
    font-size: 1.3rem;
  }

  .brand-option-1 .brand-subtitle {
    font-size: 0.65rem;
  }

  /* Opção 2 - responsivo */
  .brand-option-2 {
    padding: 12px 20px;
  }

  .signature-name {
    font-size: 2rem;
  }

  .signature-tagline {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .signature-subtitle {
    font-size: 0.7rem;
  }

  /* Opção 3 - responsivo */
  .badge-circle {
    width: 100px;
    height: 100px;
  }

  .badge-top-text {
    font-size: 0.85rem;
  }

  .badge-center-icon {
    width: 24px;
    height: 24px;
  }

  .badge-main-text {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
  }

  .badge-bottom-text {
    font-size: 0.65rem;
  }

  .badge-year {
    font-size: 0.5rem;
  }

  /* Opção 4 - responsivo */
  .brand-option-4 {
    padding: 10px 18px;
  }

  .modern-logo {
    gap: 12px;
  }

  .logo-icon-modern {
    width: 42px;
    height: 42px;
  }

  .logo-icon-modern svg {
    width: 28px;
    height: 28px;
  }

  .logo-name-line1 {
    font-size: 1.2rem;
  }

  .logo-name-line2 {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 720px) {
  .header-top-inner {
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .top-bar-left {
    flex: 1;
  }

  .top-bar-text {
    font-size: 0.75rem;
  }

  .top-bar-right {
    display: flex;
    align-items: center;
  }

  .btn-top-bar {
    display: none; /* Esconde botões no mobile */
  }

  .hamburger {
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 8px;
  }

  .header-banner {
    padding: 40px 16px;
  }

  .banner-brand-name {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .banner-brand-tagline {
    font-size: 1.1rem;
    letter-spacing: 4px;
  }

  .banner-subtitle {
    font-size: 0.75rem;
  }

  .banner-description {
    font-size: 0.95rem;
  }

  .banner-decoration {
    width: 100px;
    height: 100px;
    left: 5%;
  }

  .banner-decoration-right {
    width: 80px;
    height: 80px;
    right: 5%;
  }

  header {
    min-height: auto;
    padding: 0;
  }

  .brand {
    font-size: 1.2rem;
    padding: 4px 8px;
  }

  .brand::before,
  .brand::after {
    font-size: 0.9rem;
  }

  /* Opção 1 - mobile */
  .brand-option-1 {
    gap: 8px;
    padding: 8px 12px;
  }

  .brand-option-1 .brand-icon {
    width: 32px;
    height: 32px;
  }

  .brand-option-1 .brand-name {
    font-size: 1.1rem;
  }

  .brand-option-1 .brand-subtitle {
    font-size: 0.55rem;
    letter-spacing: 0.5px;
  }

  /* Opção 2 - mobile */
  .brand-option-2 {
    padding: 8px 12px;
  }

  .signature-name {
    font-size: 1.5rem;
  }

  .signature-tagline {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
  }

  .signature-subtitle {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .signature-underline svg {
    height: 16px;
  }

  /* Opção 3 - mobile */
  .badge-circle {
    width: 85px;
    height: 85px;
    border: 2px solid rgba(179, 71, 143, 0.2);
  }

  .badge-content {
    padding: 8px;
  }

  .badge-top-text {
    font-size: 0.7rem;
  }

  .badge-center-icon {
    width: 18px;
    height: 18px;
    margin: 2px 0;
  }

  .badge-main-text {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .badge-bottom-text {
    font-size: 0.55rem;
  }

  .badge-year {
    font-size: 0.45rem;
  }

  /* Opção 4 - mobile */
  .brand-option-4 {
    padding: 6px 10px;
  }

  .modern-logo {
    gap: 10px;
  }

  .logo-icon-modern {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .logo-icon-modern svg {
    width: 22px;
    height: 22px;
  }

  .logo-name-line1 {
    font-size: 1rem;
  }

  .logo-name-line2 {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  /* Botões escondidos, apenas hamburger visível */
  .header-right {
    order: 3;
    justify-content: flex-end;
  }

  .header-right .btn {
    display: none;
  }

  /* Esconder menu desktop */
  .desktop-nav {
    display: none;
  }

  .top-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-banner .txt {
    font-size: 1.05rem;
  }
}

/* ========================================
   OPÇÃO 1: SISTEMA DE ABAS - GALERIA
   ======================================== */
.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #f0f0f0;
}

.gallery-tabs::-webkit-scrollbar {
  height: 6px;
}

.gallery-tabs::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}

.gallery-tabs::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.gallery-tabs::-webkit-scrollbar-thumb:hover {
  background: #9d3574;
}

/* FILTROS VISUAIS MELHORADOS */
.gallery-tabs-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tab-card {
  background: linear-gradient(135deg, #fff5fa 0%, #ffffff 100%);
  border: 2px solid rgba(179, 71, 143, 0.15);
  border-radius: 16px;
  padding: 20px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.tab-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b3478f, #d4578f);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-card.active::before {
  transform: scaleX(1);
}

.tab-card:hover {
  transform: translateY(-5px);
  border-color: #b3478f;
  box-shadow: 0 8px 24px rgba(179, 71, 143, 0.2);
}

.tab-card.active {
  background: linear-gradient(135deg, #ffe8f0 0%, #fff5fa 100%);
  border-color: #b3478f;
  box-shadow: 0 4px 16px rgba(179, 71, 143, 0.15);
}

.tab-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(179, 71, 143, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tab-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #b3478f;
  transition: all 0.3s ease;
}

.tab-card:hover .tab-card-icon,
.tab-card.active .tab-card-icon {
  background: #b3478f;
  transform: scale(1.1);
}

.tab-card:hover .tab-card-icon svg,
.tab-card.active .tab-card-icon svg {
  stroke: white;
}

.tab-card-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #8b5a7d;
  text-align: center;
  transition: color 0.3s ease;
}

.tab-card:hover .tab-card-label,
.tab-card.active .tab-card-label {
  color: #b3478f;
}

.tab-card-badge {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: rgba(179, 71, 143, 0.1);
  border-radius: 12px;
  color: #b3478f;
  font-weight: 600;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  top: 2px;
  flex-shrink: 0;
  white-space: nowrap;
}

.tab-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.tab-btn:hover {
  color: var(--accent);
  background: rgba(179, 71, 143, 0.05);
}

.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  font-weight: 600;
}

.gallery-tab-content {
  margin-top: 1.5rem;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo - Abas */
@media (max-width: 768px) {
  .gallery-tabs {
    gap: 0.25rem;
  }

  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .tab-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .tab-btn {
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
  }

  .tab-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* ========================================
   OPÇÃO 3: ACORDEÃO - GALERIA (DESATIVADA)
   ======================================== */
.gallery-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 16px rgba(179, 71, 143, 0.15);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.accordion-header:hover {
  background: #fef9fc;
}

.accordion-header.active {
  background: linear-gradient(135deg, #fff7fc, #fef9fc);
  border-bottom-color: var(--muted);
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.accordion-title svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
}

.accordion-title span:first-of-type {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.accordion-title .count {
  font-size: 0.85rem;
  color: #999;
  font-weight: 400;
  margin-left: auto;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.accordion-content.active {
  max-height: 2000px;
  padding: 1.5rem;
  padding-top: 1rem;
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.accordion-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion-grid img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 16px rgba(179, 71, 143, 0.2);
}

/* Responsivo - Acordeão */
@media (max-width: 768px) {
  .accordion-header {
    padding: 1rem 1.25rem;
  }

  .accordion-title span:first-of-type {
    font-size: 1rem;
  }

  .accordion-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .accordion-grid img {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .accordion-header {
    padding: 0.875rem 1rem;
  }

  .accordion-title {
    gap: 0.75rem;
  }

  .accordion-title svg {
    width: 20px;
    height: 20px;
  }

  .accordion-title span:first-of-type {
    font-size: 0.95rem;
  }

  .accordion-title .count {
    font-size: 0.75rem;
  }

  .accordion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .accordion-grid img {
    height: 100px;
  }

  .accordion-content.active {
    padding: 1rem;
  }
}

/* ========================================
   OPÇÃO 2: GRID COM FILTROS - GALERIA
   ======================================== */
.gallery-filters {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 2px solid #e0e0e0;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(179, 71, 143, 0.2);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent), #c96ca4);
  border-color: var(--accent);
  color: white;
  font-weight: 600;
}

.filter-btn.active svg {
  stroke: white;
}

/* Grid de Fotos */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 100%;
}

.photo-item {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%; /* Cria um quadrado perfeito */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: fadeInGrid 0.5s ease;
  cursor: pointer;
}

.photo-item.hide {
  display: none;
}

.photo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(179, 71, 143, 0.25);
}

.grid-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.photo-item:hover .grid-img {
  transform: scale(1.1);
}

@keyframes fadeInGrid {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsivo - Grid */
@media (max-width: 1024px) {
  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .filter-btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
  }

  .filter-btn svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gallery-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .filter-btn {
    flex: 1;
    justify-content: center;
    min-width: 0;
  }

  .filter-btn svg {
    display: none;
  }
}

/* ========================================
   TABELA DE PREÇOS
   ======================================== */
.price-category {
  margin-bottom: 2.5rem;
}

.price-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--muted);
}

.price-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.price-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:not(.price-header):hover {
  background-color: #fef9fc;
}

.price-header {
  background: linear-gradient(135deg, var(--accent), #c96ca4);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.price-header .price-col {
  color: white;
}

.price-col {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #444;
}

.price-value {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent);
  justify-content: flex-end;
}

/* Informações Adicionais */
.price-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fff7fc, #fef9fc);
  border-radius: 12px;
  border: 2px solid var(--muted);
}

.price-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.price-info-item svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  stroke: var(--accent);
  fill: none;
}

.price-info-item strong {
  display: block;
  color: var(--accent);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.price-info-item p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsivo - Tabela de Preços */
@media (max-width: 768px) {
  .price-table {
    border-radius: 8px;
    overflow: visible;
  }

  .price-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.25rem 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    background: white;
    border-radius: 8px;
  }

  .price-row:last-child {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
  }

  .price-row:not(.price-header):hover {
    background-color: #fef9fc;
  }

  .price-header {
    display: none;
  }

  /* Nome do Produto */
  .price-row:not(.price-header) .price-col:first-child {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent);
    display: block;
  }

  /* Descrição */
  .price-row:not(.price-header) .price-col:nth-child(2) {
    font-size: 0.9rem;
    color: #666;
    display: block;
  }

  /* Preço */
  .price-row:not(.price-header) .price-col:nth-child(3) {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.3rem;
    padding-top: 0.5rem;
    border-top: 1px dashed #e0e0e0;
  }

  .price-row:not(.price-header) .price-col:nth-child(3)::before {
    content: 'Valor:';
    font-size: 0.85rem;
    font-weight: 400;
    color: #888;
  }

  .price-col {
    justify-content: flex-start;
  }

  .price-info {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 12px;
  }

  .brand {
    font-size: 1.1rem;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    padding: 5px 8px;
    font-size: 0.8rem;
  }

  .price-category-title {
    font-size: 1.2rem;
  }

  .price-row {
    padding: 0.85rem;
  }

  .price-row:not(.price-header) .price-col:first-child {
    font-size: 1rem;
  }

  .price-row:not(.price-header) .price-col:nth-child(2) {
    font-size: 0.85rem;
  }

  .price-row:not(.price-header) .price-col:nth-child(3) {
    font-size: 1.1rem;
  }
}
