:root {
  --primary-color: #593621;
  --secondary-color: #F4EBDC;
  --accent-color: #8B4513;
  --white: #FFFFFF;
  --gray: #333333;
  --transition: all 0.3s ease-in-out;
}

/* Importação da fonte e reset básico */
@font-face {
  font-family: 'Futura PT Medium';
  src: url('../fonts/FuturaPTMedium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Melhora a performance de carregamento */
}

body {
  font-family: 'Futura PT Medium', sans-serif;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  position: relative;
  top: 0 !important;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* ===============================
   CLASSE UNIVERSAL PARA TÍTULOS DE SECÇÃO
   =============================== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 auto 3rem auto; /* Centraliza e adiciona margem inferior */
    position: relative;
    color: var(--primary-color);
    padding-bottom: 1rem;
    max-width: 90%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 1rem auto 0;
}
p.address-line {
  margin: 0;
  line-height: 1.6;
}

/* ===============================
   GOOGLE TRANSLATE CLEANUP
   =============================== */
#google-translate-element,
.goog-te-banner-frame,
.goog-te-balloon-frame {
  display: none !important;
}

iframe.goog-te-banner-frame,
iframe.goog-te-menu-frame {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}

body > .skiptranslate {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

.brand-name {
  font-style: inherit;
  font-weight: inherit;
}
