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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #000;
    color: white;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 3px solid #fff;
}

.logo-text {
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
    color: white;
}

.logo-subtext {
    font-size: 6px;
    font-weight: 400;
    color: white;
    margin-top: -2px;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #25d366;
}

.whatsapp-btn:hover {
    background: transparent;
    color: #25d366;
    border-color: #25d366;
}

/* Hero Section */
.hero {
    background: #000;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #dc2626;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e5e7eb;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 200px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid #dc2626;
}

.cta-button.secondary:hover {
    background: #dc2626;
    color: white;
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background: #f9fafb;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.info-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: white;
}

.menu-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #1f2937;
}

.menu-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 50px;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    background: #f3f4f6;
    color: #374151;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.category-btn.active,
.category-btn:hover {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    transform: translateY(-2px);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item {
  width: 250px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.menu-image {
  width: 100%;
  height: 250px; /* altura fixa para todos os cards */
  background: linear-gradient(to bottom, #ff4500, #ff7043);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-image img {
  width: 120%;
  height: 100%;
  object-fit: contain; /* mostra toda a imagem sem cortar */
}

.menu-content {
  padding: 10px;
}

.menu-content h3 {
  font-weight: bold;
  margin: 10px 0 5px;
}

.menu-content p {
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
}

.order-btn {
  display: inline-block;
  width: 100%; /* ocupa toda a largura do card */
  padding: 10px 20px; /* altura e espaço interno */
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}

.order-btn:hover {
  background-color: #e03e00;
}


/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #1f2937;
    color: white;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #374151;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.contact-card p {
    color: #d1d5db;
    margin-bottom: 20px;
}

.contact-btn {
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #000;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo .logo-circle {
    width: 80px;
    height: 80px;
}

.footer-logo .logo-text {
    font-size: 10px;
}

.footer-logo .logo-subtext {
    font-size: 8px;
}

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #dc2626;
}

.footer-info p {
    color: #d1d5db;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .menu-categories {
        flex-direction: column;
        align-items: center;
    }

    .category-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .menu-section h2 {
        font-size: 2rem;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item {
        margin: 0 10px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
body {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ======= Seção de Políticas e Termos - Tema Roxo Premium ======= */
.legal-section {
  background: #0000;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px;
  line-height: 1.8;
}

.container-legal {
  max-width: 1100px;
  margin: 0 auto;
}

.legal-section h2 {
  text-align: center;
  color: #aaa;
  font-size: 1.0rem;
  margin-bottom: 35px;
  font-weight: 600;
  border-bottom: 1px solid rgba(143, 59, 255, 0.3);
  padding-bottom: 8px;
  letter-spacing: 0.4px;
}

/* === Layout em Colunas Verticais === */
.legal-columns {
  column-count: 2;
  column-gap: 60px;
  text-align: justify;
}

.legal-item {
  display: inline-block;
  margin-bottom: 35px;
  width: 100%;
  break-inside: avoid;
}

.legal-item h3 {
  color: #aaa;
  font-size: 0.65rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.legal-item p {
  color: #aaa;
  margin-bottom: 10px;
  font-size: 0.55rem;
  text-align: justify;
}

.legal-item a {
  color: #8F3BFF;
  text-decoration: none;
  border-bottom: 1px dashed rgba(143, 59, 255, 0.5);
  transition: all 0.3s ease;
}

.legal-item a:hover {
  color: #9d5aff;
  border-bottom-color: #8F3BFF;
}

/* === Responsivo === */
@media (max-width: 992px) {
  .legal-columns {
    column-count: 1;
  }

  /* Ajuste extra para mobile */
  .legal-section h2 {
    font-size: 1.2rem;
  }

  .legal-item h3 {
    font-size: 0.8rem;
  }

  .legal-item p {
    font-size: 0.8rem;
  }
}

html {
  scroll-behavior: smooth;
}

/* ======= Responsividade ======= */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    padding: 60px 20px;
  }

  .hero img {
    margin-top: 30px;
  }

  .btn-primary {
    width: 90%;
    font-size: 1rem;
  }
}