@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ==========================================================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */
:root {
  /* Elegant HSL Color Palette */
  --bg-blush-soft: hsl(350, 100%, 98%);       /* Ultra soft pinkish white */
  --bg-blush-medium: hsl(350, 100%, 96%);     /* Soft rose pastel background */
  --primary-rose-light: hsl(350, 80%, 90%);   /* Delicate light rose */
  --primary-rose: hsl(350, 60%, 62%);         /* Charming heart pink accent */
  --primary-rose-dark: hsl(350, 48%, 45%);    /* Sophisticated deep dark rose */
  --accent-gold: hsl(38, 48%, 78%);           /* Delicate soft gold */
  --accent-gold-dark: hsl(38, 38%, 56%);      /* Premium warm gold text */
  --text-dark: hsl(350, 24%, 18%);            /* Muted dark berry text */
  --text-light: hsl(350, 15%, 55%);           /* Muted lighter text */
  --white: #ffffff;
  --black: #000000;
  
  /* Glassmorphism & Borders */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-premium: 0 12px 30px -10px hsla(350, 40%, 40%, 0.12);
  --shadow-hover: 0 20px 40px -12px hsla(350, 40%, 40%, 0.2);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  
  /* Typography */
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', Helvetica, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & SYSTEM BASICS
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--bg-blush-soft);
  color: var(--text-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* App Wrapper to enforce an app-like container on large screens */
.app-wrapper {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-blush-soft);
  position: relative;
  box-shadow: 0 0 40px rgba(176, 58, 78, 0.06);
  border-left: 1px solid rgba(176, 58, 78, 0.04);
  border-right: 1px solid rgba(176, 58, 78, 0.04);
}

/* Scroll reveal items */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.3;
}

p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

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

.title-center {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.title-center h2 {
  font-size: 26px;
  color: var(--primary-rose-dark);
  margin-bottom: 6px;
}

.title-center .subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold-dark);
  font-weight: 600;
  display: inline-block;
  position: relative;
}

/* Decorative divider */
.title-center .subtitle::before,
.title-center .subtitle::after {
  content: '🌸';
  font-size: 10px;
  margin: 0 6px;
  opacity: 0.8;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(176, 58, 78, 0.08);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--accent-gold);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

header .brand-info {
  display: flex;
  flex-direction: column;
}

header .brand-name {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-rose-dark);
}

header .brand-tagline {
  font-size: 9px;
  letter-spacing: 0.5px;
  color: var(--accent-gold-dark);
  font-weight: 500;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 40px 24px 32px 24px;
  background: linear-gradient(180deg, var(--bg-blush-medium) 0%, var(--bg-blush-soft) 100%);
  text-align: center;
  overflow: hidden;
}

/* Background floating sparkles */
.sparkle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  background: var(--white);
  border: 1px solid var(--primary-rose-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-rose-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-premium);
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.hero .logo-main {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 8px 24px rgba(176, 58, 78, 0.15);
  margin-bottom: 20px;
  position: relative;
}

.logo-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1.5px dashed var(--accent-gold);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.hero h1 {
  font-size: 32px;
  color: var(--primary-rose-dark);
  margin-bottom: 8px;
}

.hero .slogan {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-gold-dark);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero .desc {
  font-size: 13px;
  color: var(--text-light);
  max-width: 90%;
  margin: 0 auto 24px auto;
  line-height: 1.5;
}

/* Action Buttons */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

/* Premium Buttons Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
  border: none;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  pointer-events: none;
}

.btn:hover::after {
  left: 125%;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-rose) 0%, var(--primary-rose-dark) 100%);
  color: var(--white);
}

.btn-accent {
  background: var(--white);
  color: var(--primary-rose-dark);
  border: 1px solid var(--primary-rose-light);
}

.btn-shopee {
  background: #EE4D2D;
  color: var(--white);
}

.btn-candle {
  background: linear-gradient(135deg, hsl(38, 75%, 64%) 0%, hsl(24, 80%, 54%) 100%);
  color: var(--white);
}

.btn-artesanou {
  background: #FFF;
  color: #B03A4E;
  border: 1px solid #B03A4E;
}

.btn-install-hero {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--text-dark);
}

/* ==========================================================================
   TRUST COUNTER SECTION (ANIMATED)
   ========================================================================== */
.trust-counter {
  padding: 32px 20px;
  background: var(--white);
  border-top: 1px solid rgba(176, 58, 78, 0.05);
  border-bottom: 1px solid rgba(176, 58, 78, 0.05);
}

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

.counter-card {
  background: var(--bg-blush-soft);
  border: 1px solid rgba(176, 58, 78, 0.04);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.counter-card:hover {
  transform: translateY(-4px);
  background: var(--bg-blush-medium);
  box-shadow: var(--shadow-premium);
}

.counter-icon {
  font-size: 20px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(176, 58, 78, 0.06);
}

.counter-number {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-rose-dark);
}

.counter-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
}

/* ==========================================================================
   CAROUSEL GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 40px 20px;
  background: var(--bg-blush-soft);
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  background: var(--white);
  border: 4px solid var(--white);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  height: 280px;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--primary-rose-light);
  color: var(--primary-rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.carousel-arrow:hover {
  background: var(--primary-rose);
  color: var(--white);
}

.carousel-arrow.prev {
  left: 12px;
}

.carousel-arrow.next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--primary-rose);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  width: 18px;
  border-radius: 4px;
  background: var(--primary-rose);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 5, 8, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 4px solid var(--white);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--primary-rose);
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.categories-section {
  padding: 40px 20px;
  background: var(--white);
}

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

.category-card {
  background: var(--bg-blush-soft);
  border: 1px dashed var(--primary-rose-light);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.category-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: var(--primary-rose);
  box-shadow: var(--shadow-premium);
}

.category-icon {
  font-size: 24px;
  background: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(176, 58, 78, 0.05);
}

.category-title {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-rose-dark);
}

.category-card .btn-card-quote {
  padding: 8px 12px;
  font-size: 10px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--primary-rose-dark);
  border: 1.5px solid var(--primary-rose-light);
  transition: var(--transition-fast);
  font-weight: 700;
}

.category-card:hover .btn-card-quote {
  background: var(--primary-rose-dark);
  color: var(--white);
  border-color: var(--primary-rose-dark);
}

/* ==========================================================================
   BUDGET SIMULATOR (INTERACTIVE & EMOTIONAL)
   ========================================================================== */
.simulator-section {
  padding: 40px 20px;
  background: var(--bg-blush-medium);
}

.simulator-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--white);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  position: relative;
}

.simulator-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-gold), var(--primary-rose), var(--accent-gold));
}

.simulator-header {
  padding: 24px 20px 12px 20px;
  text-align: center;
  border-bottom: 1px solid var(--bg-blush-medium);
}

.simulator-header h3 {
  font-size: 20px;
  color: var(--primary-rose-dark);
}

.simulator-header p {
  font-size: 11px;
  color: var(--accent-gold-dark);
  font-weight: 500;
  margin-top: 4px;
}

.simulator-progress {
  height: 4px;
  background: var(--bg-blush-soft);
  width: 100%;
  position: relative;
}

.simulator-progress-bar {
  height: 100%;
  background: var(--primary-rose);
  width: 25%;
  transition: width 0.4s ease;
}

.simulator-body {
  padding: 24px 20px;
  min-height: 220px;
}

/* Step container transitions */
.step-container {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.step-container.active {
  display: block;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

/* Event selector items */
.event-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.option-btn {
  background: var(--bg-blush-soft);
  border: 1.5px solid rgba(176, 58, 78, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-dark);
}

.option-btn.selected {
  background: var(--white);
  border-color: var(--primary-rose);
  box-shadow: 0 4px 10px rgba(176, 58, 78, 0.1);
  color: var(--primary-rose-dark);
  font-weight: 600;
}

/* Custom check switch styles */
.toggle-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-blush-soft);
  padding: 14px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid rgba(176, 58, 78, 0.04);
}

.toggle-option label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.toggle-switch input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(176, 58, 78, 0.15);
  transition: .4s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--white);
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

input:checked + .toggle-slider {
  background-color: var(--primary-rose);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

/* Custom Text/Date Input fields for Simulator Step 3 */
.input-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  text-align: left;
}

.input-field-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-rose-dark);
  padding-left: 4px;
}

.input-field {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(176, 58, 78, 0.15);
  background: var(--bg-blush-soft);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: var(--transition-smooth);
}

.input-field::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.input-field:focus {
  border-color: var(--primary-rose);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(176, 58, 78, 0.08);
}

/* Summary Box */
.summary-container {
  background: var(--bg-blush-soft);
  border: 1.5px dashed var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(176, 58, 78, 0.05);
  font-size: 12px;
}

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

.summary-label {
  color: var(--text-light);
  font-weight: 500;
}

.summary-value {
  color: var(--primary-rose-dark);
  font-weight: 700;
}

/* Simulator Footer Navigation */
.simulator-footer {
  padding: 12px 20px 24px 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.simulator-footer .btn {
  width: auto;
  flex: 1;
}

#btn-prev {
  background: var(--bg-blush-soft);
  color: var(--primary-rose-dark);
  border: 1px solid var(--primary-rose-light);
}

/* ==========================================================================
   AVALIAÇÕES REAIS (TESTIMONIALS)
   ========================================================================== */
.reviews-section {
  padding: 40px 20px;
  background: var(--white);
}

.rating-header {
  text-align: center;
  background: var(--bg-blush-soft);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(176, 58, 78, 0.04);
}

.rating-stars {
  color: #FFC107;
  font-size: 18px;
  margin-bottom: 6px;
}

.rating-title {
  font-family: var(--font-title);
  font-size: 16px;
  color: var(--primary-rose-dark);
  font-weight: 700;
}

.rating-desc {
  font-size: 11px;
  color: var(--text-light);
}

.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.review-card {
  background: var(--bg-blush-soft);
  border-left: 3px solid var(--primary-rose);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(176, 58, 78, 0.03);
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.review-author {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-rose-dark);
}

.review-stars {
  color: #FFC107;
  font-size: 11px;
}

.review-text {
  font-size: 12px;
  color: var(--text-dark);
  line-height: 1.5;
  font-style: italic;
}

/* ==========================================================================
   ONLINE STORES SECTION
   ========================================================================== */
.stores-section {
  padding: 40px 20px;
  background: var(--bg-blush-medium);
}

.store-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-premium);
  border: 1.5px solid rgba(176, 58, 78, 0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.store-card:last-child {
  margin-bottom: 0;
}

.store-logo {
  font-size: 28px;
  background: var(--bg-blush-soft);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-rose);
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
}

.store-name {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--primary-rose-dark);
}

.store-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ==========================================================================
   INSTAGRAM SECTION
   ========================================================================== */
.instagram-section {
  padding: 40px 20px;
  background: var(--white);
  text-align: center;
}

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

.insta-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--bg-blush-medium);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(176, 58, 78, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 14px;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* ==========================================================================
   DIFERENCIAIS SECTION
   ========================================================================== */
.diferenciais-section {
  padding: 40px 20px;
  background: var(--bg-blush-soft);
}

.diferenciais-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dif-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(176, 58, 78, 0.03);
  border: 1px solid rgba(176, 58, 78, 0.04);
}

.dif-icon {
  font-size: 20px;
  color: var(--primary-rose);
  background: var(--bg-blush-soft);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dif-info {
  display: flex;
  flex-direction: column;
}

.dif-title {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-rose-dark);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 40px 20px;
  background: var(--white);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--primary-rose-light);
  border-radius: var(--radius-md);
  background: var(--bg-blush-soft);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-rose-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-icon {
  font-size: 12px;
  transition: transform 0.4s ease;
  color: var(--primary-rose);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 20px;
  font-size: 12px;
  color: var(--text-dark);
  line-height: 1.6;
  border-top: 0 solid transparent;
}

/* FAQ Active state */
.faq-item.active {
  background: var(--white);
  border-color: var(--primary-rose);
  box-shadow: var(--shadow-premium);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px 20px;
  border-top: 1px solid rgba(176, 58, 78, 0.08);
}

/* ==========================================================================
   PWA FLOATING INSTALL BANNER
   ========================================================================== */
.pwa-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 150%);
  width: calc(100% - 40px);
  max-width: 440px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--primary-rose-light);
  box-shadow: 0 20px 50px rgba(176, 58, 78, 0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 1000;
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.pwa-banner.active {
  transform: translate(-50%, 0);
  visibility: visible;
}

.pwa-banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.pwa-banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--accent-gold);
}

.pwa-banner-info {
  display: flex;
  flex-direction: column;
}

.pwa-banner-title {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-rose-dark);
}

.pwa-banner-desc {
  font-size: 10px;
  color: var(--text-light);
}

.pwa-banner-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pwa-btn-install {
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: var(--primary-rose);
  color: var(--white);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.pwa-btn-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.05);
  color: var(--text-light);
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.pwa-btn-close:hover {
  background: rgba(0,0,0,0.1);
  color: var(--text-dark);
}

/* iOS Specific instructions drawer */
.ios-instructions-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2500;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ios-instructions-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ios-modal-content {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 24px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.ios-instructions-modal.active .ios-modal-content {
  transform: translateY(0);
}

.ios-modal-title {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--primary-rose-dark);
  margin-bottom: 12px;
}

.ios-modal-steps {
  text-align: left;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ios-modal-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.ios-step-number {
  background: var(--bg-blush-medium);
  color: var(--primary-rose-dark);
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
}

.ios-modal-close {
  width: 100%;
  background: var(--bg-blush-soft);
  border: 1px solid var(--primary-rose-light);
  color: var(--primary-rose-dark);
}

/* ==========================================================================
   OFFICIAL CARDGO FOOTER
   ========================================================================== */
.cardgo-footer {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.cardgo-footer-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1) !important; /* STRICT: Always white */
  border: none;
  object-fit: contain;
}

.cardgo-footer-text {
  font-size: 11px;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 80%;
  color: var(--white) !important;
}

.cardgo-footer-text span {
  color: #1E90FF !important; /* STRICT: blue highlight for 'Tenha o seu também!' */
  font-weight: 700;
  display: block;
  margin-top: 6px;
}

.cardgo-footer-btn {
  background: #1E90FF !important;
  color: var(--white) !important;
  font-size: 12px;
  padding: 10px 24px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.cardgo-footer-btn:hover {
  background: #107ce6 !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

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

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

/* ==========================================================================
   FLOATING HEARTS DECORATION (DELICATE & TRANSPARENT)
   ========================================================================== */
.hearts-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.floating-heart-el {
  position: absolute;
  bottom: -40px;
  color: rgba(176, 58, 78, 0.06); /* Ultra-transparent soft pink hearts */
  font-size: 24px;
  user-select: none;
  pointer-events: none;
  animation: floatHeart 14s linear infinite;
  opacity: 0;
}

@keyframes floatHeart {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  15% {
    opacity: 0.5;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-110vh) rotate(360deg) scale(1.1);
    opacity: 0;
  }
}

