:root {
  --primary: #8B0000;
  --primary-dark: #660000;
  --secondary: #DC143C;
  --accent: #FF4500;
  --light: #1a1a1a;
  --dark: #000000;
  --text: #ffffff;
  --text-light: #cccccc;
  --white: #1a1a1a;
  --gradient: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #FF4500 100%);
  --gradient-dark: linear-gradient(135deg, #660000 0%, #8B0000 100%);
  --shadow: 0 20px 25px -5px rgba(139, 0, 0, 0.3);
  --shadow-lg: 0 25px 50px -12px rgba(139, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--dark);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(139, 0, 0, 0.3);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--accent);
  background: rgba(139, 0, 0, 0.2);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
  opacity: 1;
}

.mobile-menu {
  display: none;
}

.menu-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text);
  transition: all 0.3s ease;
}

.menu-btn:hover {
  transform: scale(1.1) rotate(90deg);
  color: var(--accent);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(139, 0, 0, 0.8)), url('../images/light-breakfast-wooden-plate-pieces-fabric-blue_114579-38951.avif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text);
  position: relative;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  animation: slideInDown 1.2s ease;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
  background: linear-gradient(45deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 4rem;
  animation: slideInUp 1.2s ease 0.3s both;
  font-weight: 300;
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  animation: slideInUp 1.2s ease 0.6s both;
}

.hero-btn {
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  font-family: 'Inter', sans-serif;
}

/* Section Styles */
.section {
  padding: 8rem 0;
  position: relative;
  background: var(--dark);
}

.section-alt {
  background: linear-gradient(135deg, var(--light) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--text);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--accent);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

/* Destaque Section */
.destaque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.destaque-card {
  background: var(--gradient-dark);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.destaque-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.destaque-card:hover::before {
  left: 100%;
}

.destaque-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 30px 60px rgba(139, 0, 0, 0.4);
  border-color: var(--accent);
}

.destaque-emoji {
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: bounce 2s infinite;
}

.destaque-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.destaque-text {
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Sobre Section */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-content {
  animation: slideInLeft 1s ease forwards;
}

.sobre-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.sobre-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.sobre-image-container {
  position: relative;
  animation: slideInRight 1s ease forwards;
}

.sobre-image {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s ease;
}

.sobre-image:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 30px 60px rgba(139, 0, 0, 0.5);
}

.sobre-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.8;
  animation: pulse 2s infinite;
}

/* Menu Section - Completely Redesigned */
.menu-showcase {
  margin-top: 4rem;
}

.menu-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 4rem;
  backdrop-filter: blur(10px);
}

.menu-hero-content {
  animation: slideInLeft 1s ease forwards;
}

.menu-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--accent);
}

.menu-hero-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.menu-hero-stats {
  display: flex;
  gap: 3rem;
}

.menu-stat {
  text-align: center;
}

.menu-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.menu-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-hero-image {
  position: relative;
  animation: slideInRight 1s ease forwards;
}

.menu-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.5s ease;
}

.menu-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(139, 0, 0, 0.3), rgba(220, 20, 60, 0.3));
  border-radius: 20px;
}

.menu-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.menu-highlight-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-highlight-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

.menu-highlight-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: bounce 2s infinite;
}

.menu-highlight-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
}

.menu-highlight-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.menu-highlight-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.menu-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.menu-cta-btn {
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.menu-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.stat-card {
  text-align: center;
  padding: 3rem;
  background: rgba(139, 0, 0, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(139, 0, 0, 0.4);
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.4), rgba(220, 20, 60, 0.4));
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
  color: var(--primary);
  animation: float 2s ease-in-out infinite;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: var(--text-light);
}

/* Experiências Section */
.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.experiencia-card {
  background: var(--light);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.experiencia-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
}

.experiencia-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.experiencia-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--text);
  transition: all 0.3s ease;
}

.experiencia-card:hover .experiencia-icon {
  transform: scale(1.2) rotate(10deg);
  animation: glow 2s infinite;
}

.experiencia-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.experiencia-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.experiencia-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Eventos Section */
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.evento-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  transition: all 0.4s ease;
}

.evento-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 50px rgba(139, 0, 0, 0.5);
}

.evento-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.evento-card:hover .evento-image {
  transform: scale(1.1);
}

.evento-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 2rem;
  color: white;
}

.evento-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.evento-description {
  font-family: 'Inter', sans-serif;
  opacity: 0.9;
}

/* Depoimentos Section */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.depoimento-card {
  background: rgba(139, 0, 0, 0.2);
  border: 1px solid rgba(139, 0, 0, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.depoimento-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(139, 0, 0, 0.5);
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(220, 20, 60, 0.3));
  border-color: var(--accent);
}

.depoimento-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--text);
  transition: all 0.3s ease;
}

.depoimento-card:hover .depoimento-avatar {
  transform: scale(1.2) rotate(10deg);
  animation: glow 2s infinite;
}

.depoimento-text {
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.2rem;
  color: var(--text-light);
}

.depoimento-stars {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.depoimento-author {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
}

/* Contact Section - Completely Redesigned */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 4rem;
}

.contact-hero-content {
  animation: slideInLeft 1s ease forwards;
}

.contact-hero-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.contact-feature i {
  color: var(--accent);
  font-size: 1.5rem;
}

.contact-feature span {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-form-container {
  animation: slideInRight 1s ease forwards;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.3);
  outline: none;
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.1);
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.contact-info-item i {
  color: var(--accent);
  font-size: 2rem;
}

.contact-info-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.contact-info-item p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--text);
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-section {
  animation: fadeInUp 0.8s ease forwards;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.footer-title:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-contact-item {
  font-family: 'Inter', sans-serif;
  opacity: 0.9;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  padding: 0.5rem;
  border-radius: 8px;
}

.footer-link:hover {
  color: var(--accent);
  transform: translateX(8px) scale(1.05);
  background: rgba(139, 0, 0, 0.2);
  padding: 0.8rem;
  border-radius: 12px;
  opacity: 1;
}

.footer-newsletter-text {
  font-family: 'Inter', sans-serif;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-size: 1.1rem;
  line-height: 1.6;
}

.footer-newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 1.2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  background: rgba(139, 0, 0, 0.2);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.footer-newsletter-input:focus {
  background: rgba(139, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.3);
  outline: none;
}

.footer-newsletter-btn {
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding-top: 3rem;
  border-top: 2px solid rgba(139, 0, 0, 0.3);
  opacity: 0.8;
  font-size: 1.1rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 500px;
  background: var(--light);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  border: 2px solid var(--primary);
  transform: translateX(100%);
  animation: slideInRight 0.8s ease 2s forwards;
}

.cookie-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.cookie-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.cookie-link {
  font-family: 'Inter', sans-serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  align-self: center;
  transition: all 0.3s ease;
}

.cookie-link:hover {
  color: var(--accent);
  transform: scale(1.05);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  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;
  font-family: 'Inter', sans-serif;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient);
  color: var(--text);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-lg);
  animation: glow 2s infinite;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 3px solid var(--accent);
  position: relative;
}

.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-outline:hover::after {
  width: 100%;
}

.btn-outline:hover {
  color: var(--text);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(139, 0, 0, 0.4);
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@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);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(139, 0, 0, 0.6);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .eventos-grid {
    grid-template-columns: 1fr;
  }
  
  .sobre-grid,
  .contato-grid,
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .menu-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .menu-hero-stats {
    justify-content: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .sobre-buttons {
    flex-direction: column;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .cookie-banner {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
  
  .destaque-card:hover {
    transform: translateY(-10px) scale(1.03);
  }
  
  .nav-link:hover {
    transform: translateY(-2px) scale(1.02);
  }
  
  .btn:hover {
    transform: translateY(-3px) scale(1.03);
  }
  
  .experiencia-card:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  .stat-card:hover {
    transform: translateY(-3px) scale(1.02);
  }
  
  .menu-highlight-item:hover {
    transform: translateY(-5px) scale(1.01);
  }
  
  .evento-card:hover {
    transform: translateY(-3px) scale(1.01);
  }
  
  .depoimento-card:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  .contact-info-item:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .destaque-card:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  .nav-link:hover {
    transform: translateY(-1px) scale(1.01);
  }
  
  .btn:hover {
    transform: translateY(-2px) scale(1.02);
  }
  
  .experiencia-card:hover {
    transform: translateY(-3px) scale(1.01);
  }
  
  .stat-card:hover {
    transform: translateY(-3px) scale(1.02);
  }
  
  .menu-highlight-item:hover {
    transform: translateY(-5px) scale(1.01);
  }
  
  .evento-card:hover {
    transform: translateY(-3px) scale(1.01);
  }
  
  .depoimento-card:hover {
    transform: translateY(-3px) scale(1.01);
  }
  
  .contact-info-item:hover {
    transform: translateY(-2px);
  }
} 