:root {
  --primary: #a855f7; /* светло-фиолетовый вместо голубого */
  --primary-dark: #9333ea;
  --secondary: #8b5cf6; /* пурпурный вместо зеленого */
  --accent: #c084fc;
  --light: #f8fafc;
  --dark: #0f172a;
  --text: #e2e8f0;
  --text-light: #94a3b8;
  --gradient: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #c084fc 100%);
  --gradient-dark: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #a855f7 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
  --shadow: 0 4px 6px -1px rgba(139, 92, 246, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(139, 92, 246, 0.1);
  --shadow-purple: 0 4px 20px rgba(139, 92, 246, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #3730a3 100%);
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(30, 27, 75, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  border-bottom: 3px solid var(--primary);
}

.header.scrolled {
  background: rgba(30, 27, 75, 0.98);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  overflow: hidden;
}

.logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
  transition: left 0.6s ease;
}

.logo:hover::before {
  left: 100%;
}

.logo i {
  font-size: 2rem;
  color: var(--secondary);
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  position: relative;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  overflow: hidden;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gradient);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.nav-menu a:hover::before {
  width: 300%;
  height: 300%;
}

.nav-menu a:hover {
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 3px solid var(--primary);
  position: relative;
}

.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-outline:hover::after {
  width: 100%;
}

.btn-outline:hover {
  color: var(--white);
  border-color: transparent;
  transform: translateY(-5px) scale(1.05);
}

/* Section Styles */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
  position: relative;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary); }
  to { text-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary); }
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
  animation: expand 1s ease-out;
}

@keyframes expand {
  from { width: 0; }
  to { width: 80px; }
}

.section-header p {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.8));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/creative-assortment-delicious-food_23-2148949021.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  color: var(--white);
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  animation: slideInLeft 1.2s ease;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  animation: slideInLeft 1.2s ease 0.3s both;
  font-weight: 300;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: slideInLeft 1.2s ease 0.6s both;
}

.hero-image {
  position: relative;
  animation: slideInRight 1.2s ease 0.3s both;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.hero-image:hover img {
  transform: scale(1.1) rotate(2deg);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Eventos Section (перемещена на первое место) */
.eventos-section {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: var(--white);
}

.eventos-section .section-header h2 {
  color: var(--white);
}

.eventos-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.evento-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.evento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
  transition: left 0.6s ease;
}

.evento-card:hover::before {
  left: 100%;
}

.evento-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.evento-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
}

.evento-card:hover .evento-icon {
  transform: scale(1.2) rotate(360deg);
}

.evento-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.evento-card p {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Evento Features */
.evento-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.feature {
  background: rgba(139, 92, 246, 0.1);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.evento-card:hover .feature {
  background: rgba(139, 92, 246, 0.2);
  transform: translateX(5px);
}

/* Author Rating */
.author-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.rating-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

.rating-value {
  font-weight: 600;
  color: var(--primary);
}

/* Depoimentos Section (перемещена на второе место) */
.depoimentos-section {
  background: linear-gradient(135deg, #312e81 0%, #1e1b4b 100%);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.depoimento-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.depoimento-card::after {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: 'Playfair Display', serif;
}

.depoimento-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.depoimento-stars {
  font-size: 1.5rem;
  color: #fbbf24;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.depoimento-card:hover .depoimento-stars {
  transform: scale(1.2);
  color: #ffd700;
}

.depoimento-card p {
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: var(--text);
  font-size: 1.1rem;
}

.depoimento-author strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.depoimento-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Especialidades Section (перемещена на третье место) */
.especialidades-section {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.especialidade-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  position: relative;
}

.especialidade-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.especialidade-item:hover::before {
  transform: translateX(100%);
}

.especialidade-item:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.1);
}

.especialidade-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.especialidade-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.especialidade-item:hover .especialidade-image::after {
  opacity: 1;
}

.especialidade-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.especialidade-item:hover .especialidade-image img {
  transform: scale(1.2) rotate(5deg);
}

.especialidade-content {
  padding: 2rem;
}

.especialidade-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.especialidade-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.especialidade-content ul {
  list-style: none;
}

.especialidade-content li {
  padding: 0.5rem 0;
  color: var(--text);
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}

.especialidade-content li:hover {
  color: var(--secondary);
  transform: translateX(10px);
}

.especialidade-content li::before {
  content: '✨';
  position: absolute;
  left: 0;
  top: 0.5rem;
  transition: all 0.3s ease;
}

.especialidade-content li:hover::before {
  transform: scale(1.2) rotate(15deg);
}

/* Especialidade Price */
.especialidade-price {
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.price-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

/* Experiência Section (перемещена на четвертое место) */
.experiencia-section {
  background: linear-gradient(135deg, #312e81 0%, #1e1b4b 100%);
}

.experiencia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.experiencia-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
}

.experiencia-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.8;
}

.experiencia-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
  transition: left 0.6s ease;
}

.stat:hover::before {
  left: 100%;
}

.stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.stat:hover .stat-number {
  transform: scale(1.2);
  color: var(--secondary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.experiencia-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.experiencia-image:hover img {
  transform: scale(1.1) rotate(2deg);
}

/* Experiencia Highlights */
.experiencia-highlights {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.highlight:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.highlight i {
  font-size: 1.2rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.highlight:hover i {
  transform: scale(1.2) rotate(360deg);
  color: var(--secondary);
}

.highlight span {
  font-weight: 500;
  color: var(--text);
}

/* Galeria Section */
.galeria-section {
  background: linear-gradient(135deg, #312e81 0%, #1e1b4b 100%);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.galeria-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
}

.galeria-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.4), rgba(168, 85, 247, 0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.galeria-item:hover::before {
  opacity: 1;
}

.galeria-item:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: var(--shadow-lg);
}

.galeria-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.galeria-item:hover img {
  transform: scale(1.3);
}

/* Contato Section */
.contato-section {
  background: var(--gradient-dark);
  color: var(--white);
}

.contato-section .section-header h2 {
  color: var(--white);
}

.contato-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contato-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--white);
}

.contato-info p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.8;
}

.contato-details {
  display: grid;
  gap: 2rem;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contato-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
  transition: left 0.6s ease;
}

.contato-item:hover::before {
  left: 100%;
}

.contato-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(15px) scale(1.02);
}

.contato-item i {
  font-size: 1.5rem;
  color: var(--accent);
  width: 50px;
  text-align: center;
  transition: all 0.3s ease;
}

.contato-item:hover i {
  transform: scale(1.3) rotate(360deg);
  color: var(--secondary);
}

.contato-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contato-item p {
  margin: 0;
  opacity: 0.9;
}

.contato-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contato-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.contato-form:hover::before {
  transform: translateX(100%);
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 255, 204, 0.1);
  outline: none;
  transform: scale(1.02);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
  animation: slide 10s linear infinite;
}

@keyframes slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-section h3,
.footer-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent);
  position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.footer-section:hover h3::after,
.footer-section:hover h4::after {
  width: 100%;
}

.footer-section p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.footer-section li:hover {
  transform: translateX(10px);
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.footer-section a:hover::before {
  width: 100%;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.social-links a:hover::before {
  left: 100%;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.2);
  box-shadow: var(--shadow);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 100%;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn {
  font-size: 1rem;
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 450px;
  background: rgba(30, 27, 75, 0.95);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  border: 2px solid var(--primary);
  backdrop-filter: blur(10px);
}

.cookie-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.cookie-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

.cookie-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

/* Mobile menu styles */
.mobile-menu {
  display: none;
}

.mobile-menu button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.mobile-menu button:hover {
  background: rgba(139, 92, 246, 0.1);
  transform: scale(1.1);
}

/* Burger icon animation */
.mobile-menu button i {
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu button.active i {
  transform: rotate(45deg);
}

/* Alternative burger animation */
.mobile-menu button.active i::before {
  content: '×';
  font-size: 1.8rem;
  font-weight: bold;
}

/* Mobile menu overlay and navigation */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(168, 85, 247, 0.95));
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 2rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
  }

  .nav-menu li.menu-item-animate {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    border-radius: 50px;
  }

  .nav-menu a:hover::before {
    left: 0;
  }

  .nav-menu a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
  }

  .mobile-menu {
    display: block;
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  /* Smooth transition for menu overlay */
  .nav-menu {
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Menu item hover effects */
  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
  }

  /* Close button for mobile menu */
  .nav-menu::before {
    content: '×';
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
  }

  .nav-menu::before:hover {
    transform: scale(1.2);
  }
}

/* Enhanced responsive design */
@media (max-width: 768px) {
  .nav-menu {
    display: flex;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .experiencia-content {
    grid-template-columns: 1fr;
  }
  
  .contato-content {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .cookie-banner {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }

  /* Mobile menu animations */
  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu.active li {
    animation: fadeInUp 0.5s ease forwards;
  }

  .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
  .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
  .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
  .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .especialidades-grid,
  .eventos-grid,
  .depoimentos-grid,
  .galeria-grid {
    grid-template-columns: 1fr;
  }
  
  .experiencia-stats {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }

  /* Smaller mobile menu */
  .nav-menu {
    padding: 1rem;
  }

  .nav-menu a {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
  }
} 

/* Enhanced animations for new elements */
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.evento-features,
.author-rating,
.especialidade-price,
.experiencia-highlights,
.footer-badges {
  animation: slideInFromBottom 0.6s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .evento-features {
    flex-direction: column;
  }
  
  .experiencia-highlights {
    gap: 0.8rem;
  }
  
  .footer-badges {
    justify-content: center;
  }
  
  .highlight {
    padding: 0.8rem;
  }
  
  .highlight span {
    font-size: 0.9rem;
  }
} 

/* Styles for auxiliary pages (politica-privacidade, termos-servico, cookies, obrigado) */
.auxiliary-page {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #3730a3 100%);
  min-height: 100vh;
}

.auxiliary-header {
  background: rgba(30, 27, 75, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: var(--shadow-purple);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.auxiliary-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.auxiliary-header .logo:hover {
  transform: scale(1.05);
}

.auxiliary-header .logo i {
  color: var(--primary);
  animation: rotate 3s linear infinite;
}

.auxiliary-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  margin: 2rem 0;
}

.auxiliary-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  animation: glow 2s ease-in-out infinite alternate;
}

.auxiliary-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2rem 0 1rem;
  font-family: 'Playfair Display', serif;
}

.auxiliary-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 1.5rem 0 1rem;
}

.auxiliary-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.auxiliary-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.auxiliary-content li {
  padding: 0.5rem 0;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1.5rem;
}

.auxiliary-content li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary);
  transition: all 0.3s ease;
}

.auxiliary-content li:hover {
  transform: translateX(10px);
  color: var(--primary);
}

.auxiliary-content li:hover::before {
  transform: scale(1.2) rotate(15deg);
}

.auxiliary-contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

.auxiliary-contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text);
}

.auxiliary-contact-info i {
  color: var(--secondary);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.auxiliary-footer {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #3730a3 100%);
  position: relative;
  overflow: hidden;
}

.auxiliary-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  animation: slide 10s ease-in-out infinite;
}

.auxiliary-footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 4rem 0 2rem;
}

.auxiliary-footer-section h3,
.auxiliary-footer-section h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}

.auxiliary-footer-section h3::after,
.auxiliary-footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.auxiliary-footer-section:hover h3::after,
.auxiliary-footer-section:hover h4::after {
  width: 100%;
}

.auxiliary-footer-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.auxiliary-footer-section ul {
  list-style: none;
  padding: 0;
}

.auxiliary-footer-section li {
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.auxiliary-footer-section li:hover {
  transform: translateX(10px);
}

.auxiliary-footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.auxiliary-footer-section a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.auxiliary-footer-section a:hover::before {
  width: 100%;
}

.auxiliary-footer-section a:hover {
  color: var(--primary);
}

.auxiliary-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auxiliary-newsletter-form input {
  padding: 1rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  width: 100%;
}

.auxiliary-newsletter-form .btn {
  width: 100%;
  background: var(--gradient);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.auxiliary-newsletter-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.auxiliary-footer-bottom {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

/* Success page specific styles */
.success-icon {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.success-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-info {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  padding: 1.5rem;
  border-radius: 1rem;
  margin: 2rem 0;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.success-info h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.success-info ul {
  text-align: left;
}

.success-info li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text);
}

.success-info i {
  color: var(--secondary);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.success-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--gradient);
  color: white;
  border: none;
}

.success-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.success-contact {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.success-contact h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.success-contact p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* Responsive design for auxiliary pages */
@media (max-width: 768px) {
  .auxiliary-content h1 {
    font-size: 2rem;
  }
  
  .auxiliary-content h2 {
    font-size: 1.5rem;
  }
  
  .auxiliary-content h3 {
    font-size: 1.2rem;
  }
  
  .auxiliary-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .success-card {
    margin: 1rem;
    padding: 1.5rem;
  }
} 