/*
Theme Name: Startools Custom
Theme URI: https://startools.local
Author: Startools
Description: Tema institucional customizado Startools
Version: 1.0
Text Domain: startools
*/

/* ==========================
   GOOGLE FONT
========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================
   VARIÁVEIS
========================== */
:root {
  --yellow: #FFB800;
  --black: #111111;
  --white: #ffffff;
  --muted: #666666;
  --container: 1280px;
  --header-height: 52px;
}

/* ==========================
   RESET
========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================
   HEADER
========================== */
.site-header {
  width: 100%;
}


/* ==== Top Bar ==== */
.header-top {
    background: #000;
    padding: 15px 0;
    position: relative;
    z-index: 1001; /* Maior que o menu fixo para não sumir ao scrollar */
}

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

@media (max-width: 1024px) {
    .site-logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center; /* Caso o logo seja uma imagem dentro de um link */
        height: 40px; /* Ajuste opcional para telas menores */
    }

    /* Se o logo estiver dentro de um container flexível (comum em headers) */
    .header-container-pai { 
        display: flex;
        justify-content: center;
        width: 100%;
    }
}
/* ==== CTA ==== */
/* Base Desktop (Mantendo seus estilos originais) */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cta .phone {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* --- RESPONSIVIDADE --- */

/* Tablets e Celulares Médios */
@media (max-width: 768px) {
    .header-cta {
        gap: 8px; /* Redução sutil para ganhar espaço lateral */
    }
    
    .header-cta .phone-number {
        white-space: nowrap; /* Impede que o número pule linha */
    }
}

/* Celulares Pequenos (iPhone SE / Telas abaixo de 400px) */
/* Esconde a div em telas menores que 1024px (Tablets e Celulares) */
@media (max-width: 1024px) {
    .header-cta {
        display: none !important;
    }
}

/* ==========================
   BARRA DE ÍCONES (VANTAGENS)
========================== */
/* ==========================
   ICONS BAR - ESTRUTURA BASE
========================== */
.icons-bar {
  background: #f5f5f5;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.icons-row {
  display: grid;
  /* Desktop: 4 colunas lado a lado */
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Estilo do Item (Card) */
.icons-row .cat {
  display: flex;
  flex-direction: row; /* Ícone ao lado do texto no desktop */
  align-items: center;
  gap: 12px;
  padding: 15px;
}

.icons-row .cat img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.cat-text {
  display: flex;
  flex-direction: column;
}

.cat-text strong {
  font-size: 14px;
  color: #111;
  text-transform: uppercase;
}

.cat-text span {
  font-size: 11px;
  color: #666;
}
/* ==========================
   ICONS BAR - MOBILE (Breakpoints)
========================== */
/* ==========================
   ICONS BAR - AJUSTE MOBILE
========================== */

@media (max-width: 768px) {
  .icons-row {
    /* Define 2 colunas por linha */
    display: grid;
    grid-template-columns: 1fr 1fr !important; 
    gap: 15px;
    padding: 20px 15px;
  }

  .icons-row .cat {
    /* Empilha o ícone acima do texto para ganhar espaço lateral */
    flex-direction: column; 
    text-align: center;
    padding: 20px 10px;
  }

  .icons-row .cat img {
    width: 40px; /* Ícone um pouco maior já que agora tem mais espaço */
    height: 40px;
    margin-bottom: 10px;
  }

  .cat-text strong {
    font-size: 13px;
    line-height: 1.2;
    display: block;
  }

  /* No layout de 2 colunas, a descrição (span) costuma caber */
  .cat-text span {
    font-size: 11px;
    color: #888;
    margin-top: 5px;
    display: block; 
    line-height: 1.3;
  }
}
/* Celulares muito pequenos */
@media (max-width: 400px) {
  .icons-row {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas se a tela for minúscula */
  }
}
/* Celulares Médios/Pequenos */
@media (max-width: 600px) {
  .icons-row {
    grid-template-columns: 1fr; /* 1 coluna */
    gap: 10px;
    padding: 15px 0;
  }

  .icons-row .cat {
    justify-content: flex-start; /* Alinha à esquerda no mobile para leitura rápida */
    padding: 15px;
  }

  .icons-row .cat img {
    width: 35px; /* Ícone um pouco menor no celular */
    height: 35px;
  }

  .cat-text strong {
    font-size: 13px;
  }
}

/* Celulares Muito Pequenos (iPhone SE, etc) */
@media (max-width: 360px) {
  .cat-text span {
    display: none; /* Esconde a descrição para economizar espaço, deixa só o título */
  }
}
.phone-icon-wrapper {
  width: 40px;
  height: 40px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.phone-icon-wrapper i {
  color: #fff;
  font-size: 18px;
}

.header-cta .phone {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-cta .small {
  font-size: 12px;
  color: #ccc;
}

.header-cta .phone-number {
  font-size: 16px;
  font-weight: 700;
  color: #ffc107;
}

/* ==========================
   MENU FIXO AO SCROLL
========================== */
/* Estilo base do menu */
.header-menu {
    width: 100%;
    background: #FFD100;
    z-index: 1000;
    transition: all 0.3s ease;
    position: relative;
}

/* Ajuste do Menu Fixo */
.header-menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Valor alto para sobrepor banners e imagens */
   background: #FFD100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Animação para o menu não aparecer "travado" */
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Ajuste para o conteúdo não dar um "pulo" quando o menu fixar */
body.fixed-menu-active {
    padding-top: 52px; /* Altura exata do seu .header-menu */
}

/* Container do Menu */
.menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo reserva no menu (escondido inicialmente) */
.logo-fixed {
    display: none;
    height: 35px; /* Menor para caber na barra amarela */
}

.logo-fixed img {
    height: 100%;
    width: auto;
}

/* ESTADO FIXO */
.header-menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
   background: #FFD100; /* Garante que o fundo não suma */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 5px 0; /* Deixa o menu fixo um pouco mais fino */
    justify-content: center; /* CENTRALIZA OS LINKS */
}

/* Quando estiver fixo, mostra o logo reserva */
.header-menu.fixed .logo-fixed {
    display: block;
}

/* Garante que o menu principal fique alinhado com o novo logo */
.header-menu.fixed .main-menu {
    margin-left: auto;
}

@media (max-width: 768px) {
    .header-menu.fixed .menu-wrapper {
        justify-content: space-between; /* Logo na esquerda, botão na direita */
    }
    
    .header-menu.fixed .logo-fixed {
        position: static; /* Volta ao fluxo normal no mobile */
    }
}

/* ===== Menu Desktop ===== */
.main-menu {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-menu a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 0;
  display: block;
}

/* ===== Mobile ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* ==========================
   RESPONSIVO
========================== */
/* Ajuste do Menu Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 10001;
    }

    .main-menu {
        display: none; /* Escondido por padrão */
        position: absolute;
        top: 100%; /* Aparece logo abaixo da barra amarela */
        left: 0;
        width: 100%;
        background: var(--yellow);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    /* Esta é a classe que o JS ativa */
    .main-menu.open {
        display: flex !important; 
    }
}


/* ==========================
   HERO
========================== */
.hero {
  background: url('assets/img/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-size: 56px;
  color: var(--yellow);
  font-weight: 800;
  margin: 10px 0 20px;
}

.hero-cta .btn {
  background: var(--yellow);
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 700;
  color: #111;
}

/* ==========================
   ICONS BAR
========================== */
.icons-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 25px 0;
}

.icons-row .cat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icons-row img {
  width: 36px;
}

.icons-row h4 {
  font-size: 15px;
}

.icons-row span {
  font-size: 12px;
  color: #7a7a7a;
}

/* ==========================
   GRID & SECTIONS
========================== */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.product-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}

.site-footer {
  background: linear-gradient(180deg, #1c1c1c, #000);
  color: #fff;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-phone {
    color: #fff;
    font-weight: bold;
    font-size: 27px;
    margin: 10px 0;
}


.footer-info {
  margin-bottom: 10px;
  color: #ccc;
  font-size: 12px;
}

.footer-col h4 {
  color: #f2c200;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f2c200;
}

.footer-social a {
  color: #ccc;
  font-size: 18px;
  margin-right: 15px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #f2c200;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #222;
  font-size: 13px;
  color: #aaa;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    margin-top: 10px;
  }
}

/* ==========================
   CARDS DE CATEGORIA
========================== */
.cards-destaque {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

/* CARD BASE */
.card.destaque {
  position: relative;
  border-radius: 16px;
  padding: 40px;
  overflow: hidden;
  height: 260px;
  display: flex;
  align-items: center;
}

/* CORES */
.card.ferramentas {
  background: #eaf6ff;
}

.card.eletro {
  background: #ffc400;
}

/* CONTEÚDO */
.card-content {
  max-width: 50%;
  z-index: 2;
}

.card .tag {
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.card h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.card .btnY {
  background: #FFB800;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background-color .25s ease;
}

/* Hover animation */
.card .btnY:hover {
  background-color: #000;
  color: #FFB800;
}

.card .btn {
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background-color .25s ease;
}

/* Hover animation */
.card .btn:hover {
  background-color: #fff;
  color: #000;
}

/* ✅ IMAGEM NO CANTO */
.card-image {
  position: absolute;
  right: -30px;
  bottom: 50%;
  transform: translateY(50%);
  height: 276px;
  object-fit: contain;
  transition: transform .3s ease;
}

/* ANIMAÇÃO HOVER */
.card:hover .card-image {
  transform: translateY(50%) scale(1.06);
}

@media (max-width: 768px) {

  /* 🔹 Um card por linha */
  .cards-destaque {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* 🔹 Card ocupa 100% */
  .card.destaque {
    width: 100%;
    height: auto;
    padding: 28px 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card-content {
    max-width: 100%;
    align-items: center;
  }

  /* 🔹 Imagem abaixo do texto */
  .card-image {
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
    margin-top: 20px;
    height: 160px;
  }
}


.produtos-destaque {
  padding: 40px 0;
}

/* =================================
   HEADER (ESTILO DE LINHA AMARELA)
   -- ESTILO PADRÃO PARA TODOS OS TÍTULOS DE SEÇÃO --
================================= */
/* =====================================================
   CONFIGURAÇÕES GERAIS E RESET
   ===================================================== */
:root {
    --primary-color: #FFC107; /* Amarelo do layout */
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --bg-light: #f9f9f9;
    --border-color: #eeeeee;
}

.st-slider-wrapper {
    max-width: 1260px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
}

/* =====================================================
   HEADER (TÍTULO E NAVEGAÇÃO)
   ===================================================== */
.st-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 8px;
}

.st-titulo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    text-transform: capitalize;
    line-height: 1;
}

.st-nav-buttons {
    display: flex;
    gap: 10px;
}

.st-arrow {
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 24px;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    transition: color 0.3s ease;
}

.st-arrow:hover {
    color: var(--primary-color);
}

/* =====================================================
   ESTRUTURA DO SLIDER
   ===================================================== */
.st-slider-container {
    position: relative;
    width: 100%;
}

.st-slider-mask {
    overflow: hidden; /* Esconde os itens fora da área */
    width: 100%;
        padding-left: 12px; /* 👈 resolve o corte do primeiro item */

}

.st-slider-track {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* Regra específica para 2 Linhas (Ferramentas e Eletro) */
.st-slider-linha_ferramenta .st-slider-track,
.st-slider-linha_eletro .st-slider-track {
    flex-direction: column;
    flex-wrap: wrap;
    height: 763px; /* Altura para acomodar 2 cards + gaps */
}

/* =====================================================
   ESTILO DO CARD (ITEM)
   ===================================================== */
.st-item {
    width: 280px; /* Largura base do card */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
}

/* Container da imagem com altura fixa */
.st-thumb-wrapper {
    position: relative;
    border-radius: 4px;
    height: 250px; /* ALTURA FIXA para o fundo cinza */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

/* Forçar a imagem a se adaptar ao container sem distorcer */
.st-thumb-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Garante que o produto apareça inteiro sem cortes feios */
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.st-item:hover .st-thumb-wrapper img {
    transform: scale(1.05);
}

/* Conteúdo do Texto */
.st-item h3 {
    font-size: 17px;
    /* font-weight: 600; */
    color: var(--text-dark);
    /* margin-bottom: 8px; */
    /* height: 42px; */
    /* line-height: 21px; */
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Estrelas de Avaliação */
.st-rating {
    font-size: 13px;
    color: #e0e0e0;
    margin-bottom: 12px;
    text-align: center;
}

.st-rating .full {
    color: var(--primary-color);
}

/* Preço e Botão */
.st-card-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    align-items: center;
}

.st-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.st-btn-option {
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease; /* Transição para todas as propriedades */
    width: fit-content;
    border: none;
    cursor: pointer;
}

/* Efeito Hover: Fundo Preto e Letras Amarelas */
.st-btn-option:hover {
    background: #000000;
    color: var(--primary-color);
}

/* Ícone da Lupa (Dashicons do WP) */
.st-btn-option::before {
    content: "\f179"; /* Código da lupa (search) no Dashicons */
    font-family: dashicons;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* Garante que o ícone também fique amarelo no hover */
.st-btn-option:hover::before {
    color: var(--primary-color);
}

/* =====================================================
   RESPONSIVIDADE
   ===================================================== */
@media (max-width: 768px) {

  .st-slider-linha_ferramenta .st-slider-mask,
  .st-slider-linha_eletro .st-slider-mask {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .st-slider-linha_ferramenta .st-slider-track,
  .st-slider-linha_eletro .st-slider-track {
    transform: none !important; /* 👈 ESSENCIAL */
  }
}

@media (max-width: 768px) {
  .st-slider-track {
    scroll-snap-type: x mandatory;
  }
  .st-item {
    scroll-snap-align: start;
  }
}
/* =========================================
   ESTILOS GERAIS DA SEÇÃO DE EVENTOS
   ========================================= */
.eventos-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

/* Grid de Eventos */
.eventos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; 
    justify-content: space-around; 
}

/* =========================================
   ESTILOS DO CARD INDIVIDUAL (EVENTO-ITEM)
   ========================================= */
.evento-item {
    width: 100%;
    max-width: 350px;
    background: #fff;
    border-radius: 4px; 
    overflow: hidden;
    transition: transform 0.3s ease;
}

.evento-item:hover {
    transform: translateY(-5px);
}

/* Imagem */
.evento-imagem-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Conteúdo do Card */
.evento-content {
    padding: 15px 20px 25px 20px;
}

/* Data do Evento (Rótulo Amarelo) */
.evento-data {
    display: inline-block;
    background-color: #ffe08a;
    color: #444;
    font-weight: 500;
    padding: 4px 10px;
    font-size: 0.85em;
    border-radius: 2px;
    margin-bottom: 15px;
}

/* Título do Evento */
.evento-content h3 {
    font-size: 1.3em;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

/* Descrição */
.evento-content p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Link "Leia Mais >" */
.leia-mais {
    display: inline-block;
    color: var(--black); 
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9em; 
    position: relative;
    padding-bottom: 3px; 
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Linha de underline customizada */
.leia-mais::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; 
    height: 2px;
    background-color: #f9a32c;
    transition: width 0.3s ease;
}

/* Efeito no Hover */
.leia-mais:hover {
    color: #f9a32c; 
    transform: translateX(3px);
}

/* Linha aparece no hover */
.leia-mais:hover::after {
    width: 100%; 
}

/* =========================================
   MEDIA QUERIES (RESPONSIVIDADE) - Eventos
   ========================================= */
@media (max-width: 768px) {
    .eventos-grid {
        justify-content: center;
    }
    .evento-item {
        max-width: 90%;
    }
}

/* ==========================================
   ANIMAÇÃO: ZOOM NAS IMAGENS DOS CARDS DE EVENTO
========================================== */
.eventos-grid .evento-item {
    overflow: hidden; 
    border-radius: 8px;
}

.eventos-grid .evento-item .evento-imagem-wrapper {
    overflow: hidden; 
}

.eventos-grid .evento-item img {
    transition: transform 0.4s ease-out; 
    width: 100%; 
    height: auto;
    display: block;
}

.eventos-grid .evento-item:hover img {
    transform: scale(1.1);
}

/* =========================================
   ESTILOS DA PÁGINA INDIVIDUAL DE EVENTO
   ========================================= */
.evento-detalhes {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* TÍTULO E DATA NO TOPO */
.entry-header {
    margin-bottom: 25px;
}

.entry-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 5px;
}

.evento-data-single {
    font-size: 1.1em;
    color: #555;
    font-weight: 500;
}

.separador-titulo-evento {
    border: 0;
    border-top: 2px solid #f9a32c;
    margin-top: 15px;
    margin-bottom: 30px;
    width: 100%;
}

/* LAYOUT DE DUAS COLUNAS */
/* Layout Duplo */
.evento-layout-duplo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

/* Container da Galeria de Eventos */
.st-galeria-interna {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Margem inferior de 15px para as miniaturas */
    width: 100%;
}

/* Moldura da Imagem Principal (Ajustada para horizontais) */
.galeria-destaque-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9; /* Proporção de cinema/TV, ideal para eventos */
    background: #000; /* Fundo preto caso a foto seja menor */
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}

.galeria-destaque-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a foto preencher todo o 16:9 sem sobrar bordas */
    transition: opacity 0.3s ease;
}

/* Trilho de Miniaturas */
.galeria-thumbnails-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.thumbnail-item {
    aspect-ratio: 1 / 1; /* Miniaturas sempre quadradinhas */
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item.ativo {
    border-color: #FFD400;
    opacity: 1;
}

/* Ajuste Mobile solicitado */
@media (max-width: 768px) {
    .galeria-destaque-wrapper {
        max-height: 250px; /* Limita a altura em telas pequenas */
    }
}
/* ==========================================
   SEÇÃO QUEM SOMOS
========================================== */
.quem-somos-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}
/* --- 2. Layout de 2 Colunas --- */
.quem-somos-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
}

/* Imagem */
.quem-somos-imagem {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); 
}

.quem-somos-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Conteúdo */
.quem-somos-conteudo .titulo-destaque {
    font-size: 2.6em;
    font-weight: 600;
    line-height: 1.15;
    /* color: var(--black); */
    margin-bottom: 50px;
}

.quem-somos-conteudo .paragrafo-destaque {
font-size: 1.50em;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 50px;
}

.quem-somos-conteudo p {
    font-size: 1.25em;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 34px;
}

/* --- 3. Botão CTA (Fale com Especialista) --- */
.quem-somos-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--yellow); 
    color: var(--black);
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.quem-somos-cta:hover {
    background-color: #f2b200; 
    transform: translateY(-2px);
    color: var(--black);
}

/* Estilo do Placeholder do Ícone (se usar Font Awesome, isso será substituído) */
.whatsapp-icon {
    font-size: 1.2em;
}


/* --- 4. Responsividade --- */
@media (max-width: 992px) {
    .quem-somos-grid {
        grid-template-columns: 1fr; /* Empilha as colunas em mobile */
        gap: 30px;
        /* Remove o text-align: center aqui para não centralizar o conteúdo de texto */
    }
    
    /* Garante que o conteúdo de texto esteja alinhado à esquerda no mobile */
    .quem-somos-conteudo {
        text-align: left; 
    }

    .quem-somos-conteudo .titulo-destaque,
    .quem-somos-conteudo .paragrafo-destaque,
    .quem-somos-conteudo p {
        text-align: left;
    }
    
    /* Centraliza o botão CTA */
    .quem-somos-cta {
        margin: 0 auto; 
    }
    
    /* Centraliza a imagem no mobile */
    .quem-somos-imagem {
        margin: 0 auto;
    }
    
    /* Ajuste para alinhar o st-header */
    .quem-somos-section .st-header {
        justify-content: flex-start; /* Mantém o alinhamento esquerdo do título */
    }
}

/* =========================================
   SEÇÃO NEWSLETTER (Receba Nossas Novidades)
   ========================================= */
.newsletter-section {
    background: var(--yellow); /* Fundo amarelo */
    padding: 30px 0;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.newsletter-title {
    font-size: 1.5em; /* Tamanho do título "Receba Nossas Novidades" */
    font-weight: 600;
    color: var(--black);
    margin: 0;
    flex-shrink: 0; /* Evita que o título encolha */
}

/* Formulário de Input e Botão */
.newsletter-form {
    display: flex;
    max-width: 550px; /* Largura máxima para o campo e botão */
    width: 100%;
}

.newsletter-form input {
    flex-grow: 1; /* Faz o campo de input preencher o espaço restante */
    padding: 12px 15px;
    font-size: 16px;
    border: none;
    border-radius: 0;
    outline: none;
    background: var(--white); /* Fundo branco do input */
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--black); /* Botão preto */
    color: var(--yellow); /* Texto amarelo */
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #000000e0; /* Pequena mudança no hover */
}

/* =========================================
   RESPONSIVIDADE NEWSLETTER
   ========================================= */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 20px 0;
    }

    .newsletter-wrapper {
        flex-direction: column; /* Empilha o título e o formulário */
        align-items: flex-start; /* Alinha o título à esquerda no mobile */
        text-align: left;
    }

    .newsletter-title {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .newsletter-form {
        max-width: 100%; /* Ocupa a largura total */
    }
}

/* =====================================================
   BANNER PROMOCIONAL
   ===================================================== */
.st-promotional-banner {
    position: relative;
    width: 100%;
    height: 500px; /* Ajuste a altura conforme preferir */
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 40px 0;
}

.st-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
    
    /* 1. TIRANDO A SUAVEZA: Diminuí de 1.2s para 0.4s */
    /* Usei 'ease-out' para que o zoom pareça mais imediato e "seco" */
    transition: transform 0.4s ease-out; 
}

/* 2. MAIS ZOOM: Aumentei de 1.05 para 1.25 (25% de aumento) */
.st-promotional-banner:hover .st-banner-image {
    transform: scale(1.25);
}

/* Camada Preta (Overlay) */
.st-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

/* Efeito de Hover */
.st-promotional-banner:hover .st-banner-image {
    transform: scale(1.08); /* Leve zoom */
}

/* Conteúdo do Banner */
.st-banner-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 700px;
}

.st-banner-tag {
    background: var(--yellow);
    color: #000;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 20px;
}

.st-banner-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.st-banner-title span {
    color: var(--yellow);
}

.st-banner-text {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
}

/* =====================================================
   BANNER PROMOCIONAL - FIDELIDADE TOTAL
   ===================================================== */
/* =====================================================
   BANNER PROMOCIONAL (1324x270)
   ===================================================== */
.st-promotional-banner {
    position: relative;
    width: 100%;
    max-width: 1324px; /* Largura máxima exata */
    height: 270px;      /* Altura exata solicitada */
    margin: 40px auto;  /* Centraliza na página */
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #1a1a1a; /* Cor de fundo que aparece sob a transparência */
    border-radius: 8px;
}


/* Camada escura apenas do lado esquerdo para destacar o texto */
.st-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Zoom suave ao passar o mouse */
.st-promotional-banner:hover .st-banner-image {
    transform: scale(1.05);
}

.st-banner-content {
  text-align: center;
    position: relative;
    z-index: 3;
    color: #ffffff;
    padding-left: 50px; /* Alinhamento do texto */
}

.st-banner-title {
    font-size: 32px; /* Reduzido para caber na altura de 270px */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}

.st-banner-title span {
    color: #FFB800; /* Amarelo Startools */
}

.st-banner-text {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Botão conforme o layout solicitado */
.st-btn-banner-primary {
    background: #FFB800;
    color: #000;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
}

.st-btn-banner-primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .st-promotional-banner {
        height: 220px; /* Proporcional para tablets */
    }
    .st-banner-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .st-promotional-banner {
        height: auto;
        padding: 40px 20px;
        flex-direction: column;
        text-align: center;
    }
    .st-banner-content {
        padding-left: 0;
    }
    .st-banner-image {
        opacity: 0.3; /* No mobile, a imagem vira apenas um fundo sutil */
    }
}
/* Botão WhatsApp Redondo - Cores Invertidas */
.whatsapp-fixed-round {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--yellow); /* Fundo Amarelo agora */
    color: var(--black); /* Ícone Preto agora */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Garante que fique sobre o menu fixo e banners */
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-fixed-round i {
    font-size: 35px;
}

/* Efeito de Hover - Inverte para Fundo Preto e Ícone Amarelo */
.whatsapp-fixed-round:hover {
    background-color: var(--black); /* Fundo Preto no hover */
    color: var(--yellow); /* Ícone Amarelo no hover */
    transform: scale(1.1) rotate(10deg); /* Leve aumento e inclinação */
}

/* Ajuste Responsivo */
@media (max-width: 768px) {
    .whatsapp-fixed-round {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-fixed-round i {
        font-size: 28px;
    }
}
/* Container Principal do Card */
.st-card-quadrado {
    background: #f4f5f7; /* Fundo cinza suave para a área de texto */
    border: none; /* Remoção de bordas conforme solicitado */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Sombra suave para dar profundidade ao layout */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease;
}

/* Efeito de elevação e aumento da sombra ao passar o mouse */
.st-card-quadrado:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Seção da Imagem (Fundo Branco) */
.st-img-secao {
    background: #ffffff; /* Fundo branco puro para destacar o produto */
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.st-img-secao img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease; /* Transição suave do zoom */
}

/* Zoom da foto no hover */
.st-card-quadrado:hover .st-img-secao img {
    transform: scale(1.1);
}

/* Traço Amarelo Divisório */
.st-divisor-amarelo {
    height: 6px;
    background-color: #ffcc00; /* Amarelo Startools */
    width: 100%;
}

/* Seção de Informações */
.st-info-secao {
    padding: 25px 20px;
    text-align: center;
}

.st-titulo-card {
    font-weight: 800;
    font-size: 18px;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.st-desc-card {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Botão Amarelo */
.st-area-botao {
    padding-top: 10px;
}

.st-btn-amarelo {
    display: block;
    background-color: #ffcc00; /* Botão amarelo sólido */
    color: #111;
    padding: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.st-btn-amarelo:hover {
    background-color: #111;
    color: #ffcc00;
}

/* Container da Modal */
.st-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Card Branco Principal */
.st-modal-content {
    background: #fff;
    border-radius: 12px;
    position: relative;
    width: 100%;
    max-width: 800px; /* Reduzido para ficar mais elegante */
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Botão Fechar no topo direito */
.st-modal-close {
    position: absolute;
    top: -35px;
    right: 0;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Moldura da Imagem Principal - O SEGREDO DO LAYOUT */
.st-main-view {
    position: relative;
    width: 100%;
    height: 500px; /* Altura fixa para nunca quebrar o layout */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.st-modal-slider {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-modal-slider img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Garante que a imagem inteira apareça sem cortes */
    padding: 10px; /* Espaço para a imagem não encostar na borda */
    display: none;
    animation: fadeInModal 0.3s ease;
}

.st-modal-slider img.active {
    display: block;
}

/* Miniaturas (Thumbnails) */
.st-modal-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.st-thumb-item {
    width: 65px;
    height: 65px;
    border: 2px solid #eee;
    border-radius: 6px;
    cursor: pointer;
    object-fit: cover; /* Miniatura sempre preenche o quadrado */
    transition: all 0.2s ease;
}

.st-thumb-item.active {
    border-color: #FFD400; /* Amarelo StarTools */
    transform: scale(1.05);
}

/* Setas de Navegação (Estilo Flutuante) */
.st-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFD400; /* Amarelo StarTools */
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
    transition: all 0.2s;
}

.st-modal-arrow:hover {
    background: #000;
    color: #fff;
}

.st-prev { left: 10px; }
.st-next { right: 10px; }

@keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .st-main-view { height: 300px; }
    .st-modal-arrow { width: 35px; height: 35px; }
}
/* --- FUNDAMENTOS --- */
:root {
    --st-yellow: #FFD100 ;
    --st-dark: #111111;
    --st-gray: #f8f8f8;
    --st-text: #444444;
}

.st-about-wrapper { font-family: 'Poppins', sans-serif; color: var(--st-dark); overflow: hidden; }

/* --- HERO MINIMALISTA --- */
.st-hero-minimal { padding: 120px 0 80px; background: #fff; }

.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: end; }

.st-eyebrow { font-size: 14px; text-transform: uppercase; letter-spacing: 4px; color: #888; display: block; margin-bottom: 15px; }

.st-split-title { font-size: 4.5rem; font-weight: 800; line-height: 1; margin: 0; }
.st-split-title span { color: var(--st-yellow); }

.st-lead { font-size: 1.2rem; line-height: 1.6; color: var(--st-text); border-left: 3px solid var(--st-yellow); padding-left: 25px; margin: 0; }

/* --- GALERIA ASSIMÉTRICA --- */
.st-asymmetric-gallery { padding: 100px 0; background: var(--st-gray); }

.gallery-layout { display: flex; align-items: center; position: relative; }

.img-large { width: 65%; position: relative; z-index: 1; }
.img-large img { width: 100%; border-radius: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }

.floating-badge { 
    position: absolute; bottom: -30px; left: -30px; 
    background: var(--st-yellow); padding: 30px; 
    display: flex; align-items: center; gap: 15px; border-radius: 4px;
}
.floating-badge .year { font-size: 3rem; font-weight: 900; line-height: 1; }
.floating-badge .label { font-size: 12px; text-transform: uppercase; font-weight: 700; line-height: 1.2; }

.content-overlap { 
    width: 45%; background: #fff; padding: 60px; 
    margin-left: -10%; position: relative; z-index: 2; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-radius: 4px;
}

.st-section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 25px; }
.st-section-title span { color: var(--st-yellow); }

.st-list-minimal { list-style: none; padding: 0; margin-top: 30px; }
.st-list-minimal li { margin-bottom: 15px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.st-list-minimal li::before { content: ''; width: 20px; height: 2px; background: var(--st-yellow); display: block; }

/* --- CARDS DE VALORES --- */
.st-values-clean { padding: 100px 0; }

.values-grid-clean { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #eee; border: 1px solid #eee; }

.value-card { background: #fff; padding: 60px 40px; transition: 0.4s; }
.value-card .v-number { font-size: 12px; font-weight: 800; color: var(--st-yellow); display: block; margin-bottom: 20px; }
.value-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.value-card p { font-size: 0.95rem; line-height: 1.6; color: #666; }

.value-card:hover, .value-card.active { background: var(--st-dark); color: #fff; }
.value-card:hover p { color: #ccc; }

/* --- CTA ELEGANTE --- */
.st-cta-elegant { padding-bottom: 100px; }
.cta-box { 
    background: var(--st-yellow); padding: 60px; 
    display: flex; justify-content: space-between; align-items: center; border-radius: 4px;
}
.cta-content h2 { font-size: 2rem; font-weight: 800; margin: 0 0 10px; }
.btn-st-black { 
    background: var(--st-dark); color: #fff; padding: 20px 40px; 
    text-decoration: none; font-weight: 700; border-radius: 4px; transition: 0.3s;
}
.btn-st-black:hover { opacity: 0.9; transform: translateY(-3px); }

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .hero-grid, .gallery-layout { grid-template-columns: 1fr; flex-direction: column; }
    .st-split-title { font-size: 3rem; }
    .img-large, .content-overlap { width: 100%; margin: 0; }
    .values-grid-clean { grid-template-columns: 1fr; }
    .cta-box { flex-direction: column; text-align: center; gap: 30px; }
}

/* --- CONFIGURAÇÕES BASE --- */
.st-premium-container { font-family: 'Poppins', sans-serif; color: #111; line-height: 1.6; }

/* --- HERO EDITORIAL --- */
.st-hero-editorial { padding: 100px 0 60px; }
.st-hero-grid { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.st-hero-left { flex: 1.2; }
.st-hero-right { flex: 0.8; }

.st-eyebrow { font-size: 13px; text-transform: uppercase; letter-spacing: 4px; color: #999; display: block; margin-bottom: 10px; }
.st-split-title { font-size: 4rem; font-weight: 800; line-height: 1; margin: 0; }
.st-split-title span { color: #FFD400; }
.st-lead-text { font-size: 1.15rem; color: #555; border-left: 3px solid #FFD400; padding-left: 20px; }

/* --- SEÇÃO ASSIMÉTRICA (OVERLAP) --- */
.st-asymmetric-section { padding: 100px 0; background: #fcfcfc; }
.st-layout-overlap { display: flex; align-items: center; position: relative; }

.st-img-box { width: 60%; position: relative; z-index: 1; }
.st-img-box img { width: 100%; border-radius: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); display: block; }

.st-floating-badge { 
    position: absolute; bottom: -25px; left: -25px; 
    background: #FFD400; padding: 25px; 
    display: flex; align-items: center; gap: 15px; border-radius: 4px; z-index: 3;
}
.st-year { font-size: 3rem; font-weight: 900; line-height: 1; }
.st-badge-label { font-size: 11px; text-transform: uppercase; font-weight: 800; }

.st-content-overlap-card { 
    width: 50%; background: #fff; padding: 60px; 
    margin-left: -10%; position: relative; z-index: 2; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-radius: 4px;
}

.st-section-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; }
.st-section-title span { color: #FFD400; }

.st-list-premium { list-style: none; padding: 0; margin-top: 25px; }
.st-list-premium li { margin-bottom: 12px; font-weight: 600; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.st-list-premium li::before { content: ''; width: 25px; height: 2px; background: #FFD400; display: block; }

/* --- GRID DE VALORES --- */
.st-values-minimal { padding: 80px 0; }
.st-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.st-v-card { padding: 50px 35px; border: 1px solid #eee; transition: 0.4s; }
.st-v-num { color: #FFD400; font-weight: 800; font-size: 14px; display: block; margin-bottom: 15px; }
.st-v-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.st-v-card p { font-size: 0.9rem; color: #666; }
.st-v-card.active, .st-v-card:hover { background: #111; color: #fff; border-color: #111; }

/* --- RESPONSIVIDADE SEM QUEBRA --- */
@media (max-width: 1024px) {
    .st-split-title { font-size: 3rem; }
    .st-content-overlap-card { padding: 40px; }
}

@media (max-width: 768px) {
    .st-hero-grid { flex-direction: column; align-items: flex-start; }
    .st-layout-overlap { flex-direction: column; }
    .st-img-box, .st-content-overlap-card { width: 100%; margin: 0; }
    .st-content-overlap-card { margin-top: -40px; z-index: 4; }
    .st-values-grid { grid-template-columns: 1fr; }
    .st-floating-badge { bottom: 10px; left: 10px; padding: 15px; }
}

/* BARRA DE NÚMEROS */
.st-numbers-bar {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.st-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.st-number-item .st-counter {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: #111;
    line-height: 1;
    margin-bottom: 5px;
}

.st-number-item p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-weight: 700;
    margin: 0;
}

/* DESTAQUE NO NÚMERO (OPCIONAL) */
.st-number-item:hover .st-counter {
    color: #FFD400;
    transition: 0.3s;
}

/* RESPONSIVIDADE DOS NÚMEROS */
@media (max-width: 991px) {
    .st-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .st-numbers-grid {
        grid-template-columns: 1fr;
    }
    .st-number-item .st-counter {
        font-size: 2.2rem;
    }
}

/* SEÇÃO MISSÃO CLEAN */
.st-mission-clean {
    padding: 120px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.st-mission-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Lado do texto é maior */
    gap: 80px;
    align-items: center;
}

/* Badge Minimalista */
.st-minimal-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.st-badge-big {
    font-size: 8rem; /* Número bem grande e impactante */
    font-weight: 900;
    line-height: 0.8;
    color: #111;
    position: relative;
}

.st-badge-big::after {
    content: '+';
    font-size: 3rem;
    color: #FFD400;
    position: absolute;
    top: 0;
    right: -30px;
}

.st-badge-line {
    width: 60px;
    height: 6px;
    background: #FFD400;
    margin: 20px 0;
}

.st-badge-txt {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 800;
    color: #888;
}

/* Conteúdo */
.st-section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.st-section-title span {
    color: #FFD400;
}

.st-main-para {
    font-size: 1.4rem; /* Texto de destaque maior */
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

/* Lista Premium */
.st-list-premium {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.st-list-premium li {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1a1a1a;
}

.st-list-premium li::before {
    content: '';
    width: 40px;
    height: 2px;
    background: #FFD400;
    display: block;
}

/* RESPONSIVO */
@media (max-width: 991px) {
    .st-mission-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .st-minimal-badge {
        align-items: center;
    }
    .st-badge-big {
        font-size: 6rem;
    }
    .st-list-premium li {
        justify-content: center;
    }
}

/* --- FUNDAMENTOS --- */
/* --- FUNDAMENTOS --- */
.st-about-premium { font-family: 'Poppins', sans-serif; color: #111; background: #fff; }

/* --- HERO --- */
.st-hero-minimal { padding: 100px 0 80px; }
.st-hero-grid { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.st-hero-left { flex: 1.2; }
.st-hero-right { flex: 0.8; }

.st-eyebrow { font-size: 13px; text-transform: uppercase; letter-spacing: 4px; color: #999; display: block; margin-bottom: 15px; }
.st-split-title { font-size: 4rem; font-weight: 800; line-height: 1; margin: 0; }
.st-split-title span { color: #FFD400; }
.st-lead-text { font-size: 1.15rem; color: #555; border-left: 3px solid #FFD400; padding-left: 25px; margin: 0; }

/* --- BARRA DE QUANTITATIVOS --- */
/* --- BARRA DE QUANTITATIVOS --- */
.st-numbers-strip { 
    background: #111111; /* Preto industrial profundo */
    color: #ffffff; 
    padding: 60px 0;
    border-top: 2px solid #FFD400; /* Linha de assinatura no topo */
}

.st-numbers-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    text-align: center;
}

.st-number-val { 
    font-size: 3.5rem; 
    font-weight: 900; 
    line-height: 1; 
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums; /* Evita que o layout "pule" durante a contagem */
}

.st-number-val small { 
    color: #FFD400; /* Amarelo de destaque */
    font-size: 1.8rem; 
    margin-left: 2px;
}

.st-number-item p { 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: #888888; 
    font-weight: 700;
    margin: 0;
}

/* Ajuste Responsivo */
@media (max-width: 768px) {
    .st-numbers-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 40px; 
    }
    .st-number-val { font-size: 2.5rem; }
}
/* --- SEÇÃO MISSÃO (DIAGRAMAÇÃO CLEAN) --- */
.st-mission-clean { padding: 100px 0; }
.st-mission-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 100px; align-items: center; }

/* BADGE MINIMALISTA */
.st-minimal-badge { display: flex; flex-direction: column; align-items: flex-start; }
.st-badge-number { font-size: 9rem; font-weight: 900; line-height: 0.8; color: #111; }
.st-badge-divider { width: 60px; height: 6px; background: #FFD400; margin: 25px 0; }
.st-badge-label { font-size: 14px; text-transform: uppercase; letter-spacing: 5px; font-weight: 800; color: #999; }

/* CONTEÚDO */
.st-section-title { font-size: 2.8rem; font-weight: 800; margin-bottom: 25px; }
.st-section-title span { color: #FFD400; }
.st-mission-description { font-size: 1.25rem; line-height: 1.7; color: #444; margin-bottom: 40px; }

.st-list-premium { list-style: none; padding: 0; }
.st-list-premium li { display: flex; align-items: center; gap: 20px; font-weight: 700; font-size: 1.1rem; margin-bottom: 18px; color: #1a1a1a; }
.st-list-premium li span { width: 40px; height: 3px; background: #FFD400; display: block; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 991px) {
    .st-hero-grid, .st-mission-layout { grid-template-columns: 1fr; flex-direction: column; gap: 50px; }
    .st-split-title { font-size: 3rem; }
    .st-numbers-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .st-badge-number { font-size: 7rem; }
}


/* --- SEÇÃO QUEM É STARTOOLS --- */
.st-intro-section { padding: 80px 0; background: #fff; }
.st-intro-content { max-width: 800px; margin: 0 auto; text-align: center; }
.st-intro-content p { font-size: 1.15rem; color: #555; margin-bottom: 20px; line-height: 1.8; }
.st-highlight-dark { 
    background: #111; 
    color: #fff !important; 
    padding: 30px; 
    border-radius: 4px; 
    font-weight: 600; 
    margin-top: 40px; 
}

/* --- CARD DE PRODUTOS DARK --- */
.st-products-info-section { padding: 100px 0; background: #f9f9f9; }
.st-dark-products-card { 
    background: #111; 
    color: #fff; 
    padding: 60px; 
    border-radius: 8px; 
    text-align: center;
}
.st-yellow-title { color: #FFD400; font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; }
.st-products-categories { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
    margin: 40px 0; 
}
.st-cat-item { 
    border: 1px solid rgba(255,255,255,0.2); 
    padding: 10px 20px; 
    border-radius: 50px; 
    font-size: 0.9rem; 
    font-weight: 600;
    transition: 0.3s;
}
.st-cat-item:hover { background: #FFD400; color: #000; border-color: #FFD400; }

.st-products-footer p { color: #888; margin-bottom: 25px; }
.st-btn-yellow { 
    background: #FFD400; 
    color: #000; 
    padding: 18px 40px; 
    text-decoration: none; 
    font-weight: 800; 
    border-radius: 4px; 
    display: inline-block;
    transition: 0.3s;
}
.st-btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,212,0,0.2); }

/* Ajustes no Mobile */
@media (max-width: 768px) {
    .st-dark-products-card { padding: 40px 20px; }
    .st-cat-item { font-size: 0.8rem; padding: 8px 15px; }
}/* Container dos dois botões */
.st-dual-btns {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espaço entre os botões */
    margin-top: 25px;
}

/* Ajuste no botão amarelo para comportar os dois */
.st-btn-yellow {
    background: #FFD400;
    color: #000;
    padding: 18px 30px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre o ícone e o texto */
    transition: all 0.3s ease;
    flex: 1; /* Faz os botões terem o mesmo tamanho */
    max-width: 280px; /* Evita que fiquem largos demais em telas grandes */
    justify-content: center;
}

.st-btn-yellow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 212, 0, 0.3);
    background: #fff; /* Inverte a cor no hover para um efeito premium */
}

/* Responsividade: Empilhar em celulares */
@media (max-width: 600px) {
    .st-dual-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .st-btn-yellow {
        width: 100%;
        max-width: 100%;
    }
}

.st-dual-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.st-btn-yellow {
    background: #FFD400;
    color: #000;
    padding: 18px 25px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem; /* Ajustado para caber o texto longo */
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 300px;
    justify-content: center;
    white-space: nowrap; /* Impede que o texto quebre em duas linhas */
}

.st-btn-yellow i {
    font-size: 1.2rem;
}

.st-btn-yellow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 212, 0, 0.4);
    background: #fff;
}

/* Ajuste crucial para tablets e celulares */
@media (max-width: 768px) {
    .st-dual-btns {
        flex-direction: column;
        align-items: center;
    }
    .st-btn-yellow {
        width: 100%;
        max-width: 320px;
    }
}


/* Ajuste no botão amarelo para comportar os dois */
.st-btn-yellow {
    background: #FFD400;
    color: #000;
    padding: 18px 30px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre o ícone e o texto */
    transition: all 0.3s ease;
    flex: 1; /* Faz os botões terem o mesmo tamanho */
    max-width: 280px; /* Evita que fiquem largos demais em telas grandes */
    justify-content: center;
}

.st-btn-yellow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 212, 0, 0.3);
    background: #fff; /* Inverte a cor no hover para um efeito premium */
}

/* Responsividade: Empilhar em celulares */
@media (max-width: 600px) {
    .st-dual-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .st-btn-yellow {
        width: 100%;
        max-width: 100%;
    }
}

.st-dual-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.st-btn-yellow {
    background: #FFD400;
    color: #000;
    padding: 18px 25px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem; /* Ajustado para caber o texto longo */
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 300px;
    justify-content: center;
    white-space: nowrap; /* Impede que o texto quebre em duas linhas */
}

.st-btn-yellow i {
    font-size: 1.2rem;
}

.st-btn-yellow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 212, 0, 0.4);
    background: #fff;
}

/* Ajuste crucial para tablets e celulares */
@media (max-width: 768px) {
    .st-dual-btns {
        flex-direction: column;
        align-items: center;
    }
    .st-btn-yellow {
        width: 100%;
        max-width: 320px;
    }
}


/* --- CONTATO PREMIUM --- */
.st-contact-premium { background: #fff; }

.st-contact-main { padding: 80px 0 120px; }
.st-contact-grid { 
    display: grid; 
    grid-template-columns: 0.9fr 1.1fr; 
    gap: 80px; 
    align-items: start; 
}

/* Informações de Contato */
.st-contact-lead { font-size: 1.1rem; color: #666; margin-bottom: 40px; }
.st-info-list { display: flex; flex-direction: column; gap: 30px; }
.st-info-item { display: flex; gap: 20px; align-items: flex-start; }
.st-info-item i { 
    background: #FFD400; 
    color: #000; 
    width: 45px; 
    height: 45px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 4px; 
    font-size: 1.2rem;
}
.st-info-item strong { display: block; font-size: 1rem; color: #111; }
.st-info-item p { color: #888; margin: 0; }

/* Formulário Profissional */
.st-contact-form-wrapper { 
    background: #fcfcfc; 
    padding: 50px; 
    border-radius: 8px; 
    border: 1px solid #eee;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.st-form-group { margin-bottom: 25px; }
.st-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.st-custom-form label { 
    display: block; 
    font-weight: 700; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 8px; 
    color: #333;
}

.st-custom-form input, 
.st-custom-form select, 
.st-custom-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    transition: 0.3s;
}

.st-custom-form input:focus, 
.st-custom-form select:focus, 
.st-custom-form textarea:focus {
    border-color: #FFD400;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.1);
}

.st-btn-submit {
    width: 100%;
    background: #FFD400;
    color: #000;
    border: none;
    padding: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
}

.st-btn-submit:hover {
    background: #111;
    color: #FFD400;
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 991px) {
    .st-contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .st-contact-form-wrapper { padding: 30px 20px; }
    .st-form-row { grid-template-columns: 1fr; }
}

/* Esconde mensagens de erro por padrão */
.error-msg {
    display: none;
    color: #e74c3c;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Estilo para campo inválido */
.st-form-group.invalid input,
.st-form-group.invalid select,
.st-form-group.invalid textarea {
    border-color: #e74c3c;
    background-color: #fffafa;
}

.st-form-group.invalid .error-msg {
    display: block;
}

/* Mensagens de Sucesso/Erro Gerais */
.success-box { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.error-box { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.st-counter {
    font-variant-numeric: tabular-nums; /* Mantém os números com largura fixa durante a contagem */
    display: inline-block;
    min-width: 1.2ch; /* Evita que o layout balance lateralmente */
}
/* --- HERO OPÇÃO 1: MINIMALISTA --- */
.st-hero-simple {
    padding: 140px 0 100px; /* Espaçamento generoso para transmitir luxo */
    background-color: #F8F9FA; /* Cinza institucional muito leve */
    border-bottom: 1px solid #eee;
    text-align: left;
}

.st-hero-inner {
    max-width: 900px; /* Limita a largura para melhor leitura */
}

/* Texto pequeno acima do título */
.st-tag-line {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    display: block;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

/* Linha decorativa antes da tag */
.st-tag-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background-color: #FFD400; /* Detalhe em amarelo Startools */
    transform: translateY(-50%);
}

/* Título Principal */
.st-title-large {
    font-size: 3.8rem; /* Tamanho de impacto */
    font-weight: 300; /* Peso leve para ar moderno */
    line-height: 1.1;
    color: #1A1A1A;
    margin: 0;
}

/* Negrito estratégico no título */
.st-title-large strong {
    font-weight: 800;
    color: #000;
}

/* Traço amarelo de assinatura */
.st-line-decorator {
    width: 80px;
    height: 6px;
    background-color: #FFD400;
    margin-top: 40px;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 991px) {
    .st-title-large {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .st-hero-simple {
        padding: 80px 0 60px;
    }
    .st-title-large {
        font-size: 2.2rem;
    }
    .st-tag-line {
        font-size: 12px;
        padding-left: 40px;
    }
}

/* --- GERAL --- */
.st-about-premium { font-family: 'Montserrat', sans-serif; overflow-x: hidden; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

/* --- HERO (TOPO) --- */
.st-hero-simple { padding: 120px 0; background: #f8f9fa; }
.st-hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.st-hero-inner { flex: 1; }
.st-tag-line { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: #888; display: block; margin-bottom: 20px; position: relative; padding-left: 50px; }
.st-tag-line::before { content: ''; position: absolute; left: 0; top: 50%; width: 35px; height: 2px; background: #FFD400; transform: translateY(-50%); }
.st-title-large { font-size: 3.5rem; font-weight: 300; line-height: 1.1; color: #1a1a1a; }
.st-title-large strong { font-weight: 800; color: #000; }
.st-line-decorator { width: 80px; height: 6px; background: #FFD400; margin-top: 30px; }

/* ANIMAÇÃO DA IMAGEM */
.st-hero-image-wrapper { flex: 0.8; display: flex; justify-content: flex-end; }
.st-floating-img { 
    max-width: 100%; 
    height: auto; 
    animation: floating 3s ease-in-out infinite; 
}
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- NÚMEROS --- */
.st-numbers-strip { background: #111; color: #fff; padding: 60px 0; }
.st-numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.st-number-val { font-size: 3rem; font-weight: 900; color: #fff; font-variant-numeric: tabular-nums; }
.st-number-val small { color: #FFD400; }
.st-number-item p { color: #888; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; }

/* --- MISSÃO & TEXTOS --- */
.st-intro-section { padding: 100px 0; text-align: center; }
.st-intro-content { max-width: 800px; margin: 0 auto; }
.st-section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
.st-section-title span { color: #FFD400; }
.st-mission-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 60px; padding: 80px 0; border-top: 1px solid #eee; }
.st-badge-number { font-size: 8rem; font-weight: 900; line-height: 0.8; }
.st-badge-divider { width: 60px; height: 5px; background: #FFD400; margin: 20px 0; }
.st-list-premium { list-style: none; padding: 0; margin-top: 30px; }
.st-list-premium li { display: flex; align-items: center; gap: 15px; font-weight: 700; margin-bottom: 10px; }
.st-list-premium li span { width: 30px; height: 3px; background: #FFD400; }

/* --- BOTÕES DUPLOS --- */
.st-dark-products-card { background: #111; color: #fff; padding: 60px; border-radius: 8px; text-align: center; }
.st-yellow-title { color: #FFD400; font-size: 2rem; margin-bottom: 15px; }
.st-dual-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }
.st-btn-yellow { background: #FFD400; color: #000; padding: 18px 25px; text-decoration: none; font-weight: 800; border-radius: 4px; flex: 1; max-width: 280px; display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.3s; }
.st-btn-yellow:hover { transform: translateY(-5px); background: #fff; }

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .st-hero-flex, .st-numbers-grid, .st-mission-layout, .st-dual-btns { grid-template-columns: 1fr; flex-direction: column; text-align: center; }
    .st-hero-image-wrapper { justify-content: center; }
    .st-title-large { font-size: 2.5rem; }
}

/* --- ESTILIZAÇÃO DOS QUANTITATIVOS --- */
.st-quantitativos {
    background-color: #0f0f0f; /* Preto conforme imagem */
    padding: 80px 0;
    color: #ffffff;
}

.st-quant-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.st-quant-num {
    font-size: 4.5rem; /* Destaque massivo */
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -2px;
}

/* Detalhes em Amarelo para Símbolos (+ e %) */
.st-symbol {
    color: #FFD400;
    font-size: 2.5rem;
    vertical-align: top;
    margin-left: 5px;
}

/* Texto de legenda em cinza para foco no número */
.st-quant-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888888;
    font-weight: 700;
    margin: 0;
}

/* Responsividade para Mobile */
@media (max-width: 991px) {
    .st-quant-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .st-quant-num {
        font-size: 3rem;
    }
}

/* --- BARRA DE STATS (ESTILO IMAGE_D5F265) --- */
.st-stats-bar {
    background: #0f0f0f;
    padding: 100px 0;
    color: #fff;
}

.st-stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.st-number {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.st-number .st-plus {
    color: #FFD400;
    font-size: 2.5rem;
    margin-left: 5px;
}

.st-stat-card p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    font-weight: 700;
}

/* --- SEÇÃO MISSÃO (ESTILO IMAGE_D60124) --- */
.st-mission-premium {
    padding: 120px 0;
    background: #fff;
}

.st-mission-flex {
    display: flex;
    align-items: center;
    gap: 100px;
}

.st-big-year {
    font-size: 10rem;
    font-weight: 900;
    line-height: 0.8;
    margin: 0;
    color: #111;
}

.st-badge-line {
    width: 60px;
    height: 6px;
    background: #FFD400;
    margin: 25px 0;
}

.st-mission-badge p {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

/* LISTA DE PILARES */
.st-pillars-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.st-pillars-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.st-pillar-line {
    display: flex;
    gap: 5px;
}

.st-pillar-line span {
    width: 25px;
    height: 3px;
    background: #FFD400;
}

.st-pillars-list li strong {
    font-size: 1.1rem;
    color: #111;
    font-weight: 700;
}

/* Responsividade */
@media (max-width: 991px) {
    .st-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
    .st-mission-flex { flex-direction: column; text-align: center; gap: 60px; }
    .st-badge-line { margin: 25px auto; }
    .st-pillars-list li { justify-content: center; }
}

/* --- SEÇÃO TRIVISION STARTTOOLS --- */
.st-mission-innovation {
    background: #ffffff;
    overflow: hidden;
}

.st-triple-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr; /* Coluna central ligeiramente maior */
    gap: 40px;
    align-items: center;
}

/* COLUNA ESQUERDA */
.st-big-number { font-size: 8rem; font-weight: 900; line-height: 0.8; color: #111; margin: 0; }
.st-yellow-line { width: 50px; height: 5px; background: #FFD400; margin: 20px 0; }
.st-badge-text { font-weight: 800; text-transform: uppercase; color: #888; letter-spacing: 1px; }
.st-title-md { font-size: 2.2rem; font-weight: 800; margin-top: 40px; }
.st-title-md span { color: #FFD400; }

/* COLUNA CENTRAL & ANIMAÇÃO */
.st-image-main-wrapper {
    position: relative;
    text-align: center;
    padding: 20px;
}

.st-img-animated {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    animation: floatingSubtle 4s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.st-img-shadow {
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: rgba(0,0,0,0.1);
    filter: blur(15px);
    border-radius: 50%;
    animation: shadowPulse 4s ease-in-out infinite;
}

@keyframes floatingSubtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes shadowPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(0.8); opacity: 0.2; }
}

/* COLUNA DIREITA */
.st-pillars-innovation { list-style: none; padding: 0; }
.st-pillars-innovation li { 
    display: flex; 
    gap: 20px; 
    margin-bottom: 35px; 
    padding: 20px;
    background: #fcfcfc;
    border-radius: 4px;
    transition: 0.3s;
}

.st-pillars-innovation li:hover { background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateX(10px); }

.st-pillar-icon span { display: block; width: 20px; height: 3px; background: #FFD400; margin-bottom: 4px; }

.st-pillar-txt strong { display: block; font-size: 1.1rem; color: #111; margin-bottom: 5px; }
.st-pillar-txt p { font-size: 0.9rem; color: #666; margin: 0; }

/* RESPONSIVIDADE */
@media (max-width: 1100px) {
    .st-triple-layout { grid-template-columns: 1fr; text-align: center; }
    .st-col-left, .st-col-right { order: 2; }
    .st-col-center { order: 1; margin-bottom: 50px; }
    .st-pillars-innovation li { justify-content: center; text-align: left; }
    .st-yellow-line { margin: 20px auto; }
}

/* --- CONTAINER PRINCIPAL --- */
.st-triple-layout-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

/* FORÇA TUDO EM UMA LINHA SÓ */
.st-main-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr; /* Coluna central maior para a imagem */
    align-items: center;
    gap: 30px;
}

/* --- COLUNA ESQUERDA --- */
.st-big-year { font-size: 7rem; font-weight: 900; line-height: 0.8; color: #111; margin: 0; }
.st-line-y { width: 50px; height: 5px; background: #FFD400; margin: 20px 0; }
.st-label-min { font-weight: 800; text-transform: uppercase; color: #888; letter-spacing: 1px; font-size: 13px; }
.st-title-small { font-size: 1.8rem; font-weight: 800; margin-top: 30px; }
.st-title-small span { color: #FFD400; }

/* --- COLUNA CENTRAL (IMAGEM) --- */
.st-img-container {
    position: relative;
    text-align: center;
    z-index: 5;
}

.st-img-float {
    width: 100%;
    max-width: 521px; /* Tamanho solicitado */
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    animation: floatAnim 4s ease-in-out infinite;
}

.st-img-shadow {
    width: 70%;
    height: 15px;
    background: rgba(0,0,0,0.1);
    margin: 10px auto 0;
    border-radius: 50%;
    filter: blur(10px);
    animation: shadowPulse 4s ease-in-out infinite;
}

/* --- COLUNA DIREITA (LISTA) --- */
.st-pillar-list { list-style: none; padding: 0; }
.st-pillar-list li { display: flex; gap: 15px; margin-bottom: 25px; transition: 0.3s; }
.st-pillar-list li:hover { transform: translateX(10px); }
.st-pillar-icon span { display: block; width: 18px; height: 3px; background: #FFD400; margin-bottom: 3px; }
.st-pillar-info strong { display: block; font-size: 1.1rem; color: #111; }
.st-pillar-info p { font-size: 0.9rem; color: #666; margin: 0; line-height: 1.4; }

/* --- ANIMAÇÕES --- */
@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes shadowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(0.8); opacity: 0.2; }
}

/* --- RESPONSIVO PARA MOBILE --- */
@media (max-width: 1024px) {
    .st-main-row {
        grid-template-columns: 1fr; /* No mobile ele empilha para não quebrar */
        text-align: center;
    }
    .st-pillar-list li { justify-content: center; }
    .st-line-y { margin: 20px auto; }
}

/* =====================================================
   SEÇÃO QUEM SOMOS - DESIGN PREMIUM
   ===================================================== */
.st-about-modern {
        padding: 40px 0;
    background: #ffffff;
    overflow: hidden;
}

.st-modern-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* --- Lado Visual (Esquerda) --- */
.st-modern-visual {
    position: relative;
    padding: 20px;
}

.st-main-image-wrapper {
    position: relative;
    z-index: 2;
}

.st-img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

/* Selo de 15 Anos Flutuante */
.st-experience-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    background: var(--yellow);
    padding: 30px;
    border-radius: 15px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 10px 10px 30px rgba(255, 184, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.st-exp-num {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--black);
}

.st-exp-txt {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

/* Decorador Geométrico ao fundo */
.st-shape-decorator {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 300px;
    height: 300px;
    background: var(--light-gray);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
}

/* --- Lado Conteúdo (Direita) --- */
.st-upper-title {
    color: var(--yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.st-modern-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.st-modern-title span {
    color: var(--yellow);
    position: relative;
}

.st-description {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 40px;
}

/* Missão e Visão lado a lado */
.st-mission-vision-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.st-mv-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    transition: var(--transition);
}

.st-mv-item:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.st-mv-item i {
    color: var(--yellow);
    font-size: 1.5rem;
}

.st-mv-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.st-mv-item p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
}

/* Barra de Destaques Final */
.st-features-strip {
    display: flex;
    gap: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.st-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.st-feat-icon {
    color: #27ae60;
    font-weight: 900;
}

/* Animação do Selo */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsivo */
@media (max-width: 991px) {
    .st-modern-grid { grid-template-columns: 1fr; gap: 60px; }
    .st-experience-badge { left: 20px; top: -20px; padding: 20px; }
    .st-exp-num { font-size: 2.5rem; }
    .st-modern-title { font-size: 2.2rem; }
    .st-mission-vision-box { grid-template-columns: 1fr; }
}

/* =====================================================
   PÁGINA DE EVENTOS - STARTOOLS (COMPLETO)
   ===================================================== */


/* 1. Cabeçalho da Página (Hero Section) */
.header-eventos-topo {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.header-eventos-topo h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.header-eventos-topo p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* 2. Container e Estrutura da Lista */
.lista-eventos-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
}

.eventos-timeline-expandida {
    display: flex;
    flex-direction: column;
}

/* 3. Linha do Evento (Grid Ajustado para evitar quebra) */
.evento-row-expandida {
    display: grid;
    /* A última coluna agora usa 'max-content' para não apertar o botão */
    grid-template-columns: 200px 1fr max-content; 
    align-items: center;
    gap: 30px;
    padding: 45px 0;
    border-bottom: 1px solid #e0e0e0;
    background-color: transparent;
}

/* 4. Coluna da Data */
.data-badge-flat {
    color: #FFB800;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.data-badge-flat i {
    font-size: 1.1rem;
}

/* 5. Coluna de Informações */
.titulo-evento-clean {
    margin: 0 0 8px 0;
    font-size: 1.7rem;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
}

.resumo-evento {
    color: #777;
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 650px;
}

/* 6. Coluna do Botão (Quadrado e Sem Quebra) */
.col-botao {
    display: flex;
    justify-content: flex-end;
}

.btn-acessar-flat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    border: 2px solid #000;
    padding: 15px 35px; /* Padding generoso */
    border-radius: 0px; /* Quadrado */
    white-space: nowrap; /* FORÇA UMA LINHA SÓ */
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-acessar-flat:hover {
    background-color: #000;
    color: #FFB800;
}

.btn-acessar-flat i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-acessar-flat:hover i {
    transform: translateX(5px);
}

/* 7. Paginação Premium */
.paginacao-eventos {
    margin-top: 50px;
    text-align: center;
}

/* --- PAGINA INTERNA DE EVENTOS --- */
.st-pagina-evento {
    padding-top: 60px;
    background-color: #fff;
}

/* Header */
.evento-header-premium {
    text-align: center;
    margin-bottom: 50px;
}

.badge-data-interna {
    background: #f8f8f8;
    color: #FFB800;
    padding: 6px 15px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.entry-title-premium {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    margin: 15px 0;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.link-site-oficial {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.link-site-oficial span {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}

.link-site-oficial:hover {
    color: #FFB800;
}

/* Grid Layout */
.evento-grid-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 80px;
}

/* Galeria Moderna */
.galeria-destaque-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    overflow: hidden;
    margin-bottom: 15px;
}

.galeria-destaque-card img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.thumbnails-grid-moderno {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.thumb-box {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    height: 80px;
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.thumb-box.ativo {
    border-color: #FFB800;
}

.thumb-box.ativo img, .thumb-box:hover img {
    opacity: 1;
}

/* Coluna de Texto */
.info-card-content {
    background: #fff;
    position: sticky;
    top: 100px;
}

.sobre-evento-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFB800;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* Outros Eventos Section */
.section-outros-eventos {
    background-color: #fcfcfc;
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.title-section-center {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Responsivo */
@media (max-width: 991px) {
    .evento-grid-main {
        grid-template-columns: 1fr;
    }
    .entry-title-premium {
        font-size: 2.5rem;
    }
    .galeria-destaque-card img {
        height: 400px;
    }
}


/* =====================================================
   RESPONSIVIDADE: LISTA DE EVENTOS (Timeline)
   ===================================================== */

/* 1. Tablets (Até 991px) */
@media (max-width: 991px) {
    .evento-row-expandida {
        grid-template-columns: 150px 1fr; /* Remove a terceira coluna do botão */
        gap: 20px;
        padding: 30px 0;
    }

    /* Move o botão para baixo da descrição ocupando toda a largura ou alinhado à esquerda */
    .col-botao {
        grid-column: 2; /* Fica abaixo do texto na coluna da info */
        justify-content: flex-start;
        margin-top: 10px;
    }

    .titulo-evento-clean {
        font-size: 1.4rem;
    }
}

/* 2. Celulares Grandes (Até 768px) */
@media (max-width: 768px) {
    .header-eventos-topo {
        padding: 40px 20px;
    }

    .header-eventos-topo h1 {
        font-size: 2rem;
    }

    .evento-row-expandida {
        display: flex; /* Muda de Grid para Flex Column */
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 40px 0;
    }

    /* Data em destaque no topo do card */
    .data-badge-flat {
        background: #fdf6e3; /* Um fundo sutil para dar destaque */
        padding: 5px 12px;
        border-radius: 4px;
        font-size: 0.8rem;
    }

    .titulo-evento-clean {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .resumo-evento {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    /* Botão Full Width no Mobile para facilitar o clique */
    .col-botao {
        width: 100%;
    }

    .btn-acessar-flat {
        width: 100%;
        padding: 18px 20px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}

/* 3. Ajuste para a Página Interna no Mobile */
@media (max-width: 480px) {
    .entry-title-premium {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }

    .badge-data-interna {
        font-size: 0.75rem;
    }

    .galeria-destaque-card img {
        height: 250px; /* Reduz altura da imagem principal */
    }

    .thumbnails-grid-moderno {
        grid-template-columns: repeat(4, 1fr); /* 4 miniaturas por linha */
    }
}
/* =====================================================
   LINHA DE PRODUTOS - STARTOOLS PREMIUM
   ===================================================== */

.st-produtos-container {
    padding-bottom: 100px;
    background-color: #ffffff;
}

/* Header da Seção */
.st-produtos-header {
    padding: 100px 0 60px;
    text-align: center;
}

.st-category-label {
    display: block;
    color: #FFB800;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.st-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.st-main-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.st-header-line {
    width: 60px;
    height: 4px;
    background: #000;
    margin: 0 auto;
}

/* Grid de Produtos */
/* =====================================================
   GRID E CARDS DE PRODUTOS - STARTOOLS PREMIUM
   ===================================================== */

/* Grid de Produtos */
.st-produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px; /* Reduzi um pouco para equilibrar com a sombra */
    margin-top: 40px;
    padding: 20px 10px; /* Espaço para a sombra não cortar nas laterais */
}

/* Card do Produto - AGORA COM FUNDO BRANCO E SOMBRA */
.st-product-card {
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0; /* Borda bem sutil */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Sombra elegante e suave */
    position: relative;
}

/* Efeito de Elevação no Hover */
.st-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* Sombra mais profunda ao flutuar */
}

/* Área da Imagem */
.st-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff; /* Um fundo quase branco para destacar o produto */
    border-bottom: 1px solid #f0f0f0;
}

.st-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px; /* Mais respiro para o produto */
    transition: transform 0.6s ease;
}

/* Overlay de Ação (Ajustado para o novo card) */
.st-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.st-product-card:hover .st-product-overlay {
    opacity: 1;
}

/* Botão Quadrado */
.st-btn-quickview {
    color: #FFB800;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem;
    border: 2px solid #FFB800;
    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    background: transparent;
    border-radius: 0; /* Garante que é quadrado */
}

.st-btn-quickview:hover {
    background: #FFB800;
    color: #000;
}

/* Informações do Produto (Ajustado com Padding Interno) */
.st-product-content {
    padding: 25px; /* Padding interno para não encostar na borda do card */
}

/* Estilo do Ranking de Estrelas */
.st-product-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
    color: #FFB800; /* Cor das estrelas */
    font-size: 0.8rem;
}

.st-product-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.st-product-desc {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .st-produtos-header {
        padding: 70px 0 40px;
    }

    .st-main-title {
        font-size: 1.6rem;
        letter-spacing: -1px;
    }

    .st-main-description {
        font-size: 1rem;
        padding: 0 15px;
    }

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

    .st-product-content {
        padding: 20px;
    }

    .st-product-title {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {

    .st-produtos-header {
        padding: 50px 0 30px;
    }

    .st-category-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .st-main-title {
        font-size: 3.1rem;
        letter-spacing: -0.5px;
    }

    .st-main-description {
        font-size: 0.95rem;
    }

    .st-produtos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 10px;
    }

    .st-product-image img {
        padding: 20px;
    }

    .st-product-title {
        font-size: 1rem;
    }

    .st-product-desc {
        font-size: 0.8rem;
    }

    /* 🔥 Overlay sempre visível no mobile (não existe hover) */
    .st-product-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(0,0,0,0.75),
            rgba(0,0,0,0)
        );
        align-items: flex-end;
        padding-bottom: 20px;
    }

    .st-btn-quickview {
        font-size: 0.7rem;
        padding: 10px 20px;
    }
}

/* Container de texto interno */
.st-product-content {
    padding: 20px 25px 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Faz o conteúdo preencher o card */
}

/* Estilo da Descrição */
.st-product-desc {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 10px;
    /* Corta o texto em 3 linhas caso seja muito grande (Opcional) */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ajuste no Título para não colar na descrição */
.st-product-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin: 5px 0;
    min-height: 2.4em; /* Garante alinhamento se o título quebrar linha */
    display: flex;
    align-items: center;
}

/* Sombra e Fundo do Card (Reforço) */
.st-product-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%; /* Garante que todos os cards no grid tenham a mesma altura */
    display: flex;
    flex-direction: column;
}

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

/* Estilização da lista de descrição no card */
.st-description-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.st-description-list li {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px; /* Espaço para o ícone */
}

/* Criando o marcador personalizado (bolinha amarela) */
.st-description-list li::before {
    content: "•";
    color: #FFB800; /* Cor padrão StarTools */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 18px;
}

/* ===============================
   CATÁLOGO STARTOOLS
   =============================== */

.startools-catalogo-card {
    max-width: 420px;
    margin: 60px auto;
    padding: 40px 30px;
    background: #ffffff;
    border: 1px solid #eee;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    text-align: center;
}

/* Título */
.startools-catalogo-card h3 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #000;
}

/* Botão */
.startools-btn-catalogo {
    display: inline-block;
    margin-bottom: 25px;
    padding: 14px 36px;
    background: #ffb800;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.startools-btn-catalogo:hover {
    background: #000;
    color: #ffb800;
}

/* QR Code */
.startools-qrcode {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Texto auxiliar abaixo do QR */
.startools-qrcode::after {
    content: "Escaneie para baixar no celular";
    display: block;
    margin-top: 12px;
    font-size: 0.8rem;
    color: #666;
}

/* Responsivo */
@media (max-width: 480px) {
    .startools-catalogo-card {
        margin: 40px 15px;
        padding: 30px 20px;
    }

    .startools-catalogo-card h3 {
        font-size: 1.6rem;
    }
}
/* Título da página de catálogo */
.page-title,
.entry-title {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Linha amarela abaixo do título */
.page-title::after,
.entry-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #ffb800;
    margin-top: 10px;
}

.page-description,
.entry-content > p:first-child {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin-bottom: 40px;
}