@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #722F37; /* Wine/Bordeaux */
  --primary-hover: #5A252C;
  --secondary: #D4AF37; /* Gold */
  --secondary-hover: #C5A028;
  --bg-main: #FAFAFA;
  --bg-card: #FFFFFF;
  --bg-dark: #1A1A1A;
  --text-main: #333333;
  --text-light: #F5F5F5;
  --text-muted: #666666;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Typography Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--secondary); }
.text-wine { color: var(--primary); }
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(114, 47, 55, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}
.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--secondary);
  color: var(--bg-dark);
}
.btn-gold:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 5px;
  transition: var(--transition);
}

/* Sections General */
section {
  padding: 6rem 5%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('assets/images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  color: var(--text-light);
  animation: fadeIn 1s ease-in-out;
}

.hero h1 {
  font-size: 4rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sobre Nós */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background-color: var(--bg-main);
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; }

.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary);
  border-radius: var(--radius);
  z-index: -1;
}

/* Eventos */
.events {
  background-color: var(--bg-card);
}
.events-restrictions {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  display: inline-flex;
  gap: 2rem;
  margin-bottom: 3rem;
  font-weight: 600;
}
.events-restrictions i {
  color: var(--secondary);
  margin-right: 8px;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.event-card {
  background: var(--bg-main);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--secondary);
}
.event-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}
.event-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Take Away */
.takeaway {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.takeaway-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.takeaway-content h2 { margin-bottom: 1.5rem; }
.takeaway-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }

/* Espaço (Gallery) */
.gallery-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}
.gallery-section .section-title {
  color: var(--text-light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  height: 300px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Testemunhos */
.testimonials {
  background-color: var(--bg-main);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-card {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: rgba(212, 175, 55, 0.2);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}
.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-author-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Contactos */
.contact {
  background-color: var(--bg-card);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.contact-item-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(114, 47, 55, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-item-content h4 { margin-bottom: 0.25rem; font-family: var(--font-body); }
.contact-item-content p { color: var(--text-muted); margin-bottom: 0; }
.contact-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.map-container {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 5% 2rem;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--secondary); }
.footer-desc {
  color: rgba(255,255,255,0.7);
  max-width: 400px;
  margin-bottom: 2rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  background-color: var(--secondary);
  color: var(--bg-dark);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Animations & Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .about, .takeaway, .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image::before { display: none; }
  .takeaway-image { order: -1; }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    right: 0px;
    height: 100vh;
    top: 0;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
  }
  .nav-links.active {
    transform: translateX(0%);
  }
  .hamburger {
    display: block;
    z-index: 1001;
  }
  .hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  .hero h1 { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; }
  .events-restrictions {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  section { padding: 4rem 5%; }
  .contact-buttons { flex-direction: column; }
}
