/* ==========================================================================
   MANICURE DE SUCESSO - KAMILA BESSA CONCEPT
   Luxury Modern Rose Design System
   ========================================================================== */

:root {
  /* Rose & Pink Luxury Palette */
  --rose-50: #fff6f8;
  --rose-100: #fdeaf0;
  --rose-200: #fad5e0;
  --rose-300: #f5b0c4;
  --rose-400: #ec82a1;
  --rose-500: #df5881;
  --rose-600: #c93462;
  --rose-700: #a7214a;
  --rose-800: #8b1e3f;
  --rose-900: #741c37;
  --rose-950: #44091b;

  /* Rose Gold & Champagne Tones */
  --champagne-50: #faf7f2;
  --champagne-100: #f5eedf;
  --champagne-200: #ebd8bd;
  --gold-primary: #c9935f;
  --gold-dark: #ab7542;
  --gold-light: #dfb285;

  /* Neutrals & Dark Luxury Tones */
  --bg-page: #fcf8f9;
  --bg-card: #ffffff;
  --bg-card-glass: rgba(255, 255, 255, 0.88);
  --bg-subtle: #f8eff2;
  --text-main: #2b1720;
  --text-muted: #6e5761;
  --text-soft: #9c838e;
  --line-light: rgba(223, 88, 129, 0.14);
  --line-gold: rgba(201, 147, 95, 0.25);

  /* Gradients */
  --hero-gradient: linear-gradient(135deg, #fdedf2 0%, #fadfe7 35%, #f6d1dc 70%, #fae8df 100%);
  --rose-gradient: linear-gradient(135deg, #df5881 0%, #c93462 50%, #a7214a 100%);
  --rose-gradient-hover: linear-gradient(135deg, #ec6b92 0%, #d83f6f 50%, #b82854 100%);
  --gold-gradient: linear-gradient(135deg, #eed0b4 0%, #c9935f 60%, #ab7542 100%);
  --card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 248, 0.85) 100%);
  --dark-gradient: linear-gradient(145deg, #2f131f 0%, #200c14 100%);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(139, 30, 63, 0.05);
  --shadow-md: 0 10px 25px rgba(139, 30, 63, 0.08);
  --shadow-lg: 0 20px 45px rgba(139, 30, 63, 0.12);
  --shadow-rose-glow: 0 12px 30px rgba(201, 52, 98, 0.35);
  --shadow-gold-glow: 0 10px 28px rgba(201, 147, 95, 0.3);

  /* Typography */
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", "Jost", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(245, 176, 196, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 90% 65%, rgba(245, 176, 196, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(235, 216, 189, 0.12) 0%, transparent 40%);
}

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

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

/* Typography Hierarchy */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
  margin: 1.2rem 0;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.45rem;
}

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

.text-gradient {
  background: var(--rose-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--gold-primary);
}

/* Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
}

.container-mid {
  max-width: 1020px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-top: 10px;
  margin-bottom: 14px;
}

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

/* Top Notification Bar */
.top-bar {
  background: var(--rose-900);
  background: linear-gradient(90deg, #741c37 0%, #a7214a 50%, #741c37 100%);
  color: #fff;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.top-bar .sparkle {
  color: #ffd2df;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-light);
  padding: 14px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(139, 30, 63, 0.08);
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.96);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--rose-900);
  line-height: 1.1;
}

.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  cursor: pointer;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose-500);
  transition: width 0.2s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--rose-600);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--rose-900);
  cursor: pointer;
}

/* Badges & Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(223, 88, 129, 0.3);
  color: var(--rose-800);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(223, 88, 129, 0.08);
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  position: relative;
}

.pulsing-dot::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-600);
  margin-bottom: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 16px 36px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--rose-gradient);
  color: #fff;
  box-shadow: var(--shadow-rose-glow);
}

.btn-primary:hover {
  background: var(--rose-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(201, 52, 98, 0.45);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--rose-900);
  border: 1px solid var(--rose-300);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #fff;
  border-color: var(--rose-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
  font-size: 1.15rem;
  padding: 20px;
}

.btn-shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  animation: shimmer-btn 3.5s infinite;
}

@keyframes shimmer-btn {
  0% { left: -100%; }
  35%, 100% { left: 180%; }
}

/* Hero Section */
.hero {
  position: relative;
  padding: 60px 0 90px;
  background: var(--hero-gradient);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(253, 232, 238, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
}

.lead {
  font-size: 1.18rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 34px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item svg {
  color: var(--rose-600);
  flex-shrink: 0;
}

/* Hero Visual & Floating Cards */
.hero-visual-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(186, 73, 107, 0.15);
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: 36px;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(120, 25, 55, 0.14);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float-badge 4s ease-in-out infinite alternate;
  z-index: 3;
}

.floating-badge.badge-top {
  top: 24px;
  left: -28px;
}

.floating-badge.badge-bottom {
  bottom: 30px;
  right: -20px;
  animation-delay: -2s;
}

.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--rose-100);
  color: var(--rose-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.badge-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
}

.badge-content span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

/* Marquee / Ribbon Bar */
.ribbon-bar {
  background: var(--rose-100);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ribbon-track {
  display: flex;
  gap: 40px;
  animation: scroll-marquee 28s linear infinite;
  width: max-content;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rose-900);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ribbon-item .star {
  color: var(--gold-primary);
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Cards & Glassmorphism */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Mentor Section */
.mentor-card {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  background: linear-gradient(135deg, #ffffff 0%, #fff7f9 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-md);
}

.mentor-image-col {
  position: relative;
  min-height: 480px;
}

.mentor-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-overlay-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose-900);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.mentor-body {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mentor-body h2 {
  margin: 10px 0 20px;
}

.mentor-bio {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.mentor-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.stat-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--rose-600);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Features Grid (O que você vai dominar) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  padding: 36px 30px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--rose-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--rose-50);
  border: 1px solid var(--rose-200);
  color: var(--rose-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.08);
  background: var(--rose-100);
}

.feature-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

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

/* Bonus Section */
.bonus-section {
  background: linear-gradient(180deg, #fff7f9 0%, #fdf5f7 100%);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

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

.bonus-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1px dashed var(--rose-300);
  position: relative;
}

.bonus-badge {
  display: inline-block;
  background: var(--rose-600);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.bonus-card h4 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.bonus-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-sm);
  background: #fff;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(0deg, rgba(38, 15, 24, 0.85) 0%, rgba(38, 15, 24, 0) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.gallery-overlay h4 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-size: 0.82rem;
  color: #fde8ed;
}

/* WhatsApp Chats & Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.chat-card {
  border-radius: 28px;
  overflow: hidden;
  background: #eef2f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.chat-header {
  background: #128c7e;
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.chat-user-info b {
  display: block;
  font-size: 0.96rem;
  line-height: 1.2;
}

.chat-user-info small {
  font-size: 0.76rem;
  color: #bbf2e8;
}

.chat-body {
  background-color: #efeae2;
  background-image: radial-gradient(#d6cfc5 1px, transparent 1px);
  background-size: 16px 16px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.chat-date-pill {
  align-self: center;
  background: rgba(255, 255, 255, 0.9);
  color: #667781;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  margin-bottom: 4px;
}

.chat-msg {
  max-width: 86%;
  padding: 10px 14px 6px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.42;
  color: #111b21;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  position: relative;
}

.chat-msg time {
  display: block;
  text-align: right;
  font-size: 0.68rem;
  color: #667781;
  margin-top: 3px;
}

.chat-msg time i {
  font-style: normal;
  color: #53bdeb;
  margin-left: 3px;
  font-weight: bold;
}

.chat-msg.msg-out {
  align-self: flex-end;
  background: #d9fdd3;
  border-top-right-radius: 2px;
}

.chat-msg.msg-in {
  align-self: flex-start;
  background: #ffffff;
  border-top-left-radius: 2px;
}

/* Offer Section */
.offer-box {
  background: var(--dark-gradient);
  border-radius: var(--radius-xl);
  padding: 64px 60px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(35, 12, 22, 0.4);
}

.offer-box::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(223, 88, 129, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.offer-text h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 14px 0 20px;
}

.offer-text p {
  color: #f7d7e0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.offer-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: #fde8ed;
}

.offer-benefits-list li svg {
  color: var(--rose-400);
  flex-shrink: 0;
}

/* Price Card */
.price-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--text-main);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  position: relative;
}

.price-urgency-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.badge-offer {
  background: var(--rose-100);
  color: var(--rose-800);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.countdown-box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose-700);
}

.countdown-timer {
  background: var(--rose-50);
  padding: 4px 8px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.95rem;
  border: 1px solid var(--rose-200);
}

.pricing-values {
  margin: 18px 0 10px;
}

.pricing-values s {
  display: block;
  font-size: 1.1rem;
  color: var(--text-soft);
  text-decoration: line-through;
}

.pricing-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-main .currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--rose-900);
}

.pricing-main .amount {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--rose-800);
  line-height: 1;
}

.pricing-installments {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 24px;
}

.secure-payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* FAQ Accordion */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-light);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--rose-400);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose-50);
  color: var(--rose-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--rose-600);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease, opacity 0.3s ease;
  padding: 0 26px;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 26px 24px 26px;
  opacity: 1;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* Guarantee Section */
.guarantee-card {
  background: linear-gradient(135deg, #fff2f5 0%, #fae6ed 100%);
  border: 1px solid var(--rose-200);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.guarantee-seal {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rose-gradient);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  box-shadow: var(--shadow-rose-glow);
  margin-bottom: 20px;
}

.guarantee-card h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
}

.guarantee-card p {
  max-width: 540px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Floating WhatsApp / Mobile Bottom Bar */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 8, 14, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 800px;
  max-height: 90vh;
}

.lightbox-content img {
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* Footer */
.footer {
  background: #241119;
  color: #f7dbe3;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(223, 88, 129, 0.15);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: #f5b0c4;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: #b08d9b;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group {
    align-items: center;
  }

  .trust-badges {
    justify-content: center;
  }

  .floating-badge.badge-top {
    left: 10px;
    top: 10px;
  }

  .floating-badge.badge-bottom {
    right: 10px;
    bottom: 10px;
  }

  .mentor-card {
    grid-template-columns: 1fr;
  }

  .mentor-image-col {
    min-height: 380px;
  }

  .mentor-body {
    padding: 40px 30px;
  }

  .grid-3, .testimonials-grid, .bonus-grid {
    grid-template-columns: 1fr;
  }

  .offer-box {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--line-light);
    gap: 16px;
  }

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

  .mentor-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .price-card {
    padding: 30px 20px;
  }

  .btn {
    width: 100%;
  }

  .floating-badge {
    padding: 8px 14px;
  }

  .badge-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}
