/* ===== MERCADINHO BOM DEMAIS - PROFESSIONAL DESIGN ===== */
/* Colors extracted from Instagram brand */
:root {
  --primary-blue: #1e5bb8;
  --primary-blue-light: #2563c7;
  --primary-blue-dark: #154a9a;
  --accent-yellow: #ffd200;
  --accent-yellow-dark: #f5c300;
  --accent-pink: #ff6b9d;
  --accent-orange: #ff8534;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray-dark: #2d2d2d;W
  --gray: #666666;
  --gray-light: #999999;
  --gray-lighter: #e5e5e5;
  --bg-light: #f7f9fc;
  --bg-lighter: #fafbfd;
  --shadow-sm: 0 2px 8px rgba(30, 91, 184, 0.08);
  --shadow-md: 0 4px 16px rgba(30, 91, 184, 0.12);
  --shadow-lg: 0 8px 32px rgba(30, 91, 184, 0.16);
  --shadow-xl: 0 12px 48px rgba(30, 91, 184, 0.24);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-blue-dark);
}

/* ===== HEADER - PROFESSIONAL STICKY NAVIGATION ===== */
.site-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: var(--white);
  padding: 18px 0;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--accent-yellow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
}

.brand:hover {
  transform: translateX(4px);
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  border: 3px solid rgba(255, 210, 0, 0.3);
}

.logo:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 12px 48px rgba(255, 210, 0, 0.4);
}

.brand h1 {
  font-size: 1.65rem;
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.tag {
  font-size: 0.95rem;
  opacity: 0.95;
  margin: 4px 0 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  background: rgba(255, 210, 0, 0.95);
  color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 210, 0, 0.4);
  border-color: var(--accent-yellow);
}

.social-link.secondary {
  background: rgba(255, 255, 255, 0.15);
}

/* ===== HERO SECTION - IMPACTFUL & MODERN ===== */
.hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #e3eeff 50%, #d6e7ff 100%);
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(30, 91, 184, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow-dark) 100%);
  color: var(--primary-blue);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark);
  margin: 0 0 24px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.highlight {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 50%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-lead {
  font-size: 1.3rem;
  color: var(--gray);
  margin: 0 0 40px;
  line-height: 1.7;
  font-weight: 500;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-lighter);
  transition: var(--transition);
}

.hero-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue-light);
}

.hero-stat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.hero-stat-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* ===== BUTTONS - PROFESSIONAL & ENGAGING ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(30, 91, 184, 0.4);
  color: var(--white);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffdd33 100%);
  color: var(--primary-blue);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255, 210, 0, 0.4);
  animation: pulseGlow 2s ease-in-out infinite;
}

.btn-accent:hover {
  background: linear-gradient(135deg, #ffdd33 0%, var(--accent-yellow) 100%);
  box-shadow: 0 8px 28px rgba(255, 210, 0, 0.6);
  transform: translateY(-3px) scale(1.03);
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(255, 210, 0, 0.4);
  }
  50% {
    box-shadow: 0 6px 24px rgba(255, 210, 0, 0.6);
  }
}

/* ===== OFFERS BANNER - PROMOTIONAL SECTION ===== */
.offers-banner {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffdd33 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.offers-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

.offers-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30, 91, 184, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite reverse;
}

.offers-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.offers-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--primary-blue);
  border: 3px solid rgba(255, 255, 255, 0.5);
  animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.offers-text {
  flex: 1;
  text-align: left;
}

.offers-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin: 0 0 8px;
  letter-spacing: -0.5px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.offers-text p {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin: 0;
  opacity: 0.9;
  font-weight: 500;
}

.btn-offers {
  background: var(--primary-blue);
  color: var(--white);
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(30, 91, 184, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-offers:hover {
  background: var(--primary-blue-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 91, 184, 0.5);
}

/* ===== FEATURES SECTION - MODERN CARDS ===== */
.features {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

.feature-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-lighter) 100%);
  padding: 44px 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-lighter);
  transition: var(--transition-slow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-yellow) 50%, var(--accent-pink) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue-light);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
  animation-delay: 1s;
}
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-pink));
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon::after {
  opacity: 0.3;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 14px;
  letter-spacing: -0.3px;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

/* ===== ABOUT SECTION - STATS & TRUST ===== */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
}

.section-lead {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 0 56px;
  opacity: 0.95;
  font-weight: 500;
}

.section-subtitle {
  font-size: 1.1rem;
  margin: 0 0 48px;
  opacity: 0.9;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-yellow);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-yellow);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

/* ===== PRODUCTS SECTION - SHOWCASE ===== */
.products-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.product-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-lighter) 100%);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-lighter);
  transition: var(--transition-slow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-yellow) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow-dark) 100%);
  color: var(--primary-blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--white);
}

.product-image {
  width: 120px;
  height: 120px;
  margin: 20px auto 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  border-radius: var(--radius-lg);
  border: 3px solid var(--gray-lighter);
  transition: var(--transition);
  color: var(--gray-light);
}

.product-card:hover .product-image {
  transform: scale(1.08);
  border-color: var(--primary-blue-light);
  background: linear-gradient(135deg, rgba(30, 91, 184, 0.08) 0%, rgba(255, 210, 0, 0.08) 100%);
}

.placeholder-product {
  min-height: 120px;
}

.placeholder-product svg {
  opacity: 0.4;
}

.placeholder-product p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
  letter-spacing: -0.2px;
}

.product-card > p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0 0 20px;
  font-size: 0.95rem;
}

.product-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-lighter);
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
  background: linear-gradient(135deg, rgba(30, 91, 184, 0.08) 0%, rgba(255, 210, 0, 0.08) 100%);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.product-card:hover .product-tag {
  background: linear-gradient(135deg, rgba(30, 91, 184, 0.15) 0%, rgba(255, 210, 0, 0.15) 100%);
  transform: translateX(4px);
}

.products-cta {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow-md);
}

/* ===== HOURS SECTION - BUSINESS HOURS ===== */
.hours-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  position: relative;
  overflow: hidden;
}

.hours-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hours-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 3px solid var(--gray-lighter);
}

.hours-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.hours-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}

.hours-header p {
  margin: 0;
  color: var(--gray);
  font-size: 1.05rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.hours-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-lighter);
  transition: var(--transition);
}

.hours-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue-light);
}

.hours-item .day {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hours-item .time {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: -0.2px;
}

.hours-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #fff3cd 0%, #ffe9a3 100%);
  border-left: 5px solid var(--accent-yellow);
  border-radius: var(--radius-md);
  color: #856404;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

/* ===== GALLERY SECTION - INSTAGRAM STYLE ===== */
.gallery {
  padding: 100px 0;
  background: var(--bg-light);
}

.gallery .section-title {
  text-align: center;
  color: var(--dark);
}

.gallery .section-subtitle {
  text-align: center;
  color: var(--gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.gallery-card {
  background: var(--white);
  border: 3px dashed var(--gray-lighter);
  border-radius: var(--radius-xl);
  padding: 70px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--gray-light);
  transition: var(--transition);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 91, 184, 0.05) 0%, rgba(255, 210, 0, 0.05) 100%);
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover {
  border-color: var(--primary-blue);
  border-style: solid;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-card:hover::before {
  opacity: 1;
}

.gallery-card svg {
  opacity: 0.3;
  transition: var(--transition);
}

.gallery-card:hover svg {
  opacity: 0.6;
  transform: scale(1.1);
}

.gallery-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px 28px;
  background: linear-gradient(135deg, #fff3cd 0%, #ffe9a3 100%);
  border-left: 5px solid var(--accent-yellow);
  border-radius: var(--radius-md);
  color: #856404;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* ===== CONTACT SECTION - PREMIUM CARD ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #e3eeff 100%);
}

.contact-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  padding: 70px 56px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--gray-lighter);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-yellow) 50%, var(--accent-pink) 100%);
}

.contact-card .section-title {
  text-align: center;
  color: var(--dark);
}

.contact-card .section-lead {
  text-align: center;
  margin-bottom: 48px;
  color: var(--gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-lighter);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 2px solid transparent;
}

.contact-item:hover {
  transform: translateX(8px);
  border-color: var(--primary-blue-light);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: var(--radius-md);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-item p {
  margin: 0;
  color: var(--gray);
  line-height: 1.6;
  font-size: 1.05rem;
}

.contact-cta {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid var(--gray-lighter);
}

/* ===== FOOTER - PROFESSIONAL & COMPLETE ===== */
.site-footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray-dark) 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 28px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-yellow) 50%, var(--accent-pink) 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255, 210, 0, 0.3);
}

.footer-brand p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--accent-yellow);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent-yellow);
  transform: translateX(4px);
  display: inline-block;
}

.footer-contact p {
  margin: 0 0 10px;
  font-size: 1rem;
  opacity: 0.9;
}

.footer-bottom {
  text-align: center;
  padding-top: 36px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom small {
  font-size: 0.95rem;
  opacity: 0.75;
  font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .brand {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    width: 72px;
    height: 72px;
  }

  .brand h1 {
    font-size: 1.4rem;
  }

  .tag {
    font-size: 0.9rem;
  }

  .social {
    flex-direction: column;
    width: 100%;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 70px 0 80px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: 1.1rem;
  }

  .cta-row {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .offers-banner {
    padding: 36px 0;
  }

  .offers-content {
    flex-direction: column;
    text-align: center;
  }

  .offers-icon {
    width: 64px;
    height: 64px;
  }

  .offers-text {
    text-align: center;
  }

  .offers-text h2 {
    font-size: 1.6rem;
  }

  .offers-text p {
    font-size: 1rem;
  }

  .btn-offers {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .features,
  .about-section,
  .products-section,
  .gallery,
  .contact {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .features-grid,
  .products-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 48px 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== UTILITY & ANIMATIONS ===== */
code {
  background: rgba(30, 91, 184, 0.08);
  padding: 3px 8px;
  border-radius: 5px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: var(--primary-blue);
  font-weight: 600;
}

::selection {
  background: var(--accent-yellow);
  color: var(--primary-blue);
}
