/* Variáveis de cores e fontes */
:root {
  --primary-color: #8B0000;
  --secondary-color: #402020;
  --accent-color: #25D366;
  --light-color: #FFF8F0;
  --dark-color: #333;
  --text-color: #444;
  --text-light: #777;
  --font-primary: 'Playwrite IN', serif;
  --font-secondary: 'Poppins', sans-serif;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Reset e estilos base */
* {
  margin: 1px;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-primary);
  color: var(--secondary-color);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #6d0000;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-whatsapp {
  background-color: var(--accent-color);
  color: white;
}

.btn-whatsapp:hover {
  background-color: #1DA851;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-whatsapp-lg {
  padding: 15px 30px;
  font-size: 1.1rem;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.divider {
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0 auto 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header.sticky {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 70px;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  width: 100%;
}

.whatsapp-link {
  background-color: var(--accent-color);
  color: white !important;
  padding: 8px 15px !important;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-link:hover {
  background-color: #1DA851;
  transform: translateY(-2px);
}

.whatsapp-link::after {
  display: none;
}

/* Menu mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: var(--dark-color);
  border-radius: 10px;
  transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 80px;
  background: linear-gradient(135deg, rgba(255,248,240,0.9) 0%, rgba(255,248,240,0.7) 100%);
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Featured Product */
.featured-product {
  padding: 80px 0;
  background-color: white;
}

.featured-product .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.product-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex: 1;
}

.product-description {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.product-highlights {
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--light-color);
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

/* Opening Hours */
.opening-hours {
  padding: 80px 0;
  background-color: white;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.day-card {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
}

.day-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.day-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.day-card p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.day-card.highlight {
  background-color: var(--primary-color);
  color: white;
}

.day-card.highlight p {
  color: white;
}

.notice {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: var(--text-light);
}

/* Location */
.location {
  padding: 80px 0;
  background-color: var(--light-color);
}

.location .container {
  display: flex;
  gap: 50px;
}

.location-info {
  flex: 1;
}

.location-map {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  margin-bottom: 20px;
}

.footer-logo p {
  opacity: 0.8;
}

.footer-links h3, .footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--light-color);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.footer-contact i {
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  opacity: 0.7;
}

/* WhatsApp Float Button */
.float-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition);
}

.float-whatsapp:hover {
  background-color: #1DA851;
  transform: translateY(-5px) scale(1.1);
}

/* Responsividade */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding-top: 100px;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .featured-product .container, .location .container {
    flex-direction: column;
  }
  
  .product-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .float-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
}