@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap");

/* --- Reset Básico e Estilos Gerais --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #F9F5E7;
  color: #5A3E2B;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: #222222;
}

a {
  color: #C9A35E;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* --- Componentes Reutilizáveis --- */
.btn {
  display: inline-block;
  padding: 10px 25px;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #C9A35E;
}

.btn-primary {
  background-color: #C9A35E;
  color: #222222;
  font-weight: 700;
}
.btn-primary:hover {
  background-color: #FDFDFD;
  color: #222222;
  border-color: #FDFDFD;
  transform: translateY(-2px);
}

.btn-gold {
  background-color: #C9A35E;
  color: #222222;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  border-color: #C9A35E;
}
.btn-gold:hover {
  background-color: transparent;
  color: #FDFDFD;
  border-color: #FDFDFD;
  transform: translateY(-2px);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #C9A35E;
}

.page-hero {
  background-color: #222222;
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid #444;
}
.page-hero h1 {
  font-size: 3.5rem;
  color: #FDFDFD;
}
.page-hero p {
  font-size: 1.2rem;
  color: #bbbbbb;
  margin-top: 10px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
}

/* --- Cabeçalho --- */
.main-header {
  background-color: #222222;
  padding: 20px 0;
  border-bottom: 1px solid #444;
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .header-logo img {
  height: 80px;
}
.main-header .main-nav a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #FDFDFD;
  margin: 0 15px;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 1px;
  opacity: 0.8;
}
.main-header .main-nav a:hover {
  opacity: 1;
}
.main-header .main-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C9A35E;
  transition: width 0.3s ease;
}
.main-header .main-nav a:hover::after {
  width: 100%;
}

/* --- Rodapé --- */
.main-footer {
  background-color: #222222;
  color: #F9F5E7;
  padding: 60px 0 20px 0;
}
.main-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.main-footer .footer-col h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #FDFDFD;
  font-family: "Playfair Display", serif;
}
.main-footer .footer-col p, .main-footer .footer-col a {
  color: #F9F5E7;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.main-footer .footer-col ul {
  list-style: none;
}
.main-footer .footer-col ul li {
  margin-bottom: 10px;
}
.main-footer .footer-col a:hover {
  opacity: 1;
}
.main-footer .social-links a {
  font-size: 1.5rem;
  margin-right: 15px;
}
.main-footer .footer-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  opacity: 0.5;
}

/* --- Seções da Página --- */

/* Hero */
.hero-a {
  height: 90vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("https://images.unsplash.com/photo-1571091718767-18b5b1457add?q=80&w=2072&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  color: #FDFDFD;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-content {
  max-width: 800px;
}
.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #FDFDFD;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Hambúrgueres */
.signature-burgers {
  padding: 80px 0;
  text-align: center;
  background-color: #222222;
}
.signature-burgers .section-title {
  color: #FDFDFD;
}
.burgers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.burger-card {
  background-color: #333333;
  border: 1px solid #444;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn-up 0.6s ease-out forwards;
}
.burger-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.35);
}
.burger-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.burger-card:hover img {
  transform: scale(1.1);
}
.burger-card h3 {
  font-size: 1.8rem;
  margin: 20px;
  color: #FDFDFD;
}
.burger-card p {
  padding: 0 20px 25px 20px;
  font-size: 1rem;
  color: #bbbbbb;
}

/* Sobre */
.about-summary, .about-philosophy {
  padding: 80px 0;
  background-color: #F9F5E7;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-philosophy .about-grid {
  gap: 80px;
}
.about-image img {
  width: 100%;
  height: auto;
  box-shadow: -15px 15px 0px #C9A35E;
}
.about-content .section-title {
  text-align: left;
  display: block;
}
.about-content .section-title::after {
  left: 0;
  transform: translateX(0);
}
.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #222222;
}
.about-content p {
  margin-bottom: 30px;
  color: #888888;
  line-height: 1.8;
}

/* Depoimentos */
.testimonials {
  padding: 80px 0;
  background-color: #FDFDFD;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-card {
  background-color: #F9F5E7;
  border: 1px solid #e9e4d5;
  padding: 40px;
  text-align: center;
  border-radius: 5px;
}
.testimonial-card .fa-quote-left {
  font-size: 2.5rem;
  color: #C9A35E;
  margin-bottom: 20px;
}
.testimonial-card .quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #5A3E2B;
  margin-bottom: 30px;
}
.testimonial-card .author h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.testimonial-card .author span {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #888888;
  letter-spacing: 1px;
}

/* Feed do Instagram */
.instagram-feed {
  padding: 80px 0;
  text-align: center;
  background-color: #F9F5E7;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.insta-item:hover img {
  transform: scale(1.1);
}
.insta-item:hover .insta-overlay {
  opacity: 1;
}
.btn-follow {
  margin: 0 auto;
}

/* Equipe */
.team-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.team-member {
  text-align: center;
}
.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px auto;
  border: 5px solid #e9e4d5;
  transition: transform 0.3s ease;
}
.team-member:hover img {
  transform: scale(1.05);
}
.team-member h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.team-member h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #C9A35E;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.team-member p {
  font-size: 0.9rem;
  color: #888888;
  max-width: 300px;
  margin: 0 auto;
}

/* Cardápio */
.menu-section {
  padding: 80px 0;
  background-color: #222222;
}
.menu-section:nth-child(odd) {
  background-color: #1a1a1a;
}
.menu-section .section-title {
  color: #FDFDFD;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  margin-top: 50px;
}
.menu-item {
  display: flex;
  flex-direction: column;
}
.menu-item-header {
  display: flex;
  align-items: baseline;
  width: 100%;
}
.menu-item-header h3 {
  font-size: 1.5rem;
  white-space: nowrap;
  margin-right: 15px;
  color: #FDFDFD;
}
.menu-item-line {
  flex-grow: 1;
  border-bottom: 2px dotted #555;
  margin-bottom: 4px;
}
.menu-item-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #C9A35E;
  margin-left: 15px;
}
.menu-item-description {
  margin-top: 10px;
  color: #bbbbbb;
  font-size: 0.9rem;
}

/* Blog */
.blog-listing-section {
  padding: 80px 0;
  background-color: #222222;
}
.blog-listing-section .page-hero {
  background-color: #222222;
  border-bottom: 1px solid #444;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.post-card {
  background-color: #333333;
  border: 1px solid #444;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}
.post-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.post-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.post-card-category {
  display: inline-block;
  background-color: #C9A35E;
  color: #222222;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  align-self: flex-start;
}
.post-card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #FDFDFD;
  line-height: 1.3;
}
.post-card-title:hover {
  color: #C9A35E;
}
.post-card-excerpt {
  color: #bbbbbb;
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}
.post-card-meta {
  font-size: 0.8rem;
  color: #bbbbbb;
  border-top: 1px solid #444;
  padding-top: 15px;
  margin-top: auto;
}
.blog-post {
  padding-bottom: 80px;
  background-color: #222222;
}
.post-header {
  text-align: center;
  padding: 60px 0;
  background-color: #222222;
}
.post-header .post-back-link { color: #bbbbbb; }
.post-header .post-title { color: #FDFDFD; }
.post-header .post-meta { color: #bbbbbb; }
.post-featured-image {
  margin-bottom: 60px;
}
.post-featured-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.post-content .container {
  max-width: 750px;
}
.post-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #bbbbbb;
}
.post-content blockquote {
  border-left: 4px solid #C9A35E;
  padding-left: 30px;
  margin: 40px 0;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #FDFDFD;
}
.post-content blockquote cite {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 15px;
  color: #bbbbbb;
}
.post-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #444;
  text-align: center;
}
.post-footer .container {
  max-width: 750px;
}
.post-footer h4 {
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #FDFDFD;
}
.share-links a {
  font-size: 1.5rem;
  margin: 0 15px;
  color: #FDFDFD;
  transition: color 0.3s ease;
}
.share-links a:hover {
  color: #C9A35E;
}

/* Contato */
.contact-section {
  padding: 80px 0;
  background-color: #222222;
}
.contact-section .page-hero {
  background-color: #222222;
  border-bottom: 1px solid #444;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info-block h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #FDFDFD;
}
.contact-info-block .contact-details p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #bbbbbb;
}
.contact-info-block .contact-details a {
  color: #FDFDFD;
}
.contact-info-block .contact-details i {
  color: #C9A35E;
  margin-right: 15px;
  width: 20px;
}
.opening-hours-title {
  margin-top: 40px;
}
.opening-hours {
  list-style: none;
  line-height: 2;
  color: #bbbbbb;
}
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #FDFDFD;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #444;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  background-color: #333333;
  color: #FDFDFD;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #C9A35E;
  box-shadow: 0 0 5px rgba(201, 163, 94, 0.5);
}
.contact-form button {
  width: 100%;
  border: none;
  cursor: pointer;
  background-color: #C9A35E;
  color: #222222;
}
.contact-form button:hover {
  background-color: #FDFDFD;
  color: #222222;
}

/* Mapa */
.map-section iframe {
  display: block;
  width: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}

/* Galeria */
.gallery-section {
  padding: 80px 0;
  background-color: #222222;
}
.gallery-section .page-hero {
  background-color: #222222;
  border-bottom: 1px solid #444;
}
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}
.gallery-item {
  margin-bottom: 20px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}
.gallery-item a {
  display: block;
  line-height: 0;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

/* --- Animações --- */
@keyframes fadeIn-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.burger-card:nth-child(2), .about-grid > * {
  animation-delay: 0.2s;
}
.burger-card:nth-child(3) {
  animation-delay: 0.4s;
}


/* --- Media Queries (Responsividade) --- */
@media (max-width: 992px) {
  .contact-container, .burgers-grid, .about-grid, .testimonials-grid, .blog-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    column-count: 2;
  }
  .footer-grid, .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    column-count: 1;
  }
}