/*
Theme Name: Educare Transforma 2025
Theme URI: https://grupoeducare.com.br
Author: Grupo Educare
Author URI: https://grupoeducare.com.br
Description: Tema de landing page de alta conversão para o evento Educare Transforma 2025. Focado em venda de ingressos com design moderno, responsivo e otimizado para conversão.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: educare-transforma
Tags: landing-page, one-page, custom-colors, featured-images, full-width-template
*/

/* ========================================
   CSS RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #fafafa;
  background-color: #1a0a33;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

/* ========================================
   CSS VARIABLES (Design System)
   ======================================== */
:root {
  /* Colors */
  --color-background: hsl(270, 62%, 12%);
  --color-foreground: hsl(0, 0%, 98%);
  --color-card: hsl(270, 55%, 16%);
  --color-card-hover: hsl(270, 55%, 20%);
  --color-primary: hsl(83, 78%, 55%);
  --color-primary-foreground: hsl(270, 62%, 12%);
  --color-secondary: hsl(270, 45%, 22%);
  --color-muted: hsl(270, 40%, 20%);
  --color-muted-foreground: hsl(270, 20%, 70%);
  --color-accent: hsl(351, 90%, 65%);
  --color-accent-foreground: hsl(0, 0%, 98%);
  --color-border: hsl(270, 40%, 25%);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(270, 62%, 12%) 0%, hsl(270, 55%, 18%) 50%, hsl(270, 62%, 12%) 100%);
  --gradient-cta: linear-gradient(135deg, hsl(83, 78%, 55%) 0%, hsl(83, 78%, 45%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(270, 55%, 18%) 0%, hsl(270, 55%, 14%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(351, 90%, 65%) 0%, hsl(351, 90%, 55%) 100%);

  /* Shadows */
  --shadow-glow: 0 0 60px hsla(83, 78%, 55%, 0.3);
  --shadow-card: 0 25px 50px -12px hsla(270, 62%, 5%, 0.5);
  --shadow-lg: 0 10px 40px -10px hsla(0, 0%, 0%, 0.3);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.text-gradient {
  background: linear-gradient(135deg, hsl(83, 78%, 55%) 0%, hsl(83, 78%, 70%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1.1; }
.text-7xl { font-size: 4.5rem; line-height: 1.1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-muted { color: var(--color-muted-foreground); }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }

/* ========================================
   LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section { padding: 8rem 0; }
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

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

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--color-primary-foreground);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-foreground);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  background: var(--color-secondary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}

.btn-disabled {
  background: var(--color-muted);
  color: var(--color-muted-foreground);
  cursor: not-allowed;
  box-shadow: none;
}

.btn-disabled:hover {
  opacity: 1;
  transform: none;
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  transition: all var(--transition-base);
}

.card:hover {
  border-color: hsla(83, 78%, 55%, 0.5);
  box-shadow: var(--shadow-lg);
}

.card-highlight {
  border-color: hsla(83, 78%, 55%, 0.5);
  box-shadow: 0 0 30px hsla(83, 78%, 55%, 0.2);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .card-highlight {
    transform: scale(1.1);
  }
}

/* ========================================
   BADGES
   ======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  background: hsla(270, 45%, 22%, 0.5);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.badge-primary {
  background: hsla(83, 78%, 55%, 0.1);
  color: var(--color-primary);
  border-color: hsla(83, 78%, 55%, 0.3);
}

.badge-accent {
  background: hsla(351, 90%, 65%, 0.1);
  color: var(--color-accent);
  border-color: hsla(351, 90%, 65%, 0.3);
}

.badge-cta {
  background: var(--gradient-cta);
  color: var(--color-primary-foreground);
  border: none;
}

.badge-accent-solid {
  background: var(--gradient-accent);
  color: var(--color-accent-foreground);
  border: none;
}

/* ========================================
   ICONS
   ======================================== */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-xl);
  flex-shrink: 0;
}

.icon-box-primary {
  background: var(--gradient-cta);
}

.icon-box-accent {
  background: var(--gradient-accent);
}

.icon-box-secondary {
  background: var(--color-secondary);
}

.icon-box-muted {
  background: hsla(83, 78%, 55%, 0.1);
}

.icon-box svg,
.icon-box img {
  width: 1.5rem;
  height: 1.5rem;
}

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

@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 3s ease-in-out infinite;
}

.animate-fade-up {
  animation: fade-up 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scale-in 0.5s ease-out forwards;
}

/* Intersection Observer animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.blob-primary {
  background: hsla(83, 78%, 55%, 0.1);
}

.blob-accent {
  background: hsla(351, 90%, 65%, 0.1);
}

.dot-pulse {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse-slow 2s ease-in-out infinite;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__blob-1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
}

.hero__blob-2 {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
}

.hero__blob-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  height: 50rem;
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 10;
  padding-top: 2rem;
}

.hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.hero__logo {
  height: 3rem;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .hero__logo {
    height: 4rem;
  }
}

.hero__main {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 3rem;
}

@media (min-width: 768px) {
  .hero__main {
    padding-top: 5rem;
  }
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 4.5rem;
  }
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  color: var(--color-muted-foreground);
}

@media (min-width: 768px) {
  .hero__meta {
    gap: 2rem;
  }
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__meta-item svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__cta {
    flex-direction: row;
    justify-content: center;
  }
}

.hero__stats {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(270, 40%, 25%, 0.5);
}

.hero__stats-title {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: 1rem;
}

.hero__stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .hero__stat-value {
    font-size: 2.25rem;
  }
}

.hero__stat-label {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.hero__stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--color-border);
}

.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--color-background), transparent);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  background: var(--color-background);
}

.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.about__title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .about__title {
    font-size: 3rem;
  }
}

.about__text {
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem;
}

.about__text strong {
  color: var(--color-foreground);
}

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

.about__feature {
  padding: 1rem;
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.about__feature-icon {
  width: 2rem;
  height: 2rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.about__feature-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about__feature-text {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.about__visual {
  position: relative;
}

.about__visual-bg {
  position: absolute;
  inset: 0;
  background: hsla(83, 78%, 55%, 0.2);
  border-radius: var(--radius-2xl);
  filter: blur(60px);
}

.about__card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}

@media (min-width: 768px) {
  .about__card {
    padding: 3rem;
  }
}

.about__card-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about__card-item:last-child {
  margin-bottom: 0;
}

.about__card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about__card-text {
  color: var(--color-muted-foreground);
}

/* ========================================
   AUDIENCE SECTION
   ======================================== */
.audience {
  background: hsla(270, 45%, 22%, 0.3);
}

.audience__header {
  max-width: 56rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.audience__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.audience__title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .audience__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .audience__title {
    font-size: 3rem;
  }
}

.audience__subtitle {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
}

.audience__grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.audience__card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.audience__card--yes {
  border-color: hsla(83, 78%, 55%, 0.3);
}

.audience__card--yes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-cta);
}

.audience__card--no::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-muted);
}

.audience__card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.audience__card-header h3 {
  font-size: 1.25rem;
}

.audience__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audience__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.audience__list-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.audience__list-item--yes svg {
  color: var(--color-primary);
}

.audience__list-item--no svg {
  color: var(--color-muted-foreground);
}

.audience__note {
  margin-top: 2rem;
  padding: 1rem;
  background: hsla(270, 45%, 22%, 0.5);
  border-radius: var(--radius-xl);
}

.audience__note p {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.audience__note strong {
  color: var(--color-foreground);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
  background: var(--color-background);
}

.benefits__header {
  max-width: 56rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.benefits__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.benefits__title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .benefits__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .benefits__title {
    font-size: 3rem;
  }
}

.benefits__subtitle {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
}

.benefits__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.benefits__card {
  padding: 1.5rem;
}

.benefits__card-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  border-radius: var(--radius-xl);
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.benefits__card:hover .benefits__card-icon {
  background: var(--gradient-cta);
}

.benefits__card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-primary);
  transition: color var(--transition-base);
}

.benefits__card:hover .benefits__card-icon svg {
  color: var(--color-primary-foreground);
}

.benefits__card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefits__card-text {
  color: var(--color-muted-foreground);
}

.benefits__highlight {
  max-width: 56rem;
  margin: 4rem auto 0;
}

.benefits__highlight-card {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  border-color: hsla(83, 78%, 55%, 0.3);
}

@media (min-width: 768px) {
  .benefits__highlight-card {
    padding: 2.5rem;
  }
}

.benefits__highlight-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: hsla(83, 78%, 55%, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.benefits__highlight-content {
  position: relative;
}

.benefits__highlight-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .benefits__highlight-title {
    font-size: 1.875rem;
  }
}

.benefits__highlight-text {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
}

/* ========================================
   DIFFERENTIALS SECTION
   ======================================== */
.differentials {
  position: relative;
  background: hsla(270, 45%, 22%, 0.3);
  overflow: hidden;
}

.differentials__bg {
  position: absolute;
  inset: 0;
}

.differentials__blob-1 {
  position: absolute;
  top: 5rem;
  right: 5rem;
  width: 24rem;
  height: 24rem;
}

.differentials__blob-2 {
  position: absolute;
  bottom: 5rem;
  left: 5rem;
  width: 16rem;
  height: 16rem;
}

.differentials__content {
  position: relative;
  z-index: 10;
}

.differentials__header {
  max-width: 56rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.differentials__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.differentials__title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .differentials__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .differentials__title {
    font-size: 3rem;
  }
}

.differentials__subtitle {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
}

.differentials__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .differentials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.differentials__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
}

.differentials__item-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(83, 78%, 55%, 0.1);
  border-radius: var(--radius-xl);
  flex-shrink: 0;
}

.differentials__item-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
}

.differentials__item-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.differentials__item-text {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

/* ========================================
   EVENT INFO SECTION
   ======================================== */
.event-info {
  background: var(--color-background);
}

.event-info__header {
  text-align: center;
  margin-bottom: 4rem;
}

.event-info__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.event-info__title {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .event-info__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .event-info__title {
    font-size: 3rem;
  }
}

.event-info__card {
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

@media (min-width: 768px) {
  .event-info__card {
    padding: 3rem;
  }
}

.event-info__gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, hsla(83, 78%, 55%, 0.05), transparent);
}

.event-info__grid {
  position: relative;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .event-info__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.event-info__col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.event-info__item-label {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.event-info__item-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .event-info__item-value {
    font-size: 1.875rem;
  }
}

.event-info__item-extra {
  color: var(--color-muted-foreground);
}

.event-info__footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
  position: relative;
  background: hsla(270, 45%, 22%, 0.3);
  overflow: hidden;
}

.pricing__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 37.5rem;
  height: 37.5rem;
  background: hsla(83, 78%, 55%, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.pricing__content {
  position: relative;
  z-index: 10;
}

.pricing__header {
  max-width: 56rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.pricing__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.pricing__title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .pricing__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .pricing__title {
    font-size: 3rem;
  }
}

.pricing__subtitle {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
}

.pricing__urgency {
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.pricing__urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: hsla(351, 90%, 65%, 0.1);
  border: 1px solid hsla(351, 90%, 65%, 0.3);
  border-radius: var(--radius-2xl);
}

.pricing__urgency-banner svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.pricing__urgency-banner p {
  color: var(--color-accent-foreground);
}

.pricing__urgency-banner strong {
  font-weight: 700;
}

.pricing__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing__card {
  position: relative;
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .pricing__card {
    padding: 2rem;
  }
}

.pricing__card--inactive {
  opacity: 0.7;
}

.pricing__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.pricing__card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing__card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .pricing__card-price {
    font-size: 3rem;
  }
}

.pricing__card-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.pricing__card-status--active {
  background: hsla(83, 78%, 55%, 0.2);
  color: var(--color-primary);
}

.pricing__card-status--inactive {
  background: var(--color-muted);
  color: var(--color-muted-foreground);
}

.pricing__card .btn {
  width: 100%;
  margin-top: 1.5rem;
}

.pricing__includes {
  max-width: 48rem;
  margin: 0 auto;
}

.pricing__includes-card {
  padding: 2rem;
}

.pricing__includes-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing__includes-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pricing__includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing__includes-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing__includes-item .icon-box {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}

.pricing__includes-item .icon-box svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-primary-foreground);
}

.pricing__includes-item span {
  color: var(--color-muted-foreground);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
  position: relative;
  background: var(--color-background);
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__blob-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
}

.cta__blob-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
}

.cta__content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta__title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .cta__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta__title {
    font-size: 3.75rem;
  }
}

.cta__text {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
  .cta__text {
    font-size: 1.25rem;
  }
}

.cta__note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.cta__trust {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(270, 40%, 25%, 0.5);
}

.cta__trust-text {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem;
}

.cta__trust-logo {
  height: 3rem;
  margin: 0 auto;
  opacity: 0.8;
  border-radius: 50%;
}

.cta__trust-tagline {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 3rem 0;
  background: hsla(270, 45%, 22%, 0.5);
  border-top: 1px solid var(--color-border);
}

.footer__content {
  max-width: 56rem;
  margin: 0 auto;
}

.footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer__main {
    flex-direction: row;
    justify-content: space-between;
  }
}

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

.footer__logo {
  height: 2.5rem;
  border-radius: 50%;
}

.footer__copyright {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.footer__links a:hover {
  color: var(--color-foreground);
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(270, 40%, 25%, 0.5);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
}

/* ========================================
   WORDPRESS SPECIFIC
   ======================================== */
.alignnone,
.aligncenter,
.alignleft,
.alignright {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 1.5rem auto;
}

.alignleft {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  text-align: center;
  margin-top: 0.5rem;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
  background: var(--color-background);
}

.gallery__header {
  max-width: 56rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.gallery__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.gallery__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .gallery__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .gallery__title {
    font-size: 3rem;
  }
}

.gallery__subtitle {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-secondary);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-muted-foreground);
  gap: 0.5rem;
}

.gallery__placeholder svg {
  opacity: 0.5;
}

.gallery__placeholder span {
  font-size: 0.875rem;
  opacity: 0.5;
}

.gallery__caption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-top: 2rem;
}

/* Mobile Carousel for Gallery */
@media (max-width: 767px) {
  .gallery__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  
  .gallery__grid::-webkit-scrollbar {
    display: none;
  }
  
  .gallery__item {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .md\:hidden {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .md\:block {
    display: block !important;
  }
}
