/* Estilos gerais para o site do Mandarim Supermercados */

:root {
  --primary-color: #dc3545;
  --primary-gradient: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  --secondary-color: #007bff;
  --secondary-gradient: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  --accent-color: #28a745;
  --accent-gradient: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  --light-color: #F1FAEE;
  --background-light: #f8fafc;
  --dark-color: #333333;
  --text-color: #333333;
  --text-light: #6c757d;
  --border-color: #e2e8f0;
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  scroll-behavior: smooth;
}

::selection {
  background: var(--primary-color);
  color: white;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-light);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 60px;
}

/* Navegação */
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li {
  margin-left: 0;
}

nav ul li a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

/* Menu Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: 1px;
}

.mobile-menu-toggle.active span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-toggle.active span:third-child {
  transform: rotate(-45deg);
}

nav ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition);
  transform: translateX(-50%);
}

nav ul li a:hover::before,
nav ul li a.active::before {
  width: 80%;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
  background: rgba(220, 53, 69, 0.05);
}

/* Seção principal */
.main-content {
  margin-top: 90px;
  padding: 0;
}

/* Banner */
.banner {
  position: relative;
  height: auto;
  min-height: 500px;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  margin-bottom: 40px;
}

.banner::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
  background-size: cover;
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.banner h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out;
}

.banner-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 300;
}

.banner-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.banner-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.banner-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.banner-feature i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #FFD700;
}

.banner-feature span {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.banner-description {
  font-size: 1.1rem;
  margin: 2rem 0;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.banner p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2.5rem;
  font-weight: 400;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: slideInUp 1s ease-out 0.2s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Seções */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

/* Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-heavy);
}

.card:hover::before {
  left: 100%;
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.card-text {
  color: var(--dark-color);
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-medium);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--accent-gradient);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
}

/* Formulários */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--secondary-color);
}

.form-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-color);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a202c 100%);
  color: white;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::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 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.03"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23b)"/><circle cx="900" cy="200" r="120" fill="url(%23b)"/><circle cx="300" cy="800" r="100" fill="url(%23b)"/></svg>') no-repeat center center;
  background-size: cover;
  opacity: 0.5;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: var(--light-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-column ul li:hover {
  transform: translateX(5px);
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-heavy);
  }

  .app-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    justify-content: center;
  }

  .app-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .app-store-image {
    height: 100px;
    width: auto;
    transition: var(--transition);
  }

  .app-button:hover .app-store-image {
    transform: scale(1.5);
  }

  /* Estilos para a seção de download do app no banner */
  .app-download-banner {
    margin-top: 30px;
    text-align: center;
  }

  .app-download-banner h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  @media (max-width: 768px) {
    .app-buttons {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    
    .app-button {
      min-width: 180px;
    }
    
    .app-store-image {
      height: 50px;
    }
  }

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin: 0;
}

/* Animações de entrada */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Efeito de loading */
.loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-gradient);
  z-index: 9999;
  transition: width 0.3s ease;
}

/* Scroll indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--primary-gradient);
  z-index: 9998;
  transition: width 0.1s ease;
}

/* Estilos específicos para elementos modernos */
.banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.card-icon i {
  font-size: 2rem;
  color: white;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-light);
}

.stat-icon i {
  font-size: 1.5rem;
  color: white;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  color: var(--secondary-color);
  font-weight: 500;
  margin: 0;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

/* Estilos gerais para seções */
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.section-subtitle .btn {
  margin-left: 10px;
  padding: 8px 16px;
  font-size: 0.9rem;
}

.loading-placeholder {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
  font-style: italic;
}

/* Estilos para ofertas do clube */
.club-offers-section {
  padding: 60px 0;
  background: var(--background-light);
}

#club-offers, #club-offers-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.store-selector {
  text-align: center;
  margin: 30px 0;
}

.store-selector label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--text-color);
}

.store-selector select {
  padding: 10px 15px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  background: white;
  color: var(--text-color);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.store-selector select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.offer-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.offer-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
}

.offer-card h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--text-color);
  line-height: 1.3;
}

.price-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 0.9rem;
}

.new-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.discount {
  background: var(--accent-color);
  color: white;
  padding: 4px 8px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: bold;
}

/* Estilos para campanhas */
.campaigns-section {
  padding: 60px 0;
}

#campaigns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.campaign-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.campaign-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.campaign-info {
  padding: 20px;
}

.campaign-info h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.campaign-info p {
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.campaign-period {
  color: var(--primary-color) !important;
  font-weight: bold;
}

.campaign-stores {
  color: var(--secondary-color) !important;
  font-weight: bold;
}

/* Responsividade */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  #club-offers {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #campaigns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    justify-content: space-between;
    padding: 1rem;
    min-height: 70px;
  }
  
  /* Melhorias de tipografia para mobile */
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
  }
  
  /* Melhorias para formulários */
  input, textarea, select {
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Melhorias para botões */
  .btn, button {
    min-height: 44px;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  /* Espaçamento melhorado para listas */
  ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  li {
     margin-bottom: 0.5rem;
   }
   
   /* Melhorias para tabelas responsivas */
   table {
     width: 100%;
     border-collapse: collapse;
     margin-bottom: 1.5rem;
     font-size: 14px;
   }
   
   th, td {
     padding: 8px 12px;
     text-align: left;
     border-bottom: 1px solid #ddd;
   }
   
   th {
     background-color: #f8f9fa;
     font-weight: 600;
   }
   
   /* Melhorias para imagens responsivas */
   img {
     max-width: 100%;
     height: auto;
     border-radius: 8px;
   }
   
   /* Melhorias para containers de conteúdo */
   .content-wrapper {
     padding: 0 1rem;
     margin: 0 auto;
   }
   
   /* Melhorias para espaçamento entre seções */
   .section + .section {
     margin-top: 2rem;
   }
   
   /* Responsividade para banner melhorado */
   .banner {
     height: auto;
     min-height: 450px;
     padding: 60px 0 50px;
   }
   
   .banner-subtitle {
     font-size: 1.2rem;
   }
   
   .banner-features {
     grid-template-columns: repeat(2, 1fr);
     gap: 1rem;
     margin: 1.5rem 0;
   }
   
   .banner-feature {
     padding: 0.8rem;
   }
   
   .banner-feature i {
     font-size: 1.5rem;
   }
   
   .banner-feature span {
     font-size: 0.8rem;
   }
   
   .banner-description {
     font-size: 1rem;
     margin: 1.5rem 0;
   }
   
   .banner-actions {
     flex-direction: column;
     align-items: center;
     gap: 0.8rem;
   }
   
   .banner-actions .btn {
     width: 100%;
     max-width: 280px;
   }
   
   .mobile-menu-toggle {
     display: flex;
   }
  
  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin: 0;
  }
  
  nav ul li a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    display: block;
    border-radius: 12px;
    background: rgba(0, 123, 255, 0.05);
  }
  
  .banner {
    height: auto;
    min-height: 400px;
    padding: 40px 1rem 30px;
  }
  
  .banner-features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .banner-feature {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 0.6rem;
  }
  
  .banner-feature i {
    font-size: 1.2rem;
    margin-bottom: 0;
    margin-right: 0.8rem;
  }
  
  .banner h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .banner p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .banner-content {
    padding: 0 1rem;
  }
  
  .cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .card-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  #club-offers {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .offer-card {
    padding: 1rem;
  }
  
  .offer-card h3 {
    font-size: 1.1rem;
  }
  
  .offer-card .price {
    font-size: 1.3rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .main-content {
    margin-top: 90px;
  }
  
  .section {
    padding: 30px 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .section-title p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .logo img {
    height: 50px;
  }
  
  .mobile-menu-toggle {
    width: 25px;
    height: 25px;
  }
  
  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
  }
  
  nav ul {
    gap: 1.5rem;
  }
  
  nav ul li a {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }
  
  .banner {
    height: auto;
    min-height: 350px;
    padding: 30px 1rem 25px;
  }
  
  .banner h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .banner p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }
  
  .section {
    padding: 20px 0;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .card {
    padding: 1.2rem;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    max-width: 250px;
  }
  
  .main-content {
    margin-top: 80px;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Banner 30 Anos na Página Inicial */
.anniversary-banner-home {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 50%, #a71e2a 100%);
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.anniversary-banner-home::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="confetti" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23confetti)"/></svg>');
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.anniversary-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.anniversary-text {
  flex: 1;
  max-width: 700px;
}

.anniversary-title-home {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.anniversary-subtitle-home {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.anniversary-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
}

.anniversary-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.btn-anniversary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #333;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-anniversary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.btn-anniversary:hover::before {
  left: 100%;
}

.btn-anniversary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}

.anniversary-highlight {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  animation: glow 2s ease-in-out infinite alternate;
}

.anniversary-visual {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.car-icon {
  font-size: 8rem;
  color: #ffd700;
  margin-bottom: 20px;
  animation: bounce 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.car-image {
  width: 30rem;
  height: auto;
  color: #ffd700;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.celebration-elements {
  display: flex;
  gap: 15px;
  font-size: 2rem;
}

.confetti {
  animation: confetti-fall 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.confetti:nth-child(1) { --delay: 0s; }
.confetti:nth-child(2) { --delay: 1s; }
.confetti:nth-child(3) { --delay: 2s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

@keyframes confetti-fall {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

@keyframes glow {
  from { box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
  to { box-shadow: 0 0 20px rgba(255, 255, 255, 0.6); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Responsividade do Banner 30 Anos */
@media (max-width: 768px) {
  .anniversary-banner-home {
    padding: 40px 0;
  }
  
  .anniversary-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .anniversary-title-home {
    font-size: 2.2rem;
  }
  
  .anniversary-subtitle-home {
    font-size: 1.2rem;
  }
  
  .anniversary-description {
    font-size: 1rem;
  }
  
  .anniversary-actions {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-anniversary {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .anniversary-visual {
    flex: none;
  }
  
  .car-icon {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  .anniversary-title-home {
    font-size: 1.8rem;
  }
  
  .anniversary-subtitle-home {
    font-size: 1.1rem;
  }
  
  .btn-anniversary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .car-icon {
    font-size: 4rem;
  }
  
  .celebration-elements {
    font-size: 1.5rem;
  }
}