/* 1. VARIÁVEIS DE CORES */
:root {
  --bg-cream: #F9F7F2; 
  --coffee-dark: #4A3B32; 
  --coffee-light: #8D7B68; 
  --gold-accent: #C8B273; 
  --white: #FFFFFF;
}

/* 2. RESET BÁSICO */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--bg-cream);
  color: var(--coffee-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .subtitle {
  font-family: 'Cormorant Garamond', serif;
}

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

/* 3. NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: var(--bg-cream);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(74, 59, 50, 0.1);
}

.logo { font-size: 2rem; font-weight: 600; color: var(--coffee-dark); }
.logo span { color: var(--gold-accent); font-style: italic; }

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { 
  text-decoration: none; color: var(--coffee-dark); 
  font-size: 0.9rem; text-transform: uppercase; 
  letter-spacing: 1px; transition: 0.3s; 
}
.nav-links a:hover { color: var(--gold-accent); }

/* 4. HERO SECTION */
.hero {
  height: 85vh;
  background: linear-gradient(rgba(249,247,242,0.7), rgba(249,247,242,0.5)), 
              url('../imagens/Coffee Time!.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; font-weight: 400; }
.subtitle { display: block; font-size: 1.1rem; color: var(--coffee-light); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }

.btn-elegant {
  padding: 15px 40px;
  border: 1px solid var(--coffee-dark);
  color: var(--coffee-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  transition: 0.4s;
  display: inline-block;
}
.btn-elegant:hover { background: var(--coffee-dark); color: var(--white); }

/* 5. FEATURES */
#features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  padding: 80px 8%;
  background: var(--white);
}
.feature-box { text-align: center; width: 250px; }
.feature-box i { font-size: 2rem; color: var(--gold-accent); margin-bottom: 15px; }

/* 6. MENU SECTION (Ajustado para não espremer) */
.menu-section { padding: 80px 8%; }
.section-title { text-align: center; font-size: 3rem; margin-bottom: 50px; font-weight: 400; color: var(--coffee-dark); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.menu-item { border-bottom: 1px solid rgba(74, 59, 50, 0.1); padding-bottom: 15px; }
.item-header { display: flex; justify-content: space-between; align-items: baseline; }
.price { font-weight: bold; color: var(--coffee-light); }
.description { font-style: italic; color: var(--coffee-light); font-size: 0.9rem; margin-top: 5px; }

/* 7. LOCALIZAÇÃO */
.location-section { padding: 80px 0; background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.map-container { 
  border-radius: 10px; overflow: hidden; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.location-info i { color: var(--gold-accent); margin-right: 10px; width: 20px; }
.location-info h3 { font-size: 2.2rem; margin-bottom: 20px; }
.location-info p { margin-bottom: 15px; font-size: 1.1rem; }

/* 8. FOOTER & REDES SOCIAIS GIGANTES */
footer {
  background: var(--coffee-dark);
  color: var(--bg-cream);
  padding: 80px 8% 40px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}
.col { flex: 1; min-width: 250px; }
.col h3 { font-size: 1.6rem; margin-bottom: 20px; color: var(--gold-accent); }

/* Ícones de Redes Sociais */
.social-links {
  display: flex;
  gap: 25px;
  margin-top: 15px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px; /* Círculo maior */
  height: 70px; 
  background: rgba(255,255,255,0.05);
  color: var(--bg-cream);
  border-radius: 50%;
  font-size: 2.2rem; /* Ícone grande */
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-icon:hover {
  background: var(--gold-accent);
  color: var(--coffee-dark);
  transform: scale(1.15) translateY(-5px);
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* 9. MOBILE */
.menu-icon { display: none; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-icon { display: block; }
  .location-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
  .social-icon { width: 60px; height: 60px; font-size: 1.8rem; }
}