@charset "UTF-8";
/**
 * src/sass/style.scss
 * Arquivo Principal de Compilação SASS
 * Metodologia: 7-1 Pattern (Modular)
 * Autor: 4ton Soluções Digitais
 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", sans-serif;
  color: #3C2F2F;
  background-color: #F5EFE1;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  color: #3C2F2F;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: #596D4B;
  transition: color 0.3s ease;
}
a:hover {
  color: #A54A3B;
}

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

.section-title, .section-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #A54A3B;
}

input, .contact-form input[type=text],
.contact-form input[type=email],
.contact-form select,
.contact-form textarea,
.contact-form select[type=text],
.contact-form textarea[type=text],
.contact-form select[type=email],
.contact-form textarea[type=email], textarea {
  border: 1px solid #ccc;
  padding: 8px;
}

.btn, .btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary, .btn-cta {
  background-color: #A54A3B;
  color: #F5EFE1;
  border-color: #A54A3B;
}
.btn-primary:hover, .btn-cta:hover {
  background-color: rgb(127.4330357143, 57.1517857143, 45.5669642857);
  color: #F5EFE1;
}

.btn-cta {
  font-size: 1.1rem;
  padding: 15px 30px;
  box-shadow: 0 5px 15px rgba(165, 74, 59, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #3C2F2F;
  border-color: #3C2F2F;
}
.btn-secondary:hover {
  background-color: #3C2F2F;
  color: #F5EFE1;
}

.btn-tertiary {
  background-color: transparent;
  color: #596D4B;
  border-color: #596D4B;
}
.btn-tertiary:hover {
  background-color: #596D4B;
  color: #F5EFE1;
}

.quick-links-section {
  padding: 80px 0;
}

.links-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(60, 47, 47, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(60, 47, 47, 0.2);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.info-card:hover .card-image {
  transform: scale(1.05);
}

.info-card h4 {
  font-size: 1.5rem;
  color: #596D4B;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.info-card p {
  font-size: 0.95rem;
  padding: 0 20px;
  margin-bottom: 20px;
}

.card-link {
  display: block;
  padding: 15px;
  background-color: #F5EFE1;
  font-weight: 700;
  text-transform: uppercase;
  color: #A54A3B;
  border-top: 1px solid rgb(189.9906542056, 172.0093457944, 172.0093457944);
  transition: background-color 0.3s ease;
}
.card-link:hover {
  background-color: rgb(233.4017857143, 200.0892857143, 194.5982142857);
  color: #3C2F2F;
}

.testimonials-section {
  background-color: rgb(246.275, 241.04, 228.825);
  padding: 60px 0;
  text-align: center;
}

.testimonial-quote {
  max-width: 700px;
  margin: 0 auto 30px;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #3C2F2F;
}

.testimonial-quote cite {
  display: block;
  margin-top: 15px;
  font-size: 1rem;
  font-style: normal;
  color: #596D4B;
}

.main-header {
  background-color: rgba(245, 239, 225, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(60, 47, 47, 0.1);
}

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

.logo h1 {
  font-size: 1.8rem;
  color: #A54A3B;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  align-items: center;
}
.main-nav .nav-list li {
  margin-left: 30px;
}
.main-nav .nav-list li a {
  font-weight: 700;
  text-transform: uppercase;
  /* padding: 5px 0; */
}
@media (max-width: 767px) {
  .main-nav {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #F5EFE1;
    box-shadow: 0 4px 8px rgba(60, 47, 47, 0.1);
    display: none;
    padding: 10px 0;
  }
  .main-nav.active {
    display: block;
  }
  .main-nav .nav-list {
    flex-direction: column;
  }
  .main-nav .nav-list li {
    margin: 0;
    border-bottom: 1px solid rgb(212.3925233645, 200.6074766355, 200.6074766355);
  }
  .main-nav .nav-list li:last-child {
    border-bottom: none;
  }
  .main-nav .nav-list a {
    display: block;
    padding: 15px 20px;
    text-align: center;
    font-size: 1.1rem;
  }
}

.nav-toggle {
  display: none;
}
@media (max-width: 767px) {
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #3C2F2F;
  }
}

.main-header.scrolled {
  padding: 5px 0;
  box-shadow: 0 8px 15px rgba(60, 47, 47, 0.15);
  transition: all 0.3s ease-in-out;
}
.main-header.scrolled .header-content {
  padding: 10px 20px;
}
.main-header.scrolled .logo h1 {
  font-size: 1.5rem;
}

.hero-section {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(60, 47, 47, 0.3), rgba(60, 47, 47, 0.6));
}

.hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.8);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 800px;
  padding: 20px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.highlight-text {
  color: #C7A779;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.hero-actions .btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: white;
}
.hero-actions .btn-secondary:hover {
  background-color: white;
  color: #3C2F2F;
}

.main-footer {
  background-color: #3C2F2F;
  color: #F5EFE1;
  padding: 40px 0;
  font-size: 0.9rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.main-footer h4 {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  color: #C7A779;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #A54A3B;
}

.footer-col-2 p, .footer-col-3 a {
  margin-bottom: 8px;
}

.footer-col-3 a {
  color: #F5EFE1;
  text-decoration: underline;
}
.footer-col-3 a:hover {
  color: #C7A779;
}

.social-links {
  display: flex;
  gap: 15px;
}

.main-footer a {
  color: #F5EFE1;
}
.main-footer a:hover {
  color: #C7A779;
}

.btn, .btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary, .btn-cta {
  background-color: #A54A3B;
  color: #F5EFE1;
  border-color: #A54A3B;
}
.btn-primary:hover, .btn-cta:hover {
  background-color: rgb(127.4330357143, 57.1517857143, 45.5669642857);
  color: #F5EFE1;
}

.btn-cta {
  font-size: 1.1rem;
  padding: 15px 30px;
  box-shadow: 0 5px 15px rgba(165, 74, 59, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #3C2F2F;
  border-color: #3C2F2F;
}
.btn-secondary:hover {
  background-color: #3C2F2F;
  color: #F5EFE1;
}

.btn-tertiary {
  background-color: transparent;
  color: #596D4B;
  border-color: #596D4B;
}
.btn-tertiary:hover {
  background-color: #596D4B;
  color: #F5EFE1;
}

/* --------------------------------------
   1. Page Hero (Título da Página de Menu)
   -------------------------------------- */
.menu-hero {
  background-color: rgb(226.6852678571, 183.0133928571, 175.8147321429);
  padding: 60px 0 40px;
  text-align: center;
}
.menu-hero .page-title {
  font-size: 3rem;
  color: #A54A3B;
  margin-bottom: 10px;
}
.menu-hero .page-subtitle {
  font-size: 1.1rem;
  color: #3C2F2F;
}

/* --------------------------------------
   2. Navegação Rápida (Menu Tabs)
   -------------------------------------- */
.menu-tabs {
  text-align: center;
  margin: 40px 0 60px;
}
.menu-tabs ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.menu-tabs ul li a {
  display: block;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid #596D4B;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.menu-tabs ul li a:hover {
  background-color: #596D4B;
  color: #F5EFE1;
}
.menu-tabs ul li.active a {
  background-color: #A54A3B;
  border-color: #A54A3B;
  color: white;
}

/* --------------------------------------
   3. Estrutura do Menu e Categorias
   -------------------------------------- */
.menu-section {
  padding-bottom: 80px;
}

.menu-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: #3C2F2F;
  border-bottom: 2px solid #A54A3B;
  padding-bottom: 15px;
}
.category-title .subtitle {
  font-size: 1.2rem;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: #596D4B;
  display: block;
  margin-top: 5px;
}

.menu-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------
   4. Estilo do Item de Menu (Menu Item)
   -------------------------------------- */
.menu-item {
  display: flex;
  gap: 20px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(60, 47, 47, 0.1);
  align-items: center;
  transition: transform 0.3s ease;
}
.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(60, 47, 47, 0.15);
}

.item-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.item-details {
  flex-grow: 1;
}

.item-name {
  font-size: 1.6rem;
  color: #A54A3B;
  margin-bottom: 5px;
}

.item-description {
  font-size: 0.9rem;
  color: #3C2F2F;
  margin-bottom: 10px;
}

.item-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #596D4B;
}

/* --------------------------------------
   5. Destaques (Chef's Special)
   -------------------------------------- */
.menu-item--chef {
  background-color: #A54A3B;
  color: white;
  border: 3px solid #C7A779;
  transform: scale(1.03);
}
.menu-item--chef .item-name {
  color: #F5EFE1;
}
.menu-item--chef .item-price {
  color: #C7A779;
}
.menu-item--chef:hover {
  transform: scale(1.05);
}

/* --------------------------------------
   6. CTA Banner Integrado
   -------------------------------------- */
.menu-cta-banner {
  background-color: #596D4B;
  color: white;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  margin: 60px 0;
}
.menu-cta-banner p {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}
.menu-cta-banner .btn-cta {
  background-color: #C7A779;
  border-color: #C7A779;
  color: #3C2F2F;
}
.menu-cta-banner .btn-cta:hover {
  background-color: white;
  border-color: white;
}

/* --------------------------------------
   1. Page Hero (Reservas)
   -------------------------------------- */
.reservations-hero {
  background-color: rgb(192.0108695652, 205.2717391304, 182.7282608696);
  padding: 60px 0 40px;
  text-align: center;
}
.reservations-hero .page-title {
  font-size: 3rem;
  color: #596D4B;
  margin-bottom: 10px;
}
.reservations-hero .page-subtitle {
  font-size: 1.1rem;
  color: #3C2F2F;
}

/* --------------------------------------
   2. Layout Principal (Formulário e Info)
   -------------------------------------- */
.reservation-form-section {
  padding: 60px 0;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .reservation-form-section {
    grid-template-columns: 1fr 2fr;
    align-items: flex-start;
  }
}

/* --------------------------------------
   3. Bloco de Informação Lateral (.reservation-info)
   -------------------------------------- */
.reservation-info {
  background-color: #F5EFE1;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(60, 47, 47, 0.1);
}
.reservation-info h3 {
  font-size: 1.8rem;
  color: #A54A3B;
  margin-bottom: 20px;
  border-bottom: 1px solid rgb(206.5357142857, 131.7857142857, 119.4642857143);
  padding-bottom: 10px;
}
.reservation-info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
.reservation-info ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.reservation-info ul li .icon-point {
  font-size: 1.2rem;
  color: #596D4B;
  margin-right: 10px;
  line-height: 1.5;
}
.reservation-info .contact-details {
  margin-bottom: 30px;
}
.reservation-info .contact-details h4 {
  color: #3C2F2F;
  margin-bottom: 5px;
}
.reservation-info .info-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

/* --------------------------------------
   4. Estilo do Formulário (Inputs e Fieldsets)
   -------------------------------------- */
.reservation-form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(60, 47, 47, 0.1);
}

.form-step {
  border: 1px solid rgb(212.3925233645, 200.6074766355, 200.6074766355);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 30px;
}

.step-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #596D4B;
  padding: 0 10px;
  width: auto;
  margin-left: -10px;
}

.form-group {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .form-group:not(.form-group--full) {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .form-step:nth-of-type(2) .form-group {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
  color: #3C2F2F;
}

input[type=text], .contact-form input[type=text],
.contact-form select[type=text],
.contact-form textarea[type=text],
input[type=email],
.contact-form input[type=email],
.contact-form select[type=email],
.contact-form textarea[type=email],
input[type=tel],
.contact-form select[type=tel],
.contact-form textarea[type=tel],
input[type=date],
.contact-form select[type=date],
.contact-form textarea[type=date],
input[type=number],
.contact-form select[type=number],
.contact-form textarea[type=number],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgb(189.9906542056, 172.0093457944, 172.0093457944);
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=date]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
  border-color: #A54A3B;
  box-shadow: 0 0 0 2px rgb(213.2522321429, 148.8616071429, 138.2477678571);
  outline: none;
}

textarea {
  resize: vertical;
}

/* --------------------------------------
   5. Botão de Submissão
   -------------------------------------- */
.form-submit {
  text-align: center;
  margin-top: 40px;
}

.btn-cta--large {
  font-size: 1.3rem;
  padding: 18px 40px;
}

.privacy-note {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #3C2F2F;
}
.privacy-note a {
  color: #596D4B;
}
.privacy-note a:hover {
  text-decoration: underline;
}

.btn, .btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary, .btn-cta {
  background-color: #A54A3B;
  color: #F5EFE1;
  border-color: #A54A3B;
}
.btn-primary:hover, .btn-cta:hover {
  background-color: rgb(127.4330357143, 57.1517857143, 45.5669642857);
  color: #F5EFE1;
}

.btn-cta {
  font-size: 1.1rem;
  padding: 15px 30px;
  box-shadow: 0 5px 15px rgba(165, 74, 59, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #3C2F2F;
  border-color: #3C2F2F;
}
.btn-secondary:hover {
  background-color: #3C2F2F;
  color: #F5EFE1;
}

.btn-tertiary {
  background-color: transparent;
  color: #596D4B;
  border-color: #596D4B;
}
.btn-tertiary:hover {
  background-color: #596D4B;
  color: #F5EFE1;
}

/* --------------------------------------
   1. Page Hero (A História)
   -------------------------------------- */
.about-hero {
  background-color: rgb(192.0108695652, 205.2717391304, 182.7282608696);
  padding: 60px 0 40px;
  text-align: center;
}
.about-hero .page-title {
  font-size: 3rem;
  color: #596D4B;
  margin-bottom: 10px;
}
.about-hero .page-subtitle {
  font-size: 1.1rem;
  color: #3C2F2F;
}

/* --------------------------------------
   2. Secções de História (Textos e Imagens)
   -------------------------------------- */
.story-section {
  padding: 80px 0;
}
.story-section--philosophy {
  background-color: #F5EFE1;
}

.story-content-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) {
  .story-content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .story-content-grid:nth-child(even) .text-block {
    order: 2;
  }
  .story-content-grid:nth-child(even) .image-block {
    order: 1;
  }
}

.text-block h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #A54A3B;
  margin-bottom: 20px;
}
.text-block p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #3C2F2F;
}

.quote-signature {
  display: block;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 20px;
  color: #596D4B;
}

.story-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}
.story-image:hover {
  transform: scale(1.02);
}
.story-image--circle {
  border-radius: 50%;
  max-width: 350px;
  height: 350px;
  margin: 0 auto;
  display: block;
}

/* --------------------------------------
   3. Destaque do Chef (.story-section--chef)
   -------------------------------------- */
.story-section--chef {
  background-color: #3C2F2F;
  color: #F5EFE1;
  padding: 0;
}

.chef-highlight {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .chef-highlight {
    flex-direction: row;
  }
}

.chef-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .chef-image {
    width: 40%;
    height: auto;
  }
}

.chef-bio {
  padding: 40px 30px;
}
@media (min-width: 1024px) {
  .chef-bio {
    width: 60%;
    padding: 60px;
  }
}
.chef-bio h4 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #C7A779;
  margin-bottom: 20px;
}
.chef-bio p {
  line-height: 1.7;
  margin-bottom: 30px;
}
.chef-bio .btn-secondary {
  background-color: #A54A3B;
  border: 2px solid #A54A3B;
  color: white;
}
.chef-bio .btn-secondary:hover {
  background-color: transparent;
  border-color: #C7A779;
  color: #C7A779;
}

/* --------------------------------------
   4. Cartões de Valores (.story-section--values)
   -------------------------------------- */
.story-section--values {
  background-color: white;
}

.story-values-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 768px) {
  .story-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  padding: 30px;
  border: 1px dashed #596D4B;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.value-card:hover {
  background-color: rgb(246.275, 241.04, 228.825);
}
.value-card .value-icon {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.value-card h5 {
  font-size: 1.4rem;
  color: #A54A3B;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.95rem;
  color: #3C2F2F;
}

/* --------------------------------------
   5. CTA Final (Banner)
   -------------------------------------- */
.cta-banner--dark {
  background-color: #A54A3B;
  color: white;
  padding: 50px 0;
  text-align: center;
}
.cta-banner--dark h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.cta-banner--dark p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.cta-banner--dark .btn-cta {
  background-color: #3C2F2F;
  color: #C7A779;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn, .btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary, .btn-cta {
  background-color: #A54A3B;
  color: #F5EFE1;
  border-color: #A54A3B;
}
.btn-primary:hover, .btn-cta:hover {
  background-color: rgb(127.4330357143, 57.1517857143, 45.5669642857);
  color: #F5EFE1;
}

.btn-cta {
  font-size: 1.1rem;
  padding: 15px 30px;
  box-shadow: 0 5px 15px rgba(165, 74, 59, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #3C2F2F;
  border-color: #3C2F2F;
}
.btn-secondary:hover {
  background-color: #3C2F2F;
  color: #F5EFE1;
}

.btn-tertiary {
  background-color: transparent;
  color: #596D4B;
  border-color: #596D4B;
}
.btn-tertiary:hover {
  background-color: #596D4B;
  color: #F5EFE1;
}

/* --------------------------------------
   1. Page Hero (Contacto)
   -------------------------------------- */
.contact-hero {
  background-color: rgb(226.6852678571, 183.0133928571, 175.8147321429);
  padding: 60px 0 40px;
  text-align: center;
}
.contact-hero .page-title {
  font-size: 3rem;
  color: #A54A3B;
  margin-bottom: 10px;
}
.contact-hero .page-subtitle {
  font-size: 1.1rem;
  color: #3C2F2F;
}

/* --------------------------------------
   2. Informação Geral e Horários
   -------------------------------------- */
.contact-info-section {
  padding: 60px 0;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-info-section {
    grid-template-columns: 1fr 1fr;
  }
}

.info-block {
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(60, 47, 47, 0.1);
}
.info-block .block-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #596D4B;
  margin-bottom: 25px;
  border-bottom: 1px solid rgb(212.3925233645, 200.6074766355, 200.6074766355);
  padding-bottom: 10px;
}

/* Tabela de Horários */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.hours-table th, .hours-table td {
  padding: 10px 0;
  text-align: left;
  border-bottom: 1px dashed rgb(212.3925233645, 200.6074766355, 200.6074766355);
  font-size: 1rem;
}
.hours-table th {
  font-weight: 700;
  color: #3C2F2F;
  width: 40%;
}
.hours-table td {
  color: #596D4B;
  font-weight: 500;
}
.hours-table tr:first-child td {
  color: #A54A3B;
  font-style: italic;
}

.note {
  font-size: 0.9rem;
  color: #3C2F2F;
  margin-top: 15px;
}

/* Contacto Direto */
.contact-details {
  font-style: normal;
  margin-bottom: 25px;
}
.contact-details p {
  margin-bottom: 8px;
}
.contact-details a {
  color: #596D4B;
}
.contact-details a:hover {
  text-decoration: underline;
}

.social-links-contact {
  display: flex;
  gap: 20px;
}
.social-links-contact .social-icon {
  font-weight: 700;
  color: #A54A3B;
  border: 2px solid #A54A3B;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.social-links-contact .social-icon:hover {
  background-color: #A54A3B;
  color: white;
}

/* --------------------------------------
   3. Formulário de Contacto
   -------------------------------------- */
.contact-form-section {
  padding-top: 0;
  padding-bottom: 60px;
}

.section-heading {
  text-align: left;
  margin-bottom: 30px;
  color: #3C2F2F;
}

.contact-form {
  padding: 30px;
  background-color: #F5EFE1;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(60, 47, 47, 0.1);
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
  color: #3C2F2F;
}

.contact-form input[type=text],
.contact-form select[type=text],
.contact-form textarea[type=text],
.contact-form input[type=email],
.contact-form select[type=email],
.contact-form textarea[type=email],
.contact-form select,
.contact-form textarea {
  background-color: white;
}

/* .form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
} */
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-submit {
  margin-top: 30px;
  text-align: right;
}
.form-submit .btn-primary, .form-submit .btn-cta {
  padding: 15px 30px;
}

/* --------------------------------------
   4. Mapa de Localização
   -------------------------------------- */
.map-section {
  margin-bottom: -5px;
}

.map-placeholder {
  width: 100%;
  height: 450px;
  background-color: rgb(189.9906542056, 172.0093457944, 172.0093457944);
}
.map-placeholder iframe {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*# sourceMappingURL=style.css.map */
