/* === DARK LUXURY STYLE PARA CANTINA DIGITAL === */
/* Paleta: #0f0f0f, #1a1a1a, #222, #e59139, #fff */

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0f0f0f;
  color: #eaeaea;
  -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
header {
  background: #1a1a1a;
  padding: 20px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e59139;
}

nav a {
  color: #eaeaea;
  margin: 0 15px;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.2s;
}

nav a:hover {
  color: #e59139;
}

/* ===== HERO SECTION ===== */
.hero-section {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  background: #0f0f0f;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 25px;
}

.btn-primary {
  background: #e59139;
  border: none;
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-primary:hover {
  background: #ff9f47;
  transform: translateY(-2px);
}

.hero-img {
  width: 45%;
  height: 70%;
  background: url('https://images.unsplash.com/photo-1608198093002-ad4e005484b7?q=80') center/cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

/* ===== SESSÕES ===== */
.section {
  padding: 80px 0;
  text-align: center;
}

.section h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 40px;
}

/* ===== CARDS ===== */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 0 60px;
}

.card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
}

.card img {
  width: 100%;
  border-radius: 12px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.7));
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 15px;
}

.btn-card {
  background: #e59139;
  border: none;
  padding: 10px 26px;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-card:hover {
  background: #ff9f47;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px;
  text-align: center;
  background: #111;
  color: #777;
  margin-top: 60px;
  font-size: 0.9rem;
}
/* === FORMULÁRIO DE PEDIDOS === */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.pedido-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #fff;
}

.pedido-form input,
.pedido-form select,
.pedido-form textarea {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid #333;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #fff;
}

.pedido-form textarea {
    height: 120px;
    resize: none;
}
/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.modal-content {
    background: #181818;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 380px;
    box-shadow: 0 0 20px rgba(255,140,0,0.3);
    color: #fff;
}

.modal-anim {
    animation: pop 0.5s ease;
}

.modal-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #ff9000;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

@keyframes pop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

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