/** Shopify CDN: Minification failed

Line 1111:12 Expected identifier but found whitespace
Line 1111:14 Unexpected "{"
Line 1111:23 Expected ":"
Line 1111:50 Unexpected "0"
Line 1111:53 Unexpected "{"
Line 1111:62 Expected ":"
Line 1111:91 Expected ":"
Line 1112:21 Expected identifier but found whitespace
Line 1112:23 Unexpected "{"
Line 1112:32 Expected ":"
... and 13 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Reset */
* {
  box-sizing: border-box;
}

/* Container Principal */
.elisa-footer {
  background: #FAF9F6;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.elisa-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== SEÇÃO SUPERIOR - MENUS HORIZONTAIS ===== */
.elisa-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: start;
  padding: 48px 0 32px;
  border-bottom: 1px solid #E5E5E5;
}

.elisa-footer__logo img {
  height: 32px;
  width: auto;
  display: block;
}

.elisa-footer__logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.elisa-footer__menus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 32px;
}

.elisa-footer__menu-col {
  min-width: 0;
}

.elisa-footer__menu-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #666;
  margin: 0 0 12px 0;
  white-space: nowrap;
}

.elisa-footer__menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.elisa-footer__menu-list a {
  font-family: 'PowerGroteskVariable', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.elisa-footer__menu-list a:hover {
  opacity: 0.6;
}

.elisa-footer__social {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.elisa-footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 4px;
  color: #fff;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.elisa-footer__social a:hover {
  opacity: 0.8;
}

.elisa-footer__social svg {
  flex-shrink: 0;
}

/* ===== SEÇÃO DO MEIO ===== */
.elisa-footer__middle {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
}

.elisa-footer__tagline {
  font-family: 'PowerGroteskVariable', sans-serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  color: #000;
}

.elisa-footer__middle-center {
  display: flex;
  justify-content: center;
}

.elisa-footer__newsletter-btn {
  font-family: 'PowerGroteskVariable', sans-serif;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  border: 2px solid #000;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.elisa-footer__newsletter-btn:hover {
  font-family: 'PowerGroteskVariable', sans-serif;
  background: #000;
  color: #fff;
}

.elisa-footer__middle-right {
  display: flex;
  justify-content: flex-end;
}

.elisa-footer__reviews {
  text-align: right;
}

.elisa-footer__reviews-logo {
  height: 24px;
  margin-bottom: 8px;
}

.elisa-footer__reviews-text {
  font-size: 13px;
  color: #000;
  margin-bottom: 4px;
}

.elisa-footer__reviews-stars {
  font-size: 18px;
  color: #FFD700;
  letter-spacing: 2px;
}

/* ===== SEÇÃO INFERIOR ===== */
.elisa-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
}

.elisa-footer__copyright,
.elisa-footer__address {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.elisa-footer__address {
  margin-top: 4px;
}

.elisa-footer__bottom-center {
  display: flex;
  justify-content: center;
}

.elisa-footer__policies {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
}

.elisa-footer__policies a {
  font-size: 12px;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.elisa-footer__policies a:hover {
  opacity: 0.6;
}

.elisa-footer__bottom-right {
  display: flex;
  justify-content: flex-end;
}

.elisa-footer__payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.elisa-footer__payments svg {
  height: 24px;
  width: auto;
}

/* ===== MODAL DE NEWSLETTER ===== */
.newsletter-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.newsletter-modal.active {
  opacity: 1;
  visibility: visible;
}

.newsletter-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.newsletter-modal__content {
  position: relative;
  background: white;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1;
  animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.newsletter-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

.newsletter-modal__close:hover {
  background: white;
}

.newsletter-modal__close svg {
  color: #000;
}

.newsletter-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.newsletter-modal__image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #A8E6CF 0%, #B39DDB 100%);
}

.newsletter-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-modal__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #A8E6CF 0%, #B39DDB 100%);
}

.newsletter-modal__form-wrapper {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-modal__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin: 0 0 16px 0;
}

.newsletter-modal__description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 32px 0;
}

.newsletter-modal__form {
  display: flex;
  flex-direction: column;
}

.newsletter-modal__input {
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  border: 2px solid #E5E5E5;
  border-radius: 4px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
  background: #F5F5F5;
}

.newsletter-modal__input:focus {
  outline: none;
  border-color: #000;
  background: white;
}

.newsletter-modal__submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  background: #000;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.newsletter-modal__submit:hover {
  opacity: 0.85;
}

.newsletter-modal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.spinner {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.newsletter-modal__privacy {
  font-size: 11px;
  line-height: 1.5;
  color: #999;
  margin: 16px 0 0 0;
  text-align: center;
}

.newsletter-modal__privacy a {
  color: #000;
  text-decoration: underline;
}

.newsletter-modal__success {
  text-align: center;
  padding: 32px 0;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.newsletter-modal__success-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.newsletter-modal__success-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0 0 32px 0;
  line-height: 1.5;
}

.newsletter-modal__discount-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 24px;
  background: #F5F5F5;
  border-radius: 8px;
  margin-bottom: 24px;
}

#discount-code-text {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #000;
}

.newsletter-modal__copy-btn {
  padding: 12px 24px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  min-width: 100px;
}

.newsletter-modal__copy-btn:hover {
  opacity: 0.85;
}

.newsletter-modal__shop-btn {
  width: 100%;
  padding: 16px 32px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.newsletter-modal__shop-btn:hover {
  opacity: 0.85;
}

.newsletter-modal__error {
  padding: 12px;
  background: #fee;
  color: #c00;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

/* ===== RESPONSIVO - TABLET ===== */
@media (max-width: 1024px) {
  .elisa-footer__container {
    padding: 0 24px;
  }
  
  .elisa-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .elisa-footer__logo {
    display: flex;
    justify-content: center;
  }
  
  .elisa-footer__menus {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .elisa-footer__social {
    justify-content: center;
  }
  
  .elisa-footer__middle {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  
  .elisa-footer__middle-right {
    justify-content: center;
  }
  
  .elisa-footer__reviews {
    text-align: center;
  }
  
  .elisa-footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .elisa-footer__bottom-center,
  .elisa-footer__bottom-right {
    justify-content: center;
  }
  
  .elisa-footer__policies {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .elisa-footer__payments {
    justify-content: center;
  }
  
  .newsletter-modal__body {
    grid-template-columns: 1fr;
  }
  
  .newsletter-modal__image {
    min-height: 250px;
    max-height: 250px;
  }
  
  .newsletter-modal__form-wrapper {
    padding: 32px 24px;
  }
  
  .newsletter-modal__title {
    font-size: 26px;
  }
}

/* ===== RESPONSIVO - MOBILE ===== */
@media (max-width: 767px) {
  .elisa-footer__container {
    padding: 0 20px;
  }
  
  .elisa-footer__top {
    padding: 32px 0 24px;
  }
  
  .elisa-footer__menus {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .elisa-footer__menu-title {
    font-size: 10px;
    margin-bottom: 10px;
  }
  
  .elisa-footer__menu-list a {
    font-size: 12px;
  }
  
  .elisa-footer__tagline {
    font-family: 'PowerGroteskVariable', sans-serif;
    font-size: 18px;
  }
  
  .elisa-footer__newsletter-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .elisa-footer__middle,
  .elisa-footer__bottom {
    padding: 24px 0;
  }
  
  .newsletter-modal__content {
    width: 95%;
    max-height: 95vh;
  }
  
  .newsletter-modal__image {
    min-height: 200px;
    max-height: 200px;
  }
  
  .newsletter-modal__form-wrapper {
    padding: 24px 20px;
  }
  
  .newsletter-modal__title {
    font-size: 24px;
  }
  
  .newsletter-modal__description {
    font-size: 14px;
  }
  
  #discount-code-text {
    font-size: 24px;
  }
  
  .newsletter-modal__discount-code {
    flex-direction: column;
    gap: 12px;
  }
  
  .newsletter-modal__copy-btn {
    width: 100%;
  }
}
.stores-experience {
    padding: 80px 0;
    background-color: #f9f7f3;
  }
  
  .stores-experience__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .stores-experience__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
  }
  
  .stores-experience__text {
    max-width: 600px;
  }
  
  .stores-experience__subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6B4423;
    margin-bottom: 16px;
    font-weight: 600;
  }
  
  .stores-experience__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  
  .stores-experience__description {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 32px;
  }
  
  .stores-experience__button {
    display: inline-block;
    padding: 16px 40px;
    background: #6B4423;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .stores-experience__button:hover {
    background: #543318;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 68, 35, 0.3);
  }
  
  /* Gallery */
  .stores-experience__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .experience-gallery__item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .experience-gallery__item:first-child {
    grid-row: span 2;
  }
  
  .experience-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .experience-gallery__item:hover .experience-gallery__image {
    transform: scale(1.05);
  }
  
  .experience-gallery__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
  }
  
  /* Features */
  .stores-experience__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  .experience-feature {
    text-align: center;
  }
  
  .experience-feature__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: #6B4423;
  }
  
  .experience-feature__icon svg {
    width: 100%;
    height: 100%;
  }
  
  .experience-feature__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
  }
  
  .experience-feature__text {
    font-size: 15px;
    line-height: 1.5;
    color: #4a4a4a;
  }
  
  @media (max-width: 1024px) {
    .stores-experience__content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .stores-experience__features {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 40px 32px;
    }
  }
  
  @media (max-width: 768px) {
    .stores-experience {
      padding: 60px 0;
    }
    
    .stores-experience__content {
      margin-bottom: 60px;
    }
    
    .stores-experience__gallery {
      grid-template-columns: 1fr;
    }
    
    .experience-gallery__item:first-child {
      grid-row: span 1;
    }
  }
.stores-grid {
    padding: 80px 0;
    background-color: #ffffff;
  }
  
  .stores-grid__header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .stores-grid__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #1a1a1a;
  }
  
  .stores-grid__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
  }
  
  /* Store Card */
  .store-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
  
  .store-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  
  .store-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .store-card:hover .store-card__image {
    transform: scale(1.05);
  }
  
  .store-card__image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
  }
  
  .store-card__content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .store-card__badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    align-self: flex-start;
  }
  
  .store-card__badge--open {
    background: #d4edda;
    color: #155724;
  }
  
  .store-card__badge--closed {
    background: #f8d7da;
    color: #721c24;
  }
  
  .store-card__badge--soon {
    background: #fff3cd;
    color: #856404;
  }
  
  .store-card__name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
  }
  
  .store-card__address,
  .store-card__phone {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 12px;
  }
  
  .store-card__address svg,
  .store-card__phone svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #6B4423;
  }
  
  .store-card__phone a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .store-card__phone a:hover {
    color: #6B4423;
  }
  
  .store-card__hours {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    padding: 16px;
    background: #f9f7f3;
    border-radius: 8px;
  }
  
  .store-card__hours svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #6B4423;
  }
  
  .store-card__hours-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
  }
  
  .store-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .store-card__feature-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 13px;
    color: #4a4a4a;
  }
  
  .store-card__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
  }
  
  .store-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .store-card__button--primary {
    background: #6B4423;
    color: white;
    border: 2px solid #6B4423;
  }
  
  .store-card__button--primary:hover {
    background: #543318;
    border-color: #543318;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 68, 35, 0.3);
  }
  
  .store-card__button--secondary {
    background: transparent;
    color: #6B4423;
    border: 2px solid #6B4423;
  }
  
  .store-card__button--secondary:hover {
    background: #6B4423;
    color: white;
  }
  
  @media (max-width: 768px) {
    .stores-grid {
      padding: 60px 0;
    }
    
    .stores-grid__wrapper {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .store-card__content {
      padding: 24px;
    }
  }
.stores-hero {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
    background-color: {{ section.settings.background_color }};
  }
  
  .stores-hero__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .stores-hero__content {
    display: grid;
    grid-template-columns: {% if section.settings.layout == 'stacked' %}1fr{% else %}1fr 1fr{% endif %};
    gap: 60px;
    align-items: center;
  }
  
  .stores-hero__text {
    max-width: 600px;
  }
  
  .stores-hero__subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6B4423;
    margin-bottom: 16px;
    font-weight: 600;
  }
  
  .stores-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  
  .stores-hero__description {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
  }
  
  .stores-hero__map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: white;
  }
  
  .stores-hero__map {
    width: 100%;
    height: 100%;
  }
  
  .stores-hero__map-loading,
  .stores-hero__map-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #999;
    z-index: 1;
  }
  
  .stores-hero__map-error {
    background: #fff3cd;
    color: #856404;
  }
  
  .stores-hero__map-error small {
    font-size: 12px;
    margin-top: 8px;
  }
  
  .map-loading {
    text-align: center;
  }
  
  .map-loading svg {
    margin-bottom: 16px;
    animation: pulse 2s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  
  .gm-style .store-info {
    padding: 16px;
    max-width: 280px;
  }
  
  .gm-style .store-info__name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
  }
  
  .gm-style .store-info__address {
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
    line-height: 1.5;
  }
  
  .gm-style .store-info__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #6B4423;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
  }
  
  .gm-style .store-info__button:hover {
    background-color: #8B5A33;
    transform: translateY(-1px);
  }
  
  .gm-style .store-info__button svg {
    width: 16px;
    height: 16px;
  }
  
  @media (max-width: 1024px) {
    .stores-hero__content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .stores-hero__map-wrapper {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .stores-hero {
      padding: 60px 0 30px;
    }
    
    .stores-hero__map-wrapper {
      height: 350px;
    }
  }
.sustainability-cta {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .sustainability-cta__container {
    position: relative;
    min-height: 600px;
  }
  
  .sustainability-cta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .sustainability-cta__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .sustainability-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 68, 35, 0.9) 0%, rgba(42, 27, 17, 0.95) 100%);
  }
  
  .sustainability-cta__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 100px 20px;
  }
  
  .sustainability-cta__text-wrapper {
    max-width: 800px;
    text-align: center;
    margin-bottom: 60px;
  }
  
  .sustainability-cta__subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .sustainability-cta__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
  }
  
  .sustainability-cta__description {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
  }
  
  .sustainability-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  
  .sustainability-cta__button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .sustainability-cta__button--primary {
    background: white;
    color: #6B4423;
    border: 2px solid white;
  }
  
  .sustainability-cta__button--primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .sustainability-cta__button--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .sustainability-cta__button--secondary:hover {
    background: white;
    color: #6B4423;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* Features Grid */
  .sustainability-cta__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    width: 100%;
    max-width: 1000px;
  }
  
  .cta-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }
  
  .cta-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
  }
  
  .cta-feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: white;
  }
  
  .cta-feature__icon svg {
    width: 100%;
    height: 100%;
  }
  
  .cta-feature__content {
    flex: 1;
  }
  
  .cta-feature__title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
  }
  
  .cta-feature__description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
  }
  
  /* Sem imagem de fundo */
  .sustainability-cta:not(:has(.sustainability-cta__background img)) .sustainability-cta__container {
    background: linear-gradient(135deg, #009640 0%, #009640 100%);
  }
  
  @media (max-width: 768px) {
    .sustainability-cta__content {
      min-height: 500px;
      padding: 60px 20px;
    }
    
    .sustainability-cta__text-wrapper {
      margin-bottom: 40px;
    }
    
    .sustainability-cta__buttons {
      flex-direction: column;
      width: 100%;
    }
    
    .sustainability-cta__button {
      width: 100%;
      text-align: center;
    }
    
    .sustainability-cta__features {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .cta-feature {
      padding: 20px;
    }
    
    .cta-feature__icon {
      width: 40px;
      height: 40px;
    }
  }
/* GARANTIR FONTE POWERGROTESKVARIABLE */
  .sustainability-future,
  .sustainability-future *,
  .sustainability-future__title,
  .sustainability-future__subtitle,
  .sustainability-future__description,
  .sustainability-future__description p {
    font-family: 'PowerGroteskVariable', sans-serif !important;
  }
  
  .sustainability-future {
    width: 100%;
    overflow: hidden;
  }
  
  .sustainability-future__container {
    display: flex;
    flex-direction: column;
  }
  
  /* ========================================
     SEÇÃO DE TEXTO (PARTE SUPERIOR)
     ======================================== */
  
  .sustainability-future__text-section {
    background-color: #f5f5f5;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .sustainability-future__text-wrapper {
    max-width: 900px;
    width: 100%;
    text-align: left;
  }
  
  .sustainability-future__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    color: #a0a0a0;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
  }
  
  .sustainability-future__subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 24px;
    font-weight: 400;
  }
  
  .sustainability-future__description {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.8;
    color: #4a4a4a;
    font-weight: 300;
  }
  
  .sustainability-future__description p {
    margin-bottom: 20px;
  }
  
  .sustainability-future__description p:last-child {
    margin-bottom: 0;
  }
  
  /* ========================================
     SEÇÃO DE IMAGEM (PARTE INFERIOR)
     ======================================== */
  
  .sustainability-future__image-section {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
  }
  
  .sustainability-future__image {
    width: 100%;
    height: 100%;
  }
  
  .sustainability-future__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  /* ========================================
     RESPONSIVO
     ======================================== */
  
  @media (max-width: 768px) {
    .sustainability-future__text-section {
      padding: 60px 24px;
    }
    
    .sustainability-future__title {
      margin-bottom: 24px;
    }
    
    .sustainability-future__subtitle {
      margin-bottom: 20px;
    }
    
    .sustainability-future__description p {
      margin-bottom: 16px;
    }
    
    .sustainability-future__image-section {
      height: 400px;
    }
  }
  
  @media (max-width: 480px) {
    .sustainability-future__text-section {
      padding: 40px 20px;
    }
    
    .sustainability-future__image-section {
      height: 300px;
    }
  }
.sustainability-hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
  }
  
  .sustainability-hero__container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
  }
  
  .sustainability-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .sustainability-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .sustainability-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
  }
  
  .sustainability-hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    color: var(--text-color, #ffffff);
  }
  
  /* Header: título à esquerda, logo à direita */
  .sustainability-hero__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .sustainability-hero__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: var(--text-color, #ffffff);
  }
  
  .sustainability-hero__logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sustainability-hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* Texto centralizado na parte inferior */
  .sustainability-hero__text-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  
  .sustainability-hero__subtitle {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    font-weight: 400;
  }
  
  @media (max-width: 768px) {
    .sustainability-hero,
    .sustainability-hero__container {
      min-height: 500px;
    }
    
    .sustainability-hero__content {
      min-height: 500px;
      padding: 24px;
    }
    
    .sustainability-hero__header {
      flex-direction: column;
      gap: 20px;
    }
    
    .sustainability-hero__logo {
      width: 60px;
      height: 60px;
    }
  }
.sustainability-impact {
    padding: 80px 0;
    background-color: #f9f7f3;
  }
  
  .sustainability-impact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  /* Conteúdo lado esquerdo */
  .sustainability-impact__content {
    padding: 20px 0;
  }
  
  .sustainability-impact__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  
  .sustainability-impact__description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
  }
  
  .sustainability-impact__description p {
    margin-bottom: 16px;
  }
  
  /* Lista de impactos */
  .sustainability-impact__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .impact-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 0;
  }
  
  .impact-list-item__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  
  .impact-list-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* Bullet point padrão se não tiver ícone */
  .impact-list-item:not(:has(.impact-list-item__icon))::before {
    content: "•";
    font-size: 24px;
    color: #6B4423;
    margin-right: 12px;
    line-height: 1.6;
  }
  
  .impact-list-item__text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
  }
  
  /* Imagem lado direito */
  .sustainability-impact__image-container {
    position: relative;
  }
  
  .sustainability-impact__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  .sustainability-impact__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Responsivo */
  @media (max-width: 968px) {
    .sustainability-impact__wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    /* Inverte ordem no mobile: imagem primeiro */
    .sustainability-impact__image-container {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    .sustainability-impact {
      padding: 60px 0;
    }
    
    .sustainability-impact__content {
      padding: 0;
    }
    
    .impact-list-item {
      gap: 12px;
    }
  }
/* GARANTIR FONTE POWERGROTESKVARIABLE */
  .sustainability-numbers,
  .sustainability-numbers * {
    font-family: 'PowerGroteskVariable', sans-serif !important;
  }
  
  .sustainability-numbers {
    padding: 80px 0;
    background-color: #f9f7f3;
  }
  
  .sustainability-numbers__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  /* Conteúdo lado esquerdo */
  .sustainability-numbers__content {
    padding: 20px 0;
  }
  
  .sustainability-numbers__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #000000;
  }
  
  .sustainability-numbers__description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0;
  }
  
  .sustainability-numbers__description p {
    margin-bottom: 16px;
  }
  
  .sustainability-numbers__description p:last-child {
    margin-bottom: 0;
  }
  
  /* Imagem lado direito */
  .sustainability-numbers__image-container {
    position: relative;
  }
  
  .sustainability-numbers__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  .sustainability-numbers__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* ========================================
     FRASE DE DESTAQUE ABAIXO
     ======================================== */
  
  .sustainability-numbers__highlight {
    width: 100%;
    text-align: center;
    padding: 50px 20px 0;
  }
  
  .sustainability-numbers__highlight-text {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.5;
    color: #4a4a4a;
    font-weight: 400;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Responsivo */
  @media (max-width: 968px) {
    .sustainability-numbers__wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    /* Inverte ordem no mobile: imagem primeiro, depois conteúdo */
    .sustainability-numbers__image-container {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    .sustainability-numbers {
      padding: 60px 0;
    }
    
    .sustainability-numbers__content {
      padding: 0;
    }
    
    .sustainability-numbers__highlight {
      padding: 30px 20px 0;
    }
  }
.sustainability-philosophy {
    padding: 80px 0;
    background-color: #ffffff;
  }
  
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .sustainability-philosophy__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  /* Imagem lado esquerdo */
  .sustainability-philosophy__image-container {
    position: relative;
  }
  
  .sustainability-philosophy__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  .sustainability-philosophy__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .sustainability-philosophy__logo-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sustainability-philosophy__logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* Conteúdo lado direito */
  .sustainability-philosophy__content {
    padding: 20px 0;
  }
  
  .sustainability-philosophy__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  
  .sustainability-philosophy__description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
  }
  
  .sustainability-philosophy__description p {
    margin-bottom: 16px;
  }
  
  /* Lista de valores */
  .sustainability-philosophy__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .philosophy-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  
  .philosophy-list-item__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .philosophy-list-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .philosophy-list-item__text {
    flex: 1;
  }
  
  .philosophy-list-item__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
  }
  
  .philosophy-list-item__description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
  }
  
  @media (max-width: 968px) {
    .sustainability-philosophy__wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .sustainability-philosophy__logo-badge {
      width: 80px;
      height: 80px;
      bottom: -15px;
      right: -15px;
    }
  }
  
  @media (max-width: 768px) {
    .sustainability-philosophy {
      padding: 60px 0;
    }
    
    .sustainability-philosophy__content {
      padding: 0;
    }
    
    .philosophy-list-item {
      gap: 12px;
    }
    
    .philosophy-list-item__icon {
      width: 40px;
      height: 40px;
    }
  }
.sustainability-practices {
    padding: 80px 0;
    background-color: #ffffff;
  }
  
  .sustainability-practices__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  /* Conteúdo lado esquerdo */
  .sustainability-practices__content {
    padding: 20px 0;
  }
  
  .sustainability-practices__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  
  .sustainability-practices__description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
  }
  
  .sustainability-practices__description p {
    margin-bottom: 16px;
  }
  
  /* Lista de práticas */
  .sustainability-practices__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .practice-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 0;
  }
  
  .practice-list-item__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .practice-list-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .practice-list-item__text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
  }
  
  .practice-list-item__title {
    font-weight: 600;
    color: #1a1a1a;
  }
  
  .practice-list-item__description {
    font-weight: 400;
  }
  
  /* Imagem lado direito */
  .sustainability-practices__image-container {
    position: relative;
  }
  
  .sustainability-practices__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  .sustainability-practices__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* ========================================
     FRASE DE DESTAQUE ABAIXO
     ======================================== */
  
  .sustainability-practices__highlight {
    width: 100%;
    text-align: center;
    padding: 50px 20px 0;
  }
  
  .sustainability-practices__highlight-text {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.5;
    color: #4a4a4a;
    font-weight: 400;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Responsivo */
  @media (max-width: 968px) {
    .sustainability-practices__wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    /* Inverte ordem no mobile: imagem primeiro, depois conteúdo */
    .sustainability-practices__image-container {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    .sustainability-practices {
      padding: 60px 0;
    }
    
    .sustainability-practices__content {
      padding: 0;
    }
    
    .sustainability-practices__highlight {
      padding: 30px 20px 0;
    }
    
    .practice-list-item {
      gap: 12px;
    }
    
    .practice-list-item__icon {
      width: 40px;
      height: 40px;
    }
  }
/* FORÇA FONTE POWERGROTESKVARIABLE */
.sustainability-producers,
.sustainability-producers * {
  font-family: 'PowerGroteskVariable', sans-serif !important;
}

.sustainability-producers {
  padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
  background-color: #f9f7f3;
}

.sustainability-producers__header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sustainability-producers__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.sustainability-producers__description {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
}

.producers-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* ========================================
   DESKTOP - GRID 3x3 ESTÁTICO
   ======================================== */

.producers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.producer-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.producer-item__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.producer-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.producer-item:hover .producer-item__image {
  transform: scale(1.05);
}

.producer-item__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.producer-item__caption {
  text-align: center;
  font-size: 14px;
  color: #4a4a4a;
  margin: 0;
  font-weight: 500;
}

/* ========================================
   MOBILE - SWIPER (ESTILO EMPILHADO)
   ======================================== */

@media screen and (max-width: 768px) {
  .sustainability-producers {
    padding: 60px 0;
  }

  .sustainability-producers__header {
    margin-bottom: 40px;
  }

  .producers-wrapper {
    padding: 0 0 120px;
    overflow: visible;
    max-width: 440px;
    margin: 0 auto;
  }

  /* Quando Swiper está ativo */
  .producers-grid.swiper-container {
    display: block !important;
    overflow: hidden;
    padding: 0 20px 20px;
  }

  .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }

  .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: auto;
  }

  .producer-item.swiper-slide {
    width: 100%;
    margin-bottom: 0;
  }

  .producer-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Efeito de cards empilhados */
  .producer-item__image-wrapper {
    position: relative;
    border-radius: 16px;
    box-shadow: 
      0 10px 20px rgba(0, 0, 0, 0.12),
      0 0 0 10px rgba(255, 255, 255, 0.95),
      0 10px 28px 10px rgba(0, 0, 0, 0.08);
    background: #fff;
    overflow: hidden;
    aspect-ratio: 3/4;
    max-width: 260px;
    margin: 0 auto;
  }

  /* Efeito de profundidade - camadas atrás */
  .producer-item__image-wrapper::before,
  .producer-item__image-wrapper::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    z-index: -1;
  }

  .producer-item__image-wrapper::before {
    bottom: -10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  }

  .producer-item__image-wrapper::after {
    bottom: -20px;
    width: 92%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  .producer-item__caption {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    padding: 0 10px;
    line-height: 1.3;
  }

  /* Estilo da paginação Swiper */
  .producers-grid .swiper-pagination {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
  }

  .producers-grid .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d0d0d0;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
  }

  .producers-grid .swiper-pagination-bullet-active {
    background: #6B4423;
    width: 24px;
    border-radius: 5px;
  }

  /* Botões de navegação - Estilo inferior */
  .producers-navigation-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 20px;
  }

  .producers-grid .swiper-button-next,
  .producers-grid .swiper-button-prev {
    position: static;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 
      0 4px 8px rgba(0, 0, 0, 0.15),
      4px 4px 0 0 rgba(0, 0, 0, 0.2);
    margin: 0;
    transform: none;
  }

  .producers-grid .swiper-button-next::after,
  .producers-grid .swiper-button-prev::after {
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 900;
  }

  .producers-grid .swiper-button-disabled {
    opacity: 0.3;
  }
}
/* GARANTIR FONTE POWERGROTESKVARIABLE */
  .sustainability-quality,
  .sustainability-quality * {
    font-family: 'PowerGroteskVariable', sans-serif !important;
  }
  
  .sustainability-quality {
    padding: 80px 0;
    background-color: #ffffff;
  }
  
  .sustainability-quality__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  /* Imagem lado esquerdo */
  .sustainability-quality__image-container {
    position: relative;
  }
  
  .sustainability-quality__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  .sustainability-quality__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Conteúdo lado direito */
  .sustainability-quality__content {
    padding: 20px 0;
  }
  
  .sustainability-quality__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #000000;
  }
  
  .sustainability-quality__description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
  }
  
  .sustainability-quality__description p {
    margin-bottom: 20px;
  }
  
  .sustainability-quality__description p:last-child {
    margin-bottom: 0;
  }
  
  /* Responsivo */
  @media (max-width: 968px) {
    .sustainability-quality__wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    /* Mantém imagem primeiro no mobile */
    .sustainability-quality__image-container {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    .sustainability-quality {
      padding: 60px 0;
    }
    
    .sustainability-quality__content {
      padding: 0;
    }
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .careers-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #FAF9F6;
    color: #333;
  }

  /* Hero Section */
  .careers-hero {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
  }

  .careers-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px;
    background: #C37B5A;
    color: white;
  }

  .careers-hero__title {
    font-size: 72px;
    font-weight: 300;
    margin-bottom: 48px;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
  }

  .careers-hero__text {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
  }

  .careers-hero__text p {
    margin-bottom: 0;
  }

  .careers-hero__image {
    position: relative;
    overflow: hidden;
  }

  .careers-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .careers-hero__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B6F47 0%, #6B5838 100%);
  }

  /* Positions Section */
  .careers-positions {
    background: #EFEBE5;
    padding: 100px 40px;
  }

  .careers-positions__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .careers-positions__header {
    position: sticky;
    top: 120px;
  }

  .careers-positions__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0;
    color: #2D2D2D;
    line-height: 1.2;
  }

  .careers-positions__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 60px;
  }

  .position-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid #2D2D2D;
    padding: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
  }

  .position-card:hover {
    border-bottom-color: #C37B5A;
  }

  .position-card__title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #2D2D2D;
    text-decoration: underline;
    text-decoration-color: #2D2D2D;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.3s, text-decoration-color 0.3s;
  }

  .position-card__link {
    text-decoration: none;
    display: block;
  }

  .position-card__link:hover .position-card__title {
    color: #C37B5A;
    text-decoration-color: #C37B5A;
  }

  .position-card__meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 0;
    font-size: 13px;
    color: #666;
    flex-wrap: wrap;
  }

  .position-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .position-card__type {
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-weight: 400;
  }

  .position-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #F5F5F5;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    color: #666;
  }

  .position-card__badge svg {
    width: 12px;
    height: 12px;
  }

  .position-card__description {
    display: none;
  }

  .careers-positions__footer {
    padding: 0;
    background: transparent;
    border-radius: 0;
    text-align: left;
  }

  .careers-positions__footer-intro {
    font-size: 16px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 12px;
  }

  .careers-email {
    display: inline-block;
    font-size: 16px;
    color: #2D2D2D;
    text-decoration: underline;
    margin-bottom: 24px;
    transition: color 0.3s;
  }

  .careers-email:hover {
    color: #C37B5A;
  }

  .careers-positions__footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    max-width: 100%;
  }

  .careers-positions__footer-text p {
    margin-bottom: 12px;
  }

  .careers-btn {
    display: none;
  }

  /* Culture Section */
  .careers-culture {
    background: #B07C8C;
    color: white;
    padding: 80px 40px 0;
    position: relative;
  }

  .careers-culture__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .careers-culture__title {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 48px;
    padding-left: 40px;
  }

  .careers-culture__text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 80px;
    max-width: 600px;
    padding-left: 40px;
    font-weight: 300;
  }

  .careers-culture__text p {
    margin-bottom: 0;
  }

  .careers-culture__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .culture-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0;
  }

  .culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }

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

  /* Team Section */
  .careers-team {
    padding: 0;
    background: #EFEBE5;
  }

  .careers-team__container {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }

  .careers-team__image {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .careers-team__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .careers-team__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: #EFEBE5;
  }

  .careers-team__title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 32px;
    color: #2D2D2D;
    line-height: 1.2;
  }

  .careers-team__text {
    font-size: 18px;
    line-height: 1.7;
    color: #2D2D2D;
    margin-bottom: 24px;
    font-weight: 300;
  }

  .careers-team__text p {
    margin-bottom: 24px;
  }

  .careers-team__btn {
    display: inline-block;
    align-self: flex-start;
    padding: 14px 32px;
    border: 2px solid #2D2D2D;
    background: transparent;
    color: #2D2D2D;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
  }

  .careers-team__btn:hover {
    background: #2D2D2D;
    color: #EFEBE5;
  }

  /* Values Section */
  .careers-values {
    background: #4A7BA7;
    color: white;
    padding: 100px 40px;
  }

  .careers-values__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .careers-values__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .values-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
  }

  .values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .careers-values__text {
    font-size: 22px;
    line-height: 1.6;
    opacity: 0.95;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .careers-hero {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .careers-hero__content {
      padding: 60px 40px;
      order: 1;
    }

    .careers-hero__image {
      order: 2;
      min-height: 400px;
    }

    .careers-hero__title {
      font-size: 52px;
    }

    .careers-positions__container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .careers-positions__header {
      position: static;
    }

    .careers-culture__title {
      font-size: 40px;
      padding-left: 24px;
    }

    .careers-culture__text {
      font-size: 18px;
      padding-left: 24px;
      margin-bottom: 60px;
    }

    .careers-culture__gallery {
      grid-template-columns: 1fr;
    }

    .careers-team__container {
      grid-template-columns: 1fr;
    }

    .careers-team__image {
      min-height: 400px;
    }

    .careers-team__content {
      padding: 60px 40px;
    }

    .careers-team__title {
      font-size: 36px;
    }

    .careers-values__container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .careers-values__images {
      order: 2;
    }
  }

  @media (max-width: 768px) {
    .careers-hero__content {
      padding: 40px 24px;
    }

    .careers-hero__title {
      font-size: 40px;
    }

    .careers-hero__text {
      font-size: 16px;
    }

    .careers-hero__image {
      min-height: 300px;
    }

    .careers-positions {
      padding: 60px 24px;
    }

    .careers-positions__title {
      font-size: 32px;
    }

    .position-card__title {
      font-size: 16px;
    }

    .position-card__meta {
      flex-direction: column;
      gap: 4px;
    }

    .careers-culture {
      padding: 60px 24px 0;
    }

    .careers-culture__title {
      font-size: 32px;
      padding-left: 0;
    }

    .careers-culture__text {
      font-size: 16px;
      padding-left: 0;
      margin-bottom: 40px;
    }

    .careers-team__content {
      padding: 40px 24px;
    }

    .careers-team__title {
      font-size: 28px;
    }

    .careers-team__text {
      font-size: 16px;
    }

    .careers-values {
      padding: 60px 24px;
    }

    .careers-values__text {
      font-size: 18px;
    }

    .careers-values__images {
      grid-template-columns: 1fr;
    }
  }