/* Reset e configurações base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header */
.header {
  background: linear-gradient(135deg, #000 0%, #111 100%);
  padding: 1rem 0;
  border-bottom: 3px solid #FFD700;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #FFD700;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}

.brand-name {
  color: #FFD700;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact-info .phone-link {
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid #FFD700;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.contact-info .phone-link:hover {
  background: #FFD700;
  color: #000;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.features-list {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  border-left: 3px solid #FFD700;
}

.feature-icon {
  font-size: 1.5rem;
  min-width: 30px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  align-items: center;
}

.btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 2.5rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  min-width: 280px;
}

.btn-primary {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.btn-secondary:hover {
  background: #FFD700;
  color: #000;
}

.btn-text {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.btn-subtext {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-image {
  text-align: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.05);
}

/* Banner Section */
.banner-section {
  padding: 3rem 0;
  background: #111;
}

.banner-content {
  text-align: center;
}

.banner-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Products Section */
.products-section {
  padding: 4rem 0;
  background: #000;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: linear-gradient(135deg, #111 0%, #181818 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: #FFD700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

/* Estilos de imagem removidos - não usamos mais imagens nas categorias */

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 1rem;
  text-align: center;
}

.product-description {
  color: #fff;
  text-align: center;
  line-height: 1.6;
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #111 0%, #000 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.stars {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Estilos de avatar removidos - não usamos mais imagens nos depoimentos */

.author-name {
  color: #FFD700;
  font-weight: 700;
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background: #000;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.about-description {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Location Section */
.location-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #111 0%, #000 100%);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
  border: 3px solid #FFD700;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #000 0%, #111 100%);
  padding: 3rem 0 2rem 0;
  border-top: 3px solid #FFD700;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #FFD700;
}

.footer-logo h4 {
  color: #FFD700;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-contact p {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-contact strong {
  color: #FFD700;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-bottom p {
  color: #FFD700;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .cta-buttons {
    max-width: 100%;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .brand-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
  }
  
  .btn-text {
    font-size: 1rem;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Efeitos de hover adicionais */
.feature-item:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateX(5px);
}

/* Efeito hover de imagem removido - não usamos mais imagens nas categorias */

/* Efeito hover de avatar removido - não usamos mais imagens nos depoimentos */

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Novos estilos para a página SEO */

/* Navegação */
.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #FFD700;
}

/* Seções específicas */
.section-description {
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

/* Seção de Entrega */
.delivery-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #111 0%, #000 100%);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.delivery-card {
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.delivery-card:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.delivery-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.delivery-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 1rem;
}

.delivery-description {
  color: #fff;
  line-height: 1.6;
  opacity: 0.9;
}

/* Seção de Informações da Localização */
.location-info-section {
  padding: 4rem 0;
  background: #000;
}

.location-description {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Seção de Informações da Loja */
.shop-info-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #111 0%, #000 100%);
}

.shop-description {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.neighborhoods-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.neighborhood-item {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.neighborhood-item:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

/* Seção de Contato */
.contact-section {
  padding: 4rem 0;
  background: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info-card {
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border-radius: 15px;
  padding: 2rem;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: #FFD700;
  transform: translateY(-5px);
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 1rem;
}

.contact-item {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-item strong {
  color: #FFD700;
}

.differentials {
  margin-top: 3rem;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.differential-item {
  color: #fff;
  padding: 0.8rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  border-left: 3px solid #FFD700;
}

/* Seção de Privacidade */
.privacy-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #111 0%, #000 100%);
}

.privacy-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.privacy-card {
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.privacy-card:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.privacy-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.privacy-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 1rem;
}

.privacy-description {
  color: #fff;
  line-height: 1.6;
  opacity: 0.9;
}

/* Footer atualizado */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links h5 {
  color: #FFD700;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FFD700;
}

/* Responsive para navegação */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .header .container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .delivery-grid,
  .contact-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }
  
  .neighborhoods-list {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .differentials-grid {
    grid-template-columns: 1fr;
  }
}
