/* ============================================
   Casa do Poceiro - Main Stylesheet
   ============================================ */

/* ----- 1. Reset & Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3d4f5f;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #1a3a5c;
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

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

/* ----- 3. Construction Banner ----- */
.construction-banner {
  background: linear-gradient(90deg, #e8a024, #f0c040, #e8a024);
  background-size: 200% 100%;
  animation: bannerGradient 3s ease infinite;
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  z-index: 1001;
}

.construction-banner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.construction-banner .pulse-icon {
  display: inline-block;
  animation: pulseIcon 1.5s ease-in-out infinite;
}

@keyframes bannerGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.7; }
}

/* ----- 4. Top Bar ----- */
.top-bar {
  background: #0f2440;
  color: #d1d9e6;
  font-size: 0.8rem;
  padding: 8px 0;
}

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

.top-bar__info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__info span,
.top-bar__info a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d1d9e6;
  transition: color 0.3s ease;
}

.top-bar__info a:hover {
  color: #e8a024;
}

.top-bar__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.top-bar__social a:hover {
  opacity: 0.8;
}

/* Top bar SVGs: 16px, white fill, no stroke */
.top-bar__social a svg {
  width: 16px !important;
  height: 16px !important;
  fill: #ffffff !important;
  stroke: none !important;
}

/* ----- 5. Header ----- */
.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header__logo img {
  height: 55px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #3d4f5f;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e8a024;
  transition: width 0.3s ease;
}

.header__nav a:hover,
.header__nav a.active {
  color: #1a3a5c;
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a3a5c;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- 6. Hero ----- */
.hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  color: #ffffff;
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 32px;
}

.hero__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__badges .badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ----- 7. Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.4;
}

.btn--primary {
  background: #e8a024;
  color: #ffffff;
  border-color: #e8a024;
}

.btn--primary:hover {
  background: #d4901a;
  border-color: #d4901a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 160, 36, 0.4);
}

.btn--whatsapp {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.btn--whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn--outline:hover {
  background: #ffffff;
  color: #1a3a5c;
  transform: translateY(-2px);
}

.btn--dark {
  background: #1a3a5c;
  color: #ffffff;
  border-color: #1a3a5c;
}

.btn--dark:hover {
  background: #2a5a8c;
  border-color: #2a5a8c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.4);
}

/* ----- 8. Sections ----- */
.section {
  padding: 80px 0;
}

.section--gray {
  background: #f5f7fa;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__header h2 {
  margin-bottom: 12px;
}

.section__header p {
  color: #6b7a8d;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ----- 9. Category Cards ----- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.category-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.category-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.3s ease;
}

/* Category card SVGs: 32px, primary stroke, no fill */
.category-card__icon svg {
  width: 32px !important;
  height: 32px !important;
  stroke: #1a3a5c !important;
  fill: none !important;
  stroke-width: 1.8;
  transition: stroke 0.3s ease;
}

.category-card:hover .category-card__icon {
  background: #e8a024;
}

.category-card:hover .category-card__icon svg {
  stroke: #ffffff !important;
}

.category-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a3a5c;
}

/* ----- 10. Product Cards ----- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-card__image {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fa;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  display: inline-block;
  background: #f5f7fa;
  color: #2a5a8c;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #1a3a5c;
}

.product-card__description {
  font-size: 0.9rem;
  color: #6b7a8d;
  flex: 1;
  margin-bottom: 16px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #e8ecf1;
}

.product-card__footer .btn {
  font-size: 0.85rem;
  padding: 8px 18px;
}

/* ----- 11. Image Placeholder ----- */
.img-placeholder {
  background: #f5f7fa;
  border: 2px dashed #d1d9e6;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  min-height: 200px;
  color: #6b7a8d;
  font-size: 0.85rem;
}

/* Image placeholder SVGs: 40px, opacity, stroke only */
.img-placeholder svg {
  width: 40px !important;
  height: 40px !important;
  opacity: 0.4;
  stroke: currentColor !important;
  fill: none !important;
}

/* ----- 12. Differentials ----- */
.differentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.differential {
  text-align: center;
  padding: 24px 16px;
}

.differential__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1;
}

.differential__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 8px;
}

.differential__text {
  font-size: 0.9rem;
  color: #6b7a8d;
}

/* ----- 13. Brands ----- */
.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.brands__item {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a3a5c;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-width: 180px;
}

.brands__item:hover {
  border-color: #e8a024;
  box-shadow: 0 4px 16px rgba(232, 160, 36, 0.15);
}

.brands__item::after {
  content: 'Parceiro oficial';
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: #6b7a8d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ----- 14. About Grid ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 16px;
}

.about-content p {
  color: #6b7a8d;
  font-size: 1rem;
  line-height: 1.8;
}

.about-image {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fa;
  padding: 40px;
}

.about-image img {
  max-height: 100%;
  object-fit: contain;
}

/* ----- 15. About Values ----- */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.about-value {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.about-value__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.about-value__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 8px;
}

.about-value__text {
  font-size: 0.9rem;
  color: #6b7a8d;
}

/* ----- 16. Blog Grid ----- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card__image {
  height: 200px;
  background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.85rem;
  opacity: 0.8;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__date {
  font-size: 0.8rem;
  color: #6b7a8d;
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1.15rem;
  color: #1a3a5c;
  margin-bottom: 8px;
  font-weight: 600;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: #6b7a8d;
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e8a024;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.blog-card__link:hover {
  gap: 8px;
  color: #d4901a;
}

/* ----- 17. Article ----- */
.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.article h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.article h2 {
  font-size: 1.6rem;
  margin-top: 32px;
  margin-bottom: 16px;
}

.article h3 {
  font-size: 1.3rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.article p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3d4f5f;
  margin-bottom: 16px;
}

.article ul,
.article ol {
  padding-left: 24px;
  margin-bottom: 16px;
  list-style: disc;
}

.article ol {
  list-style: decimal;
}

.article li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.article blockquote {
  border-left: 4px solid #e8a024;
  padding: 16px 24px;
  margin: 24px 0;
  background: #f5f7fa;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #6b7a8d;
}

.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}

.article table th,
.article table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e8ecf1;
}

.article table th {
  background: #f5f7fa;
  font-weight: 600;
  color: #1a3a5c;
}

.article table tr:hover td {
  background: #f5f7fa;
}

.article img {
  border-radius: 8px;
  margin: 24px 0;
}

.article a {
  color: #2a5a8c;
  text-decoration: underline;
}

.article a:hover {
  color: #e8a024;
}

/* ----- 18. CTA Section ----- */
.cta {
  background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta p {
  opacity: 0.9;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ----- 19. Store Coming ----- */
.store-coming {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f2440 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.store-coming h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.store-coming p {
  color: #d1d9e6;
  max-width: 600px;
  margin: 0 auto 32px;
}

.store-coming__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.store-coming__item {
  border: 1px solid #e8a024;
  border-radius: 12px;
  padding: 24px 32px;
  min-width: 200px;
}

.store-coming__item h4 {
  color: #e8a024;
  margin-bottom: 4px;
}

.store-coming__item p {
  color: #d1d9e6;
  font-size: 0.9rem;
  margin: 0;
}

/* ----- 20. Store Hero ----- */
.store-hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 50%, #1a3a5c 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.store-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 160, 36, 0.1) 0%, transparent 60%);
  animation: storeGlow 6s ease-in-out infinite;
}

@keyframes storeGlow {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(5%, 5%); }
}

.store-hero h1 {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.store-hero p {
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

/* ----- 21. Store Features ----- */
.store-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.store-feature {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.store-feature:hover {
  transform: translateY(-4px);
}

.store-feature__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Store feature SVGs: 32px, primary stroke, no fill */
.store-feature__icon svg {
  width: 32px !important;
  height: 32px !important;
  stroke: #1a3a5c !important;
  fill: none !important;
  stroke-width: 1.8;
}

.store-feature__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 8px;
}

.store-feature__text {
  font-size: 0.9rem;
  color: #6b7a8d;
}

/* ----- 22. Store Countdown ----- */
.store-countdown {
  background: #e8a024;
  color: #1a1a2e;
  text-align: center;
  padding: 48px 20px;
}

.store-countdown h3 {
  color: #1a1a2e;
  margin-bottom: 12px;
}

.store-countdown p {
  color: #3d4f5f;
  font-size: 1rem;
}

.store-countdown__timer {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.store-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.store-countdown__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1;
}

.store-countdown__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3d4f5f;
  margin-top: 4px;
}

/* ----- 23. Contact ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form h3 {
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a3a5c;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d9e6;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #3d4f5f;
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #2a5a8c;
  box-shadow: 0 0 0 3px rgba(42, 90, 140, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 32px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-info__details h4 {
  font-size: 1rem;
  color: #1a3a5c;
  margin-bottom: 4px;
}

.contact-info__details p {
  font-size: 0.9rem;
  color: #6b7a8d;
  margin: 0;
}

.contact-info__details a {
  color: #2a5a8c;
  transition: color 0.3s ease;
}

.contact-info__details a:hover {
  color: #e8a024;
}

/* ----- 24. Map ----- */
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ----- 25. Breadcrumb ----- */
.breadcrumb {
  background: #f5f7fa;
  padding: 14px 0;
  font-size: 0.85rem;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #6b7a8d;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #e8a024;
}

.breadcrumb span {
  color: #6b7a8d;
}

.breadcrumb .current {
  color: #1a3a5c;
  font-weight: 500;
}

/* ----- 26. FAQ ----- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e8ecf1;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: #2a5a8c;
}

.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  color: #1a3a5c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: background 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #6b7a8d;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: #f5f7fa;
}

.faq-item__answer {
  padding: 0 24px 18px;
  color: #6b7a8d;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ----- 27. Footer ----- */
.footer {
  background: #1a1a2e;
  color: #d1d9e6;
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}

.footer__col h4 {
  color: #e8a024;
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__col p {
  font-size: 0.9rem;
  color: #d1d9e6;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: #d1d9e6;
  padding: 4px 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer__col a:hover {
  color: #e8a024;
  padding-left: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7a8d;
}

/* ----- 28. WhatsApp Float ----- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* WhatsApp float SVG: 32px, white fill, no stroke */
.whatsapp-float svg {
  width: 32px !important;
  height: 32px !important;
  fill: #ffffff !important;
  stroke: none !important;
}

/* ----- 29. Responsive ----- */

/* Tablet - 992px */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e8ecf1;
  }

  .header__nav.active {
    display: flex;
  }

  .hero {
    padding: 48px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 48px 0;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 280px;
  }

  .store-features {
    grid-template-columns: 1fr;
  }

  .differentials {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .brands {
    gap: 16px;
  }

  .brands__item {
    min-width: 140px;
    padding: 16px 20px;
  }

  .cta {
    padding: 48px 20px;
  }

  h2 {
    font-size: 1.6rem;
  }
}

/* Small mobile - 480px */
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .differentials {
    grid-template-columns: 1fr;
  }

  .hero__badges {
    gap: 8px;
  }

  .hero__badges .badge {
    font-size: 0.75rem;
    padding: 4px 12px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .store-countdown__timer {
    gap: 16px;
  }

  .store-countdown__number {
    font-size: 1.8rem;
  }
}

/* ----- 30. Utilities ----- */
.text-center {
  text-align: center;
}

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
