/* =========================
   RESET BÁSICO
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background-color: #FBFBFB;
  color: #2B2B2B;
  line-height: 1.6;
}

/* =========================
   VARIÁVEIS DE COR
========================= */
:root {
  --preto: #2B2B2B;
  --offwhite: #FBFBFB;
  --kraft: #D1C9B6;
  --marrom: #4A341C;
  --verde: #4E5C4C;
}

/* =========================
   HERO / BANNER PRINCIPAL
========================= */
.hero-dotelles {
  width: 100%;
  height: 80vh;
  background-image: url('URL_DA_IMAGEM_DO_HERO_AQUI');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-dotelles::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  color: #ffffff;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 520px;
  margin-bottom: 32px;
}

/* =========================
   BOTÕES
========================= */
.btn-primary {
  background-color: var(--preto);
  color: #ffffff;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--marrom);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 14px 32px;
  margin-left: 16px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: var(--preto);
}

/* =========================
   SEÇÃO TORRAS
========================= */
.section-torras {
  max-width: 1200px;
  margin: 96px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.torra-card {
  padding: 48px 32px;
  border-radius: 6px;
  text-align: center;
}

.torra-media {
  background-color: var(--kraft);
}

.torra-espresso {
  background-color: var(--preto);
  color: #ffffff;
}

.torra-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.torra-card p {
  font-size: 0.95rem;
  margin-bottom: 32px;
}

/* =========================
   SEÇÃO ORIGEM
========================= */
.section-origem {
  background-color: #ffffff;
  padding: 96px 24px;
  text-align: center;
}

.section-origem h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.section-origem p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  color: #555555;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 16px;
    display: inline-block;
  }
}
