/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tipografia */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding-bottom: 60px;
}

/* Containers */
.container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.site-header {
  background: #0073e6;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.site-header select {
  margin-top: 10px;
  padding: 5px;
  border: none;
  border-radius: 5px;
}

/* Footer */
.site-footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #0099ff, #00cc99);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.search-box {
  padding: 12px;
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

/* Categorias */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  justify-content: center;
}

.category-button {
  padding: 10px 15px;
  background-color: #eee;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.category-button:hover {
  background-color: #ddd;
}

/* Lista de lojas */
.store-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.store-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease;
}

.store-card:hover {
  transform: translateY(-5px);
}

.store-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.store-card h4 {
  margin: 15px 0 5px;
  font-size: 1.1rem;
}

.store-card .rating {
  color: #f4c542;
}

.review-button {
  background-color: #0073e6;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.review-button:hover {
  background-color: #005bb5;
}

/* Estilo para imagem quadrada da loja (estilo Netflix) */
.store-image {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  margin: 20px auto;
  display: block;
}

.store-image:hover {
  transform: scale(1.03);
}

/* Botões modernos lado a lado */
.action-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.modern-btn {
  background: linear-gradient(135deg, #3a0ca3, #7209b7, #f72585);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(114, 9, 183, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.modern-btn:hover {
  background: linear-gradient(135deg, #560bad, #b5179e);
  transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 600px) {
  .store-card img {
    height: 150px;
  }

  .review-button {
    width: 100%;
  }

  .action-buttons {
    flex-direction: column;
    gap: 10px;
  }
  body {
  font-family: 'Rubik', sans-serif;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
}

.header-nav a {
  margin-left: 15px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.header-nav a:hover {
  color: #ddd;
}

.header-nav .highlight {
  background: white;
  color: #0073e6;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: bold;
  margin-left: 20px;
}

.lang-switcher select {
  padding: 4px 8px;
  border-radius: 5px;
  border: none;
}
.header-modern {
  background: linear-gradient(135deg, #004f94, #0073e6);
  background-blend-mode: overlay;
  padding: 16px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.hamburger {
  font-size: 2rem;
  color: white;
  display: none;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

.nav-modern {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-nav {
  background: transparent;
  color: white;
  font-weight: 500;
  border: 2px solid transparent;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.btn-action {
  background: white;
  color: #0073e6;
  font-weight: bold;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s;
}

.btn-action:hover {
  background: #f2f2f2;
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-modern {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: #005bb5;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 15px;
    display: none;
  }

  #menu-toggle:checked + .hamburger + .nav-modern {
    display: flex;
  }

  .btn-nav, .btn-action {
    width: 100%;
    text-align: left;
  }
}
/* Header moderno */
.header-home {
  background: linear-gradient(135deg, #003b73, #0073e6);
  background-blend-mode: overlay;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  position: relative;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo {
  height: 42px;
  width: auto;
}

.logo-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
}

#menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.header-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-btn {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.2);
}

.nav-btn.primary {
  background: white;
  color: #0073e6;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-btn.primary:hover {
  background: #f1f1f1;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

 @media (min-width: 769px) {
  .header-nav {
    display: flex !important;
    position: static !important;
    background: none !important;
    flex-direction: row !important;
    padding: 0 !important;
    width: auto !important;
  }
}


  #menu-toggle:checked + .menu-btn + .header-nav {
    display: flex;
  }

  .nav-btn {
    width: 90%;
    margin: 5px auto;
    text-align: center;
  }
}
.search-subtext {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}
.view-btn {
  display: inline-block;
  margin: 12px auto 20px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #FFD600, #FFC107);
  color: #333;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.25);
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: linear-gradient(135deg, #FFC107, #FFB300);
  transform: translateY(-2px) scale(1.03);
  color: #111;
}



}
