/** Shopify CDN: Minification failed

Line 174:12 Expected identifier but found whitespace
Line 174:14 Unexpected "{"
Line 174:23 Expected ":"
Line 174:50 Unexpected "0"
Line 174:53 Unexpected "{"
Line 174:62 Expected ":"
Line 174:91 Expected ":"
Line 256:12 Expected identifier but found whitespace
Line 256:14 Unexpected "{"
Line 256:23 Expected ":"
... and 11 more hidden warnings

**/
/* CSS das sections customizadas Éttore — gerado automaticamente */

/* ettore-hero-material.liquid */
.ett-hero-material-wrapper {
    position: relative;
    width: 100%;
    /* Altura do banner: 60% da tela. Pode ajustar se quiser maior ou menor */
    height: 70vh; 
    min-height: 400px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'General Sans', sans-serif;
    overflow: hidden;
  }

  .ett-hero-bg, .ett-hero-media, .ett-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* Garante que o vídeo e a imagem preencham a tela sem distorcer */
  .ett-hero-media {
    object-fit: cover;
    object-position: center;
    z-index: 1;
    display: block;
  }

  .ett-hero-overlay {
    background-color: #000000;
    z-index: 2;
  }

  .ett-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    max-width: 800px;
  }

  .ett-hero-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.9;
  }

  .ett-hero-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
    color: #ffffff;
  }

  .ett-placeholder {
    background-color: #cccccc;
  }

  /* RESPONSIVO CELULAR */
  @media (max-width: 768px) {
    .ett-hero-material-wrapper {
      height: 50vh;
      min-height: 350px;
    }
    .ett-hero-title {
      font-size: 36px;
    }
  }

/* ettore-marquee.liquid */
/* CONFIGURAÇÕES GERAIS DO LETREIRO */
  .ett-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    display: flex;
    align-items: center;
    font-family: 'General Sans', sans-serif;
  }

  .ett-marquee-track {
    display: flex;
    width: max-content;
    animation: scrollEttoreMarquee linear infinite;
  }

  .ett-marquee-item {
    display: inline-flex;
    align-items: center;
  }

  .ett-marquee-text {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 30px; 
  }

  .ett-marquee-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Controle FORÇADO de tamanho da imagem enviada */
  .ett-marquee-img-icon {
    height: 34px !important;
    max-width: 120px !important; /* Permite logotipos mais larguinhos */
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
  }

  @keyframes scrollEttoreMarquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-25%);
    }
  }

  .ett-marquee-wrapper:hover .ett-marquee-track {
    animation-play-state: paused;
  }

  /* RESPONSIVO */
  @media (max-width: 768px) {
    .ett-marquee-text {
      font-size: 12px;
      padding: 0 25px;
    }
    .ett-marquee-icon svg {
      width: 20px;
      height: 20px;
    }
    .ett-marquee-img-icon {
      height: 20px !important;
    }
  }

/* ettore-material-grid.liquid */
.ett-grid-wrapper {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px 0;
    font-family: 'General Sans', sans-serif;
  }
  
  .ett-grid-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .ett-grid-main-title {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
  }

  .ett-grid-items {
    display: grid;
    /* Divide em 4 colunas perfeitamente iguais */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .ett-grid-item {
    display: flex;
    flex-direction: column;
  }

  .ett-grid-img-wrap {
    width: 100%;
    /* Deixa todas as fotos perfeitamente quadradas para manter o alinhamento */
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f4f4f4;
  }

  .ett-grid-img-wrap img, .ett-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  /* Efeito elegante de zoom bem de leve ao passar o mouse */
  .ett-grid-item:hover .ett-grid-img-wrap img {
    transform: scale(1.03);
  }

  .ett-grid-title {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .ett-grid-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
  }

  /* RESPONSIVO */
  @media (max-width: 991px) {
    /* No Tablet vira 2 colunas */
    .ett-grid-items { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  }

  @media (max-width: 575px) {
    /* No Celular vira 1 coluna para a leitura ficar perfeita */
    .ett-grid-items { grid-template-columns: 1fr; gap: 40px; }
    .ett-grid-img-wrap { aspect-ratio: 4 / 3; /* Deixa a foto um pouco mais retangular no celular */ }
  }

/* ettore-material-zigue.liquid */
.ett-zigue-wrapper {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px 0;
    font-family: 'General Sans', sans-serif;
  }
  
  .ett-zigue-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 120px; /* Distância entre uma linha e outra */
  }

  .ett-zigue-row {
    display: flex;
    align-items: center;
    gap: 80px;
  }
  
  /* Inverte a ordem no zigue-zague */
  .ett-zigue-row.row-reverse {
    flex-direction: row-reverse;
  }

  .ett-zigue-img-col {
    flex: 1;
    width: 50%;
  }

  .ett-eco-seal svg{
    width: 25px;
  }
  
  .ett-zigue-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 4px;
    display: block;
  }

  .ett-zigue-text-col {
    flex: 1;
    width: 50%;
    max-width: 450px;
  }

  .ett-zigue-title {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
  }

  .ett-zigue-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
  }

  /* Selinho Biodegradável */
  .ett-eco-seal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #276F4F; /* Verde Éttore */
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .ett-placeholder { background-color: #f4f4f4; }

  /* RESPONSIVO MOBILE */
  @media (max-width: 768px) {
    .ett-zigue-container { gap: 60px; }
    
    .ett-zigue-row, .ett-zigue-row.row-reverse {
      flex-direction: column;
      gap: 30px;
    }
    
    .ett-zigue-img-col, .ett-zigue-text-col {
      width: 100%;
      max-width: 100%;
    }
    
    .ett-zigue-img { aspect-ratio: 1 / 1; }
    .ett-zigue-title { font-size: 24px; }
  }

/* ettore-pillars.liquid */
/* CONFIGURAÇÕES GERAIS */
  .ett-pillars-wrapper {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
    font-family: 'General Sans', sans-serif;
  }
  .ett-pillars-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .ett-pillars-main-title {
    font-size: 32px;
    font-weight: 500;
    color: #111;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    text-align: left;
  }

  /* GRID */
  .ett-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  /* CARTÃO INDIVIDUAL */
  .ett-pillar-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    background-color: #000;
  }

  /* IMAGEM E TRANSIÇÃO DE BLUR */
  .ett-pillar-bg-wrapper {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    transition: filter 0.5s ease, transform 0.5s ease;
  }
  .ett-pillar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  /* OVERLAY DEGRADÊ */
  .ett-pillar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.28) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    transition: opacity 0.5s ease;
    z-index: 1;
  }

  /* TEXTOS SUPERIORES */
  .ett-pillar-category {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 11px;
    color: #fff;
    z-index: 2;
    letter-spacing: 0.5px;
  }

  /* CONTEÚDO INFERIOR */
  .ett-pillar-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .ett-pillar-title {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 15px 0;
    letter-spacing: -0.3px;
  }
  .ett-pillar-desc-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease, margin-bottom 0.5s ease;
  }
  .ett-pillar-desc {
    overflow: hidden;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  /* BOTÃO MÁGICO */
  .ett-pillar-btn {
    width: 44px;
    height: 44px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s;
    margin-top: 5px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .ett-pillar-btn:hover { background: rgba(255, 255, 255, 0.4); }

  .ett-btn-icons {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ett-icon-plus, .ett-icon-arrow {
    position: absolute;
    width: 20px;
    height: 20px;
    transition: all 0.5s ease;
    color: #fff;
  }
  .ett-icon-arrow {
    opacity: 0;
    transform: translateX(-15px);
  }

  /* ========================================= */
  /* ESTADO ATIVO (CLIQUE)                     */
  /* Trocamos de :hover para a classe .is-active */
  /* ========================================= */
  
  .ett-pillar-card.is-active .ett-pillar-bg-wrapper {
    filter: blur(15px);
    transform: scale(1.05); 
  }
  .ett-pillar-card.is-active .ett-pillar-overlay {
    opacity: 0.8;
  }
  .ett-pillar-card.is-active .ett-pillar-desc-wrapper {
    grid-template-rows: 1fr;
    margin-bottom: 20px;
  }
  .ett-pillar-card.is-active .ett-pillar-desc {
    opacity: 1;
    padding-top: 5px;
  }
  .ett-pillar-card.is-active .ett-pillar-btn {
    width: 80px;
  }
  .ett-pillar-card.is-active .ett-icon-plus {
    opacity: 0;
    transform: rotate(90deg);
  }
  .ett-pillar-card.is-active .ett-icon-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .ett-pillars-main-title { font-size: 26px; margin-bottom: 20px; }
    .ett-pillar-title { font-size: 20px; }
  }

/* ettore-ugc-slider.liquid */
.gt-ugc-container {
    position: relative;
    width: 100%;
    height: 780px;
    padding-bottom: 50px;
    display: flex;
    align-items: flex-end; 
    overflow: hidden;
    font-family: 'General Sans', sans-serif;
  }

  .gt-text-block {
    position: absolute;
    top: 60px;
    left: 5%;
    max-width: 350px;
    z-index: 10;
  }
  .gt-title { font-size: 32px; font-weight: 500; color: #111; margin: 0 0 10px 0; letter-spacing: -0.5px; line-height: 1.2; }
  .gt-subtitle { font-size: 16px; color: #111; line-height: 1.5; }
  .gt-subtitle strong { font-weight: 600; }

  .gt-viewport { width: 100%; overflow: hidden; padding-top: 40px; /* Dá espaço se quiser o texto em cima */ }
  
  .gt-track {
    display: flex;
    align-items: flex-end;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
  }

  .gt-slide {
    position: relative;
    flex-shrink: 0;
    margin: 0 4px; 
    height: 140px; 
    width: calc(140px * var(--aspect)); 
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  
  .gt-slide.is-active {
    height: 560px; 
    width: calc(560px * var(--aspect)); 
    margin: 0 50px; 
    cursor: default;
  }

  .gt-slide-media {
    display: block; width: 100%; height: 100%; overflow: hidden;
    position: relative; /* Necessário para posicionar o handle dentro */
    border-radius: 8px; /* Cantos arredondados premium */
  }
  
  .gt-slide-media img, .gt-slide-media video {
    width: 100%; height: 100%; display: block; transition: transform 0.3s;
    object-fit: cover; /* Melhor usar cover para preencher o espaço sem distorcer */
  }
  .gt-slide:hover .gt-slide-media img { transform: scale(1.05); }

  /* MUDANÇA: Handle (Arroba) movido para dentro da imagem */
  .gt-slide-handle {
    position: absolute; 
    bottom: 20px; /* Distância da borda inferior */
    left: 20px;   /* Distância da borda esquerda */
    font-size: 15px; 
    color: #fff; 
    font-weight: 500; 
    opacity: 0; 
    transition: opacity 0.3s; 
    pointer-events: none;
    z-index: 5;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6); /* Sombra pesada para garantir leitura em fotos brancas */
  }
  .gt-slide.is-active .gt-slide-handle { opacity: 1; transition-delay: 0.3s; }

  .gt-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: none; cursor: pointer; z-index: 20; color: #111; padding: 20px;
  }
  .gt-arrow svg { width: 32px; height: 32px; }
  .gt-prev { left: 2%; }
  .gt-next { right: 2%; }

/* --- MOBILE --- */
  @media (max-width: 768px) {
    .gt-ugc-container { height: 600px; }
    .gt-text-block { top: 30px; left: 20px; right: 20px; max-width: 100%; }
    .gt-title { font-size: 26px; }
    .gt-subtitle { font-size: 14px; }
    
    .gt-slide { 
      height: 80px; 
      width: calc(80px * var(--aspect));
    }
    .gt-slide.is-active { 
      height: 380px; 
      width: calc(380px * var(--aspect));
      margin: 0 20px; 
    }
    
    .gt-arrow { display: block; padding: 10px; }
    .gt-arrow svg { width: 24px; height: 24px; }
    .gt-prev { left: 0px; }
    .gt-next { right: 0px; }
    
    .gt-slide-handle { bottom: 10px; left: 10px; font-size: 13px; }
  }

