/* Importação de fonte */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,600;14..32,700&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cores Pretas */
  --black-absolute: #0a0a0a;
  --black-deep: #0f0f0f;
  --black-rich: #141414;
  --black-soft: #1a1a1a;
  
  /* Cores de Fogo */
  --fire-red: #ff3300;
  --fire-orange: #ff6600;
  --fire-yellow: #ffaa00;
  --fire-dark: #cc2200;
  --fire-glow: rgba(255, 51, 0, 0.6);
  --fire-glow-intense: rgba(255, 102, 0, 0.8);
  
  /* Gradientes de Fogo */
  --gradient-fire: linear-gradient(135deg, #ff3300, #ff6600, #ffaa00);
  --gradient-fire-dark: linear-gradient(135deg, #cc2200, #ff3300, #ff6600);
  --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #1a0a05 50%, #0f0502 100%);
  --gradient-card: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 15, 10, 0.95) 100%);
  
  /* Sombras */
  --shadow-fire: 0 0 30px rgba(255, 51, 0, 0.4);
  --shadow-fire-lg: 0 0 50px rgba(255, 51, 0, 0.6);
  --shadow-neon: 0 0 20px rgba(255, 85, 0, 0.4);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--gradient-bg);
  color: #e8e8e8;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Textura de fundo com brasas */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 40%, rgba(255, 51, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 51, 0, 0.3);
  z-index: 1000;
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 45px;
  width: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-fire);
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: #e8e8e8;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-fire);
  transition: width 0.3s ease;
}

nav a:hover::before {
  width: 80%;
}

.btn {
  background: var(--gradient-fire);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  color: #0a0a0a;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-fire);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Partículas de fogo */
.fire-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #ffaa00, #ff3300);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-200px) scale(0);
    opacity: 0;
  }
}

/* Overlay */
.overlay {
  text-align: center;
  z-index: 2;
  animation: fadeInUp 1s ease;
  padding: 2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Título GEDAE BURGERS com efeito de fogo */
.brand-title {
  margin-bottom: 2rem;
}

.gedae-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.05em;
}

.fire-char {
  display: inline-block;
  background: linear-gradient(135deg, #ff6600, #ff3300, #ffaa00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255, 51, 0, 0.5);
  animation: fireFlicker 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.fire-char:hover {
  animation: fireIntense 0.3s ease-in-out;
  text-shadow: 0 0 30px rgba(255, 102, 0, 0.8);
  transform: scale(1.05);
}

@keyframes fireFlicker {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 51, 0, 0.5);
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 25px rgba(255, 102, 0, 0.8), 0 0 5px rgba(255, 170, 0, 0.5);
    opacity: 0.95;
  }
}

@keyframes fireIntense {
  0% {
    text-shadow: 0 0 10px rgba(255, 51, 0, 0.5);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 40px rgba(255, 102, 0, 1), 0 0 20px rgba(255, 170, 0, 0.8);
    transform: scale(1.1);
  }
  100% {
    text-shadow: 0 0 10px rgba(255, 51, 0, 0.5);
    transform: scale(1);
  }
}

.space {
  width: 0.3em;
  display: inline-block;
}

/* Linha de fogo */
.fire-line {
  width: 200px;
  height: 3px;
  background: var(--gradient-fire);
  margin: 1rem auto;
  border-radius: 3px;
  position: relative;
  animation: fireLinePulse 2s ease-in-out infinite;
}

@keyframes fireLinePulse {
  0%, 100% {
    width: 200px;
    box-shadow: 0 0 10px rgba(255, 51, 0, 0.5);
  }
  50% {
    width: 250px;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.8);
  }
}

/* Slogan */
.slogan {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.slogan-text {
  background: linear-gradient(135deg, #fff, #ffaa00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.3);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 170, 0, 0.6);
  }
}

.fire-emoji {
  display: inline-block;
  animation: emojiFire 1s ease-in-out infinite;
  font-size: 2rem;
}

@keyframes emojiFire {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(255, 51, 0, 0.5));
  }
  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.8));
  }
}

.features {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(232, 232, 232, 0.8);
  letter-spacing: 0.1em;
}

/* Botões */
.buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--gradient-fire);
  border: none;
  color: #0a0a0a;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-fire);
}

.btn-outline {
  background: transparent;
  border: 2px solid #ff6600;
  color: #ff6600;
}

.btn-outline:hover {
  background: var(--gradient-fire);
  color: #0a0a0a;
  transform: translateY(-3px);
  box-shadow: var(--shadow-fire);
}

/* Chamas inferiores */
.flame-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 1;
}

.flame {
  position: absolute;
  bottom: 0;
  width: 100px;
  height: 80px;
  background: linear-gradient(to top, #ff3300, #ff6600, transparent);
  border-radius: 50%;
  filter: blur(10px);
  animation: flameFlicker 0.8s ease-in-out infinite;
}

.flame2 {
  left: 20%;
  width: 150px;
  height: 100px;
  animation-delay: 0.3s;
}

.flame3 {
  right: 20%;
  width: 120px;
  height: 90px;
  animation-delay: 0.6s;
}

@keyframes flameFlicker {
  0%, 100% {
    opacity: 0.6;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* Destaques Section */
.destaques {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  position: relative;
  z-index: 2;
}

.destaques h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  width: 100%;
  color: #e8e8e8;
}

.destaques h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-fire);
  border-radius: 3px;
  box-shadow: var(--shadow-fire);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 51, 0, 0.3);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 51, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.6s;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #ff6600;
  box-shadow: var(--shadow-fire);
}

.card-fire {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-fire);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover .card-fire {
  transform: scaleX(1);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card p {
  color: rgba(232, 232, 232, 0.7);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.card-price {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6600;
  padding: 0.3rem 1rem;
  background: rgba(255, 51, 0, 0.15);
  border-radius: 30px;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 51, 0, 0.3);
  position: relative;
  z-index: 2;
}

footer p {
  color: rgba(232, 232, 232, 0.6);
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-fire);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff6600;
}

/* Responsividade */
@media (max-width: 768px) {
  header {
    padding: 0.8rem 1rem;
  }
  
  .logo-img {
    height: 35px;
  }
  
  .gedae-title {
    font-size: 2.5rem;
    gap: 0.02em;
  }
  
  .slogan {
    font-size: 1.3rem;
  }
  
  .features {
    font-size: 0.9rem;
  }
  
  .destaques h2 {
    font-size: 1.8rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-outline {
    width: 80%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .gedae-title {
    font-size: 1.8rem;
  }
  
  .slogan {
    font-size: 1rem;
  }
  
  .card h3 {
    font-size: 1.4rem;
  }
}


/* =======================
   BOTÃO PEDIR AGORA
   ======================= */
.btn-pedir {
    background: linear-gradient(135deg, #ff6600, #ff3300);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 51, 0, 0.3);
}

.btn-pedir:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff7700, #ff4400);
    box-shadow: 0 6px 20px rgba(255, 51, 0, 0.5);
}

.btn-pedir:active {
    transform: translateY(1px);
}

/* Efeito de fogo ao passar o mouse */
.btn-pedir::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.5s ease;
}

.btn-pedir:hover::before {
    left: 100%;
}

/* =======================
   CARDS DE PRODUTOS
   ======================= */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 102, 0, 0.2);
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 51, 0, 0.2);
}

/* Efeito de fogo no card */
.card-fire {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 51, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover .card-fire {
    opacity: 1;
}

.card h3 {
    color: #ff6600;
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: bold;
}

.card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.card-price {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffaa00;
    margin: 10px 0;
    padding: 5px 15px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 20px;
}

/* =======================
   MENSAGENS (sem produtos / erro)
   ======================= */
.mensagem-vazia, .mensagem-erro {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    grid-column: 1 / -1;
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.mensagem-vazia p, .mensagem-erro p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.8);
}

.mensagem-vazia p:first-child {
    font-size: 1.3rem;
    color: #ff6600;
    font-weight: bold;
}

.mensagem-erro p:first-child {
    font-size: 1.3rem;
    color: #ff4444;
    font-weight: bold;
}

/* =======================
   ANIMAÇÃO DE CARREGAMENTO
   ======================= */
@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* =======================
   RESPONSIVIDADE
   ======================= */
@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .card-price {
        font-size: 1.3rem;
    }
    
    .btn-pedir {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cards {
        padding: 10px;
    }
    
    .card {
        padding: 15px;
    }
}