/* CSS Stylesheet - Mentoria Tattoo Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Satisfy&family=Pacifico&family=Cormorant+Garamond:ital,wght@1,600;1,700&display=swap');

/* Color Variables */
:root {
  --color-dark: #6e1034;
  --color-dark-muted: #8c1d40;
  --color-light: #fdfbf7;
  --color-cream: #faf5ed;
  --color-pink: #e88ca8;
  --color-gold: #ebd496;
  --color-accent-orange: #f29c86;
  --color-wine-dark: #8c1d40;
  
  /* Glassmorphism settings */
  --glass-bg: rgba(253, 251, 247, 0.4);
  --glass-bg-hover: rgba(253, 251, 247, 0.55);
  --glass-border: rgba(253, 251, 247, 0.45);
  --glass-shadow: 0 12px 40px 0 rgba(43, 20, 29, 0.06);
  --glass-shadow-hover: 0 20px 50px 0 rgba(43, 20, 29, 0.12);
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --font-bubble-script: 'Satisfy', 'Pacifico', cursive;
  --font-serif-italic: 'Cormorant Garamond', 'Playfair Display', serif;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-light);
  color: var(--color-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Grainy Background Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  filter: url(#noise-filter);
  opacity: 0.8;
}

/* Global Grainy Gradient Background Section */
.grainy-wrapper {
  background: 
    radial-gradient(circle at 5% 5%, rgba(255, 215, 120, 0.95) 0%, transparent 55%),
    radial-gradient(circle at 95% 10%, rgba(255, 155, 85, 0.9) 0%, transparent 60%),
    radial-gradient(circle at 50% 45%, rgba(245, 120, 160, 0.85) 0%, transparent 70%),
    radial-gradient(circle at 10% 90%, rgba(215, 80, 130, 0.95) 0%, transparent 65%),
    radial-gradient(circle at 85% 85%, rgba(255, 135, 95, 0.9) 0%, transparent 60%),
    #d87b95;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--color-pink);
  border-radius: 5px;
  border: 2px solid var(--color-cream);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-dark-muted);
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

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

h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h1 span.italic-font {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  display: block;
  margin-top: -1rem;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

p {
  font-size: 1.05rem;
  color: #8c1d40;
  font-weight: 500;
}

.text-uppercase-bold {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--color-dark);
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  box-shadow: var(--glass-shadow-hover);
  transform: translateY(-4px);
}

/* Sparkle / Glow Effect */
.sparkle-glow {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 0 15px rgba(242, 156, 134, 0.8));
  animation: pulse-glow 3s infinite ease-in-out;
  z-index: 1;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.25) rotate(15deg);
    opacity: 1;
  }
}

/* Scattered Glowing White Sparkle Stars */
.hero-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.hero-star {
  position: absolute;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
  animation: starTwinkle 2.5s ease-in-out infinite alternate;
}

.star-1 { top: 6%; left: 4%; width: 14px; height: 14px; animation-delay: 0s; }
.star-2 { top: 10%; left: 42%; width: 18px; height: 18px; animation-delay: 0.5s; }
.star-3 { top: 18%; right: 6%; width: 16px; height: 16px; animation-delay: 1.2s; }
.star-4 { top: 42%; left: 2%; width: 12px; height: 12px; animation-delay: 0.3s; }
.star-5 { top: 60%; left: 36%; width: 16px; height: 16px; animation-delay: 1.8s; }
.star-6 { top: 78%; left: 6%; width: 14px; height: 14px; animation-delay: 0.9s; }
.star-7 { top: 70%; right: 4%; width: 18px; height: 18px; animation-delay: 1.4s; }
.star-8 { top: 32%; right: 44%; width: 10px; height: 10px; animation-delay: 2.1s; }
.star-9 { top: 88%; left: 44%; width: 14px; height: 14px; animation-delay: 0.7s; }
.star-10 { top: 4%; right: 30%; width: 16px; height: 16px; animation-delay: 1.6s; }

.star-11 { top: 15%; left: 18%; width: 10px; height: 10px; animation-delay: 0.4s; }
.star-12 { top: 28%; left: 32%; width: 14px; height: 14px; animation-delay: 1.1s; }
.star-13 { top: 50%; right: 12%; width: 12px; height: 12px; animation-delay: 0.8s; }
.star-14 { top: 85%; right: 22%; width: 16px; height: 16px; animation-delay: 1.5s; }
.star-15 { top: 92%; left: 15%; width: 10px; height: 10px; animation-delay: 2.2s; }
.star-16 { top: 2%; left: 68%; width: 14px; height: 14px; animation-delay: 0.2s; }
.star-17 { top: 38%; left: 16%; width: 12px; height: 12px; animation-delay: 1.7s; }
.star-18 { top: 58%; right: 38%; width: 10px; height: 10px; animation-delay: 0.6s; }
.star-19 { top: 82%; right: 48%; width: 14px; height: 14px; animation-delay: 1.9s; }
.star-20 { top: 25%; left: 88%; width: 18px; height: 18px; animation-delay: 1.3s; }

@keyframes starTwinkle {
  0% {
    transform: scale(0.7) rotate(0deg);
    opacity: 0.4;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
  }
  100% {
    transform: scale(1.25) rotate(15deg);
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 1));
  }
}

/* 4-Pointed Star Icon Styling */
.star-sparkle {
  fill: var(--color-accent-orange);
  width: 48px;
  height: 48px;
}

/* Navigation Bar */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  position: relative;
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-dark);
}

.nav-logo span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-left: 0.3rem;
  color: var(--color-pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--color-dark);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.btn-nav {
  padding: 0.6rem 1.4rem !important;
  border: 1px solid var(--color-dark);
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.8rem !important;
  letter-spacing: 0.05em;
}

/* Hero Section */
.hero.container {
  max-width: 1380px;
}

/* Ambient Lighting Auras */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.65;
  z-index: 0;
}

.glow-left {
  top: 10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, rgba(255, 180, 200, 0.45) 60%, transparent 100%);
  animation: auraPulse 6s ease-in-out infinite alternate;
}

.glow-right {
  top: 15%;
  right: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(232, 140, 168, 0.4) 60%, transparent 100%);
  animation: auraPulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes auraPulse {
  0% { transform: scale(0.9) translateY(0); opacity: 0.5; }
  100% { transform: scale(1.15) translateY(-20px); opacity: 0.8; }
}

.hero {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  padding: 4rem 2rem 6rem 2rem;
  position: relative;
  text-align: left;
}

.hero .sparkle-glow {
  top: 15%;
  right: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-logo-container {
  margin-bottom: 4.2rem;
  width: 100%;
}

.hero-logo {
  width: 480px;
  height: auto;
  mix-blend-mode: screen;
  display: block;
}

.hero-tag {
  font-family: var(--font-bubble-script);
  font-size: clamp(6.5rem, 11vw, 9.5rem);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #ffffff;
  text-shadow: 4px 5px 0px #a8264d, 5px 6px 0px #a8264d, 6px 7px 0px #a8264d;
  margin-bottom: 1.5rem;
  display: block;
  line-height: 0.9;
}

.tag-line {
  display: block;
  white-space: nowrap;
}

.hero-headline {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: #a8264d;
  margin-bottom: 2rem;
  letter-spacing: 0;
  text-shadow: none;
}

.headline-line {
  display: block;
  white-space: nowrap;
}

.hero-subheadline {
  font-family: var(--font-sans);
  font-size: 1.22rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 3.2rem;
  max-width: 640px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.hero-buttons .btn-cta {
  padding: 1.35rem 3.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.hero-right {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

/* Hero Single Image Slider (10x15cm Ratio) */
.hero-slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 10 / 15;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(168, 38, 77, 0.22), 0 0 50px rgba(255, 255, 255, 0.6);
  border: 6px solid rgba(255, 255, 255, 0.9);
  background: var(--color-light);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.slide-img.active {
  opacity: 1;
  pointer-events: auto;
}

/* Glassmorphism Arrow Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(253, 251, 247, 0.9);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.slider-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-dark);
}

.slider-btn-prev {
  left: 14px;
}

.slider-btn-next {
  right: 14px;
}

.slider-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover svg {
  stroke: var(--color-pink);
}

/* Pagination Dots */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: #ffffff;
  width: 26px;
  border-radius: 10px;
}

.collage-card.photo-placeholder span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* Collage interactions */
.collage-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 45px rgba(43, 20, 29, 0.2);
  z-index: 4;
  border-color: var(--color-pink);
}

/* Interactive CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: #ffffff;
  background: linear-gradient(135deg, #c8325c 0%, #a8264d 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(168, 38, 77, 0.35);
  transition: var(--transition);
  z-index: 10;
}

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

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

.btn-cta:hover {
  background: linear-gradient(135deg, #d63865 0%, #b82e56 100%);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(168, 38, 77, 0.5);
}

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

/* Outline Button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--color-dark);
  background: transparent;
  border: 2px solid var(--color-dark);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  z-index: 10;
}

.btn-outline:hover {
  background: var(--color-dark);
  color: var(--color-light);
  transform: translateY(-3px);
}

/* Circular Logo SVG styling */
.circular-logo-svg {
  width: 130px;
  height: 130px;
}

.circular-logo-svg path {
  fill: none;
}

.circular-logo-svg text {
  font-family: var(--font-sans);
  font-size: 9.8px;
  font-weight: 700;
  letter-spacing: 2.2px;
  fill: var(--color-dark);
}

.cicada-graphic {
  fill: none;
  stroke: var(--color-dark);
  stroke-width: 0.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Global Page-Wide Scattered Twinkling Stars */
.global-page-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.global-star {
  position: absolute;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
  animation: starTwinkle 2.5s ease-in-out infinite alternate;
}

.p-star-1  { top: 2%; left: 8%; width: 14px; height: 14px; animation-delay: 0.1s; }
.p-star-2  { top: 4%; right: 6%; width: 18px; height: 18px; animation-delay: 0.6s; }
.p-star-3  { top: 7%; left: 25%; width: 10px; height: 10px; animation-delay: 1.2s; }
.p-star-4  { top: 10%; right: 20%; width: 16px; height: 16px; animation-delay: 0.4s; }
.p-star-5  { top: 13%; left: 4%; width: 20px; height: 20px; animation-delay: 1.5s; }
.p-star-6  { top: 16%; right: 8%; width: 12px; height: 12px; animation-delay: 0.9s; }
.p-star-7  { top: 20%; left: 15%; width: 16px; height: 16px; animation-delay: 0.3s; }
.p-star-8  { top: 23%; right: 12%; width: 22px; height: 22px; animation-delay: 1.7s; }
.p-star-9  { top: 27%; left: 5%; width: 14px; height: 14px; animation-delay: 1.0s; }
.p-star-10 { top: 30%; right: 5%; width: 18px; height: 18px; animation-delay: 0.5s; }
.p-star-11 { top: 34%; left: 12%; width: 16px; height: 16px; animation-delay: 1.4s; }
.p-star-12 { top: 38%; right: 15%; width: 20px; height: 20px; animation-delay: 0.2s; }
.p-star-13 { top: 42%; left: 4%; width: 12px; height: 12px; animation-delay: 1.8s; }
.p-star-14 { top: 45%; right: 8%; width: 18px; height: 18px; animation-delay: 0.7s; }
.p-star-15 { top: 49%; left: 18%; width: 14px; height: 14px; animation-delay: 1.1s; }
.p-star-16 { top: 52%; right: 4%; width: 22px; height: 22px; animation-delay: 0.3s; }
.p-star-17 { top: 56%; left: 6%; width: 16px; height: 16px; animation-delay: 1.6s; }
.p-star-18 { top: 60%; right: 18%; width: 10px; height: 10px; animation-delay: 0.8s; }
.p-star-19 { top: 64%; left: 14%; width: 20px; height: 20px; animation-delay: 1.3s; }
.p-star-20 { top: 68%; right: 6%; width: 14px; height: 14px; animation-delay: 0.4s; }
.p-star-21 { top: 72%; left: 3%; width: 18px; height: 18px; animation-delay: 1.9s; }
.p-star-22 { top: 76%; right: 10%; width: 12px; height: 12px; animation-delay: 0.6s; }
.p-star-23 { top: 80%; left: 10%; width: 22px; height: 22px; animation-delay: 1.2s; }
.p-star-24 { top: 84%; right: 4%; width: 16px; height: 16px; animation-delay: 0.1s; }
.p-star-25 { top: 88%; left: 5%; width: 14px; height: 14px; animation-delay: 1.5s; }
.p-star-26 { top: 92%; right: 8%; width: 20px; height: 20px; animation-delay: 0.9s; }
.p-star-27 { top: 96%; left: 12%; width: 16px; height: 16px; animation-delay: 0.5s; }

/* About Section (Porque me escolher) */
.about {
  padding: 6rem 0;
  position: relative;
}

/* Scattered Glowing White Sparkle Stars behind Mentor Section */
.about-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.about-star {
  position: absolute;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
  animation: starTwinkle 2.5s ease-in-out infinite alternate;
}

.a-star-1 { top: 8%; right: 10%; width: 22px; height: 22px; animation-delay: 0.2s; }
.a-star-2 { top: 28%; right: 2%; width: 16px; height: 16px; animation-delay: 0.8s; }
.a-star-3 { top: 72%; right: 8%; width: 20px; height: 20px; animation-delay: 1.4s; }
.a-star-4 { top: 82%; right: 38%; width: 14px; height: 14px; animation-delay: 0.5s; }
.a-star-5 { top: 12%; left: 4%; width: 18px; height: 18px; animation-delay: 1.1s; }
.a-star-6 { top: 68%; left: 2%; width: 24px; height: 24px; animation-delay: 1.7s; }
.a-star-7 { top: 48%; left: 42%; width: 12px; height: 12px; animation-delay: 0.4s; }
.a-star-8 { top: 5%; left: 45%; width: 16px; height: 16px; animation-delay: 2.0s; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-content .text-uppercase-bold {
  color: #701535;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: #701535;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: none;
}

.about-text {
  font-size: 1.15rem;
  line-height: 1.8;
  text-align: justify;
  color: #701535;
}

.about-text strong {
  color: #5c0d2b;
  font-weight: 700;
}

/* Custom Decorative Badge for Mentora */
.decorative-portrait {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.portrait-frame {
  width: clamp(340px, 40vw, 450px);
  height: clamp(340px, 40vw, 450px);
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 60px rgba(168, 38, 77, 0.28), 0 0 45px rgba(255, 255, 255, 0.6);
  padding: 10px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: var(--transition);
}

.portrait-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 75px rgba(168, 38, 77, 0.35), 0 0 55px rgba(255, 255, 255, 0.8);
}

.mentor-circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  box-shadow: 0 8px 25px rgba(43, 20, 29, 0.15);
}

.mentor-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
  z-index: 5;
}

.mentor-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #a8264d;
  line-height: 1.1;
}

.mentor-role {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--color-dark-muted);
}

/* Feedback Section (Depois da Mentora - 4 Prints) */
.feedback-section {
  padding: 4rem 0;
  position: relative;
}

.feedback-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.feedback-header h2 {
  font-family: var(--font-bubble-script);
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 400;
  color: #ffffff;
  text-shadow: 4px 5px 0px #a8264d, 5px 6px 0px #a8264d, 6px 7px 0px #a8264d;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.feedback-header p {
  color: #ffffff;
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto;
}

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

.feedback-card {
  padding: 1.4rem;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.feedback-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 22px 50px rgba(168, 38, 77, 0.25), 0 0 35px rgba(255, 255, 255, 0.8);
}

.feedback-img-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43, 20, 29, 0.12);
  background: #ffffff;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: contain;
}

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

/* Curriculum Section */
.curriculum {
  padding: 6rem 0;
  position: relative;
}

.curriculum-intro {
  max-width: 850px;
  margin-bottom: 4.5rem;
}

.curriculum-intro h2 {
  font-family: var(--font-bubble-script);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #ffffff;
  text-shadow: 4px 5px 0px #a8264d, 5px 6px 0px #a8264d, 6px 7px 0px #a8264d;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.curriculum-intro p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: #ffffff;
}

.curriculum-intro p strong {
  color: #ffffff;
  font-weight: 700;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: flex-start;
}

/* Accordion or Interactive Cards */
.class-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.accordion-item {
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.accordion-header:hover {
  background: var(--glass-bg-hover);
}

.accordion-header h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-header .class-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-pink);
  font-weight: 700;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: var(--transition);
  stroke: var(--color-dark);
  fill: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(253, 251, 247, 0.2);
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  border-radius: 0 0 18px 18px;
  margin-top: -10px;
}

.accordion-content-inner {
  padding: 2rem;
}

/* Expanded styles */
.accordion-item.active .accordion-header {
  border-radius: 18px 18px 0 0;
  background: var(--glass-bg-hover);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  stroke: var(--color-pink);
}

.accordion-item.active .accordion-content {
  max-height: 250px;
}

/* Bird Tattoo Image Container with decorative frame */
.image-showcase {
  position: sticky;
  top: 4rem;
}

.tattoo-frame {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 1.5rem;
  box-shadow: var(--glass-shadow);
  display: flex;
  justify-content: center;
}

.tattoo-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
}

.tattoo-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.tattoo-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Serrated overlay decoration matching the original screenshot */
.tattoo-frame::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 60px;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23f29c86' d='M50 0 L58 35 L93 15 L73 47 L100 68 L65 67 L68 100 L47 73 L15 93 L35 58 L0 50 L35 42 L15 7 L47 27 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  animation: rotate-slow 20s linear infinite;
}

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

/* Specialization Callout Banner (Depois da Grade Curricular) */
.specialization-banner {
  margin-top: 3.5rem;
  width: 100%;
}

.specialization-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(253, 251, 247, 0.75) 0%, rgba(255, 235, 242, 0.6) 100%);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(168, 38, 77, 0.15), 0 0 30px rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.specialization-icon {
  font-size: 3.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.specialization-content {
  flex: 1;
}

.specialization-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: #701535;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.specialization-content p {
  font-size: 1.08rem;
  color: #701535;
  line-height: 1.65;
}

.specialization-content p strong {
  color: #5c0d2b;
  font-weight: 700;
}

.btn-specialization {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 1.1rem 2.2rem;
}

@media (max-width: 900px) {
  .specialization-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

/* Presencial Mentorship Video Section */
.video-section {
  padding: 4rem 0 5rem 0;
  position: relative;
}

.video-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.video-header h2 {
  font-family: var(--font-bubble-script);
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 400;
  color: #ffffff;
  text-shadow: 4px 5px 0px #a8264d, 5px 6px 0px #a8264d, 6px 7px 0px #a8264d;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.video-header p {
  color: #ffffff;
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
}

.video-container-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.video-card {
  padding: 1.2rem;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(168, 38, 77, 0.2), 0 0 35px rgba(255, 255, 255, 0.7);
}

.instagram-embed-box {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(43, 20, 29, 0.1);
}

.instagram-iframe {
  border: none;
  width: 100%;
  max-width: 540px;
  min-height: 620px;
}

/* Curriculum CTA Wrapper */
.curriculum-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
}

/* Section Sparkles for Page-Wide Twinkling Stars */
.section-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.section-star {
  position: absolute;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
  animation: starTwinkle 2.5s ease-in-out infinite alternate;
}

/* Logistic & Structure Section (Aulas Parte 2) */
.structure {
  padding: 6rem 0;
  position: relative;
}

.structure-header {
  text-align: center;
  margin-bottom: 4rem;
}

.structure-header h2 {
  font-family: var(--font-bubble-script);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #ffffff;
  text-shadow: 4px 5px 0px #a8264d, 5px 6px 0px #a8264d, 6px 7px 0px #a8264d;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.structure-duration {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-size: 1.7rem;
  color: #ffffff;
  margin-top: 0.5rem;
}

.structure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.structure-card {
  position: relative;
}

.structure-card h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.structure-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.structure-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.structure-list li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.structure-list.included li svg {
  stroke: #4d9c79;
}

.structure-list.not-included li svg {
  stroke: #c2536d;
}

/* Pricing & Contact Section */
.pricing {
  padding: 6rem 0 10rem 0;
  position: relative;
}

.pricing .sparkle-glow {
  bottom: 10%;
  right: 10%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

.price-card-wrapper {
  position: sticky;
  top: 4rem;
}

.price-card {
  text-align: center;
  padding: 4rem 3rem;
  border: 2px solid var(--glass-border);
}

.price-tag {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
  margin: 1.5rem 0;
}

.price-installment {
  font-size: 1.1rem;
  color: var(--color-dark-muted);
  font-weight: 500;
}

.bonus-card {
  padding: 3rem;
}

.bonus-card h2 {
  font-family: var(--font-bubble-script);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: #ffffff;
  text-shadow: 4px 5px 0px #a8264d, 5px 6px 0px #a8264d, 6px 7px 0px #a8264d;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bonus-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.bonus-icon-wrapper {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(168, 38, 77, 0.2);
  box-shadow: 0 4px 15px rgba(168, 38, 77, 0.08);
  border-radius: 14px;
  padding: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.bonus-icon-wrapper svg {
  width: 24px;
  height: 24px;
  stroke: #701535;
  fill: none;
}

.bonus-info h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #701535;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.bonus-info p {
  font-size: 1.02rem;
  color: #701535;
  line-height: 1.6;
}

/* WhatsApp Link Builder Form Modal/Card */
.whatsapp-builder {
  margin-top: 3.5rem;
  background: rgba(253, 251, 247, 0.55);
}

.whatsapp-builder h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.whatsapp-builder-subtitle {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.form-group input, 
.form-group select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(43, 20, 29, 0.15);
  border-radius: 12px;
  background: rgba(253, 251, 247, 0.7);
  font-family: var(--font-sans);
  color: var(--color-dark);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus {
  border-color: var(--color-pink);
  background: var(--color-light);
  box-shadow: 0 0 0 3px rgba(232, 140, 168, 0.15);
}

/* Footer style */
.footer {
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 10;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.footer-text {
  font-size: 0.9rem;
  color: var(--color-dark-muted);
}

/* Animations and Reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Delay for reveal list items */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Responsive Media Queries */
@media (max-width: 992px) {
  .nav-bar {
    height: auto;
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }

  .hero {
    text-align: center;
    padding: 3.5rem 1.25rem 4rem 1.25rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .hero-left {
    align-items: center;
    text-align: center;
  }
  
  .hero-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    width: 100%;
  }

  .hero-logo {
    width: 290px;
    margin: 0 auto;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .hero-buttons .btn-cta {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 0.9rem;
  }

  .hero-right {
    justify-content: center;
    width: 100%;
  }

  .hero-photo-grid {
    max-height: none;
    gap: 1rem;
    max-width: 480px;
    margin: 0 auto;
  }

  .photo-column.col-2 {
    margin-top: 2rem;
  }

  .grid-photo-card {
    height: 240px;
    border-radius: 20px;
  }

  .about-grid, 
  .curriculum-grid, 
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .image-showcase {
    position: relative;
    top: 0;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .price-card-wrapper {
    position: relative;
    top: 0;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .structure-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }
  
  .container {
    padding: 0 1.25rem;
  }
  
  .glass-card {
    padding: 1.8rem;
  }
  
  .portrait-frame {
    width: 280px;
    height: 280px;
  }
  
  .btn-cta, .btn-outline {
    width: 100%;
    padding: 1.1rem 1.5rem;
  }

  .hero-photo-grid {
    gap: 0.8rem;
  }
  .grid-photo-card {
    height: 180px;
  }
}
