:root {
  /* Colors */
  --color-primary: #533e2a;
  /* Marrom institucional */
  --color-primary-light: #70563d;
  --color-primary-dark: #3a2b1d;

  --color-cta: #e17200;
  /* Laranja destaque */
  --color-cta-hover: #c46300;

  --color-bg-light: #fcf9f2;
  /* Fundo suave, levemente creme/quente */
  --color-bg-section: #f4eee2;

  --color-text-dark: #332d27;
  --color-text-light: #fefefe;

  --color-border: #e0d5c1;

  /* Typography */
  --font-heading: 'Agenor Neue', 'Playfair Display', serif;
  /* Agenor Neue com fallback para serif clássica */
  --font-body: 'Montserrat', 'Poppins', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(83, 62, 42, 0.08);
  --shadow-md: 0 4px 16px rgba(83, 62, 42, 0.12);
  --shadow-lg: 0 8px 32px rgba(83, 62, 42, 0.15);
}

/* Reset Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Base Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--color-cta);
  color: var(--color-text-light);
}

.btn-primary:hover {
  background-color: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

/* Reusable Components */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-cta);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--color-primary-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-light);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1rem 0;
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(252, 249, 242, 0.98);
  backdrop-filter: blur(8px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  /* Fonte um pouco mais refinada */
  color: var(--color-primary);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
  /* Evita que o texto quebre em duas linhas */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-cta);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Refined PDF Button in Nav */
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.5rem;
  background-color: transparent;
  color: var(--color-cta);
  border: 1px solid var(--color-cta);
  border-radius: 50px;
  /* Fully rounded modern pill shape */
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition-normal);
  white-space: nowrap;
}



.nav-btn:hover {
  background-color: var(--color-cta);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(225, 114, 0, 0.2);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--color-primary);
    flex-direction: column;
    padding-top: 5rem;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--color-text-light);
  }

  .nav-link::after {
    background-color: var(--color-cta);
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  margin-top: 0;
  /* Header is fixed */
  overflow: hidden;
}

/* We'll use a placeholder gradient or pattern if an image isn't loaded */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(58, 43, 29, 0.9) 0%, rgba(83, 62, 42, 0.7) 100%);
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white-outline {
  border-color: var(--color-text-light);
  color: var(--color-text-light);
}

.btn-white-outline:hover {
  background-color: var(--color-text-light);
  color: var(--color-primary);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transition: transform var(--transition-normal);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: var(--color-cta);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-logo {
  margin-bottom: 1rem;
  display: inline-block;
  background-color: var(--color-bg-light);
  /* Adicionado box leve para o logo dar contraste no footer escuro */
  padding: 10px 15px;
  border-radius: 6px;
}

.footer-logo img {
  height: 70px;
  width: auto;
  display: block;
}

.footer-col p,
.footer-col a {
  color: #d1c7b8;
  margin-bottom: 0.75rem;
  display: block;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--color-cta);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background-color: var(--color-cta);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: #a39b8f;
}

/* Section Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.buffet-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--color-bg-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 992px) {
  .buffet-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.buffet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.buffet-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.check-list li {
  margin-bottom: 0.75rem;
  font-weight: 500;
}

/* Products Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--color-text-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  height: 250px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.product-info p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--color-text-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card i.fa-quote-left {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--color-border);
  opacity: 0.5;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  color: #555;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--color-cta);
}

/* Events CTA Banner */
.events-cta {
  background: linear-gradient(rgba(83, 62, 42, 0.85), rgba(83, 62, 42, 0.85)), url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
  color: var(--color-text-light);
  text-align: center;
  padding: 5rem 0;
}

.events-cta h2 {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.events-cta p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* ==========================================
   Formulários (Orçamento e Contato)
   ========================================== */
.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #333;
  background-color: #fcfcfc;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-cta);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(225, 114, 0, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid #c8e6c9;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(-10px);
}

.success-message.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Contact Layout Specific for Orçamento Page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 2fr 1fr;
  }
}

.contact-info-card {
  background-color: var(--color-primary);
  color: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--color-cta);
  margin-top: 0.25rem;
}