@charset "UTF-8";
/***!  /templates/shaper_helixultimate/css/article-custom.css?34491e  !***/

/* =========================================
   1. LAYOUT DO CABEÇALHO (HERO SECTION)
   ========================================= */

.article-header-layout {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
    align-items: center;
    padding: 100px 20px 0px; /* Zero em baixo para colar no SVG */
    background: #000;
    position: relative;
    z-index: 1;
}

.article-header-content {
    flex: 1;
    min-width: 0;
    justify-content: center; 
}

.article-header-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.article-header-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover; 
}

.article-title-wrapper {
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Garante que badges fiquem no centro também */
}

.article-title {
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    text-align: center;
}

.article-title-wrapper .badge {
    display: inline-block;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

/* --- Wrapper dos Botões (Lado a lado no PC, Empilhado no Mobile) --- */
.article-buttons-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    /* Ajuste aqui o alinhamento se quiser (center, flex-start) */
    justify-content: center; 
}

/* --- Botão Telefone Vermelho Fixo --- */
.btn-phone-red {
    background-color: #ff0000 !important;
    border: 2px solid #ff0000 !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    padding: 10px 25px;
    font-size: 1rem !important;
    transition: all 0.3s ease;
    display: inline-flex;
    width: auto !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-phone-red:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* --- Responsividade dos Botões --- */
@media (max-width: 768px) {
    .article-buttons-wrapper {
        flex-direction: column;
        align-items: stretch; /* Botões ocupam largura total ou centralizam */
    }
    
    .article-buttons-wrapper .btn {
        width: 100% !important; /* Força largura total no mobile para ficar bonito */
        justify-content: center;
    }
}

/* --- ESTILO DA LOGO EMPRESA (Campo: logo-empresa) --- */
.client-logo-wrapper { 
    margin-bottom: 25px; 
    display: flex;
    justify-content: center; /* Centraliza a logo */
}

.client-logo-circle {
    width: 170px; height: 170px;
    background: #fff; border-radius: 50%;
    /* Borda Verde Neon Padrão (Pode ajustar a cor se quiser) */
    border: 5px solid #1BFD69; 
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; 
    box-shadow: 0 5px 20px rgba(255,255,255,0.1);
}

.client-logo-circle img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Preenchimento total */
    border-radius: 50%; 
}

/* Ajuste Mobile para a Logo */
@media (max-width: 768px) {
    .client-logo-circle {
        width: 150px;
        height: 150px;
    }
}

/* --- Responsividade do Header --- */
@media (max-width: 992px) {
    .article-header-layout {
        gap: 1.5rem;
    }
    .article-header-image {
        flex: 0 0 40%;
        max-width: 40%;
    }
}

@media (max-width: 768px) {
    .article-header-layout {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start; 
        padding-bottom: 20px; /* Um pouco de respiro no mobile */
    }
    
    .article-header-content {
        order: 1;
        width: 100%; 
    }
    
    .article-header-image {
        order: 2;
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .article-header-image img {
        max-height: 300px; /* Limita altura da imagem no celular */
    }
    
    .custom-field-item {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .article-header-layout {
        gap: 0.75rem;
    }
    .article-title {
        font-size: 1.5rem;
    }
}

/* =========================================
   2. CUSTOM FIELDS (TIPOGRAFIA E CORES)
   ========================================= */

.article-custom-fields {
    display: flex !important;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.custom-field-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    justify-content: center;
}

.field-label {
    font-weight: 600;
    min-width: fit-content;
}

/* Ocultar container padrão do Joomla */
.com-content-article .fields-container {
    display: none !important;
}

/* Estilos Específicos de Texto */
.anuncio-titulo-h1 .field-value {
    font-size: 2.5rem;
    color: #1BFD69 !important; /* Verde Neon */
    font-weight: bold;
    line-height: 1.1;
   text-align: center;
}

.anuncio-titulo-h2 .field-value {
    font-size: 1.4rem;
    color: #fff;
    font-weight: bold;
   text-align: center;
}

.anuncio-texto-destaque .field-value {
    font-size: 1.5rem;
    color: #fff; 
    font-weight: bold;
    text-align: center;
}

/* Classes utilitárias de cor */
.field-value .verde { color: #1BFD69; }
.field-value .branco { color: #fff; }
.field-value .amarelo { color: #fff107; }

/* Ajustes Mobile de Texto */
@media (max-width: 768px) {
    .anuncio-titulo-h1 .field-value { font-size: 1.8rem; line-height: 1.2; }
    .anuncio-titulo-h2 .field-value { font-size: 1.3rem; line-height: 1.3; }
    .anuncio-texto-destaque .field-value { font-size: 1.3rem; line-height: 1.3; }
}

/* =========================================
   3. BOTÕES (WHATSAPP E AÇÕES)
   ========================================= */

.article-action-button .btn {
    width: auto;
}

@media (min-width: 1400px) {
  .mt-4 { margin-bottom: 1.5rem !important; }
}

.btn-whatsapp-custom {
    background-color: #25D366 !important; 
    border-color: #25D366 !important;
    color: #ffffff !important; 
    border-radius: 50px !important; 
    font-weight: 600 !important; 
    padding: 10px 25px;
    font-size: 1rem !important; 
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-decoration: none;
}

.btn-whatsapp-custom:hover {
    background-color: #128C7E !important; 
    border-color: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    color: #fff !important;
}

.btn-whatsapp-custom .fab {
    font-size: 1.2em;
}

/* Ajuste Mobile dos Botões */
@media (max-width: 768px) {
    .article-action-button { width: 100%; }
    .article-action-button .btn-whatsapp-custom {
        width: 100%;    
        display: flex;
        justify-content: center;  
    }
}

/* Botão Flutuante (Floating) com Scroll */
.article-floating-button {
    position: fixed;
    bottom: 25px; 
    right: 25px;  
    z-index: 9999;
    
    /* Estado Inicial: Invisível e deslocado para baixo */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    
    pointer-events: none; /* Evita cliques acidentais quando invisível */
}

/* Estado Visível (Adicionado via JS) */
.article-floating-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Reativa o clique */
}

.article-floating-button a {
    /* Garante que o link funcione */
    pointer-events: auto; 
}

/* =========================================
   4. SHAPE DIVIDER (ARCO / MORRO)
   ========================================= */

.custom-shape-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0; 
    transform: rotate(180deg); /* Inverte para criar o efeito pendurado no header */
    background-color: transparent; 
    margin-top: -1px; /* Remove linha branca fina */
    z-index: 2;
}

.custom-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px); 
    height: 70px; 
    transform: scaleX(-1); /* Inversão horizontal opcional */
}

.custom-shape-divider .shape-fill {
    fill: #1BFD69; /* Verde Neon do seu Título */
}

@media (max-width: 768px) {
    .custom-shape-divider svg {
        height: 40px; /* Mais suave no mobile */
    }
}

/* =========================================
   5. SEÇÃO DE SERVIÇOS
   ========================================= */

.bloco-servicos {
  text-align: center;
  padding-bottom: 1.5rem;
}

.titulo-servicos {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.lista-servicos {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: stretch;
}

.servico-item {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%; /* Garante altura igual */
}

.servico-item:hover {
  transform: translateY(-4px);
}

.servico-item img {
  width: 100%;
  height: 200px; /* Altura fixa para alinhar */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.servico-item h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: bold;
}

.servico-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

/* Responsividade Serviços */
@media (max-width: 992px) {
    .lista-servicos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .lista-servicos { grid-template-columns: 1fr; }
}

/* =========================================
   6. SEÇÃO DE DIFERENCIAIS
   ========================================= */

.bloco-diferenciais {
  background: #f9f9f9;
  padding: 40px 20px;
  border-radius: 20px;
  margin-top: 2rem;
}

.titulo-diferenciais {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.lista-diferenciais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.diferencial-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.diferencial-item:hover {
  transform: translateY(-4px);
}

.diferencial-item i, 
.diferencial-item span[class^="fa"] { /* Suporte para FontAwesome */
  font-size: 2.5rem;
  padding-bottom: 15px;
  color: #1BFD69;
  display: block;
  transition: transform 0.3s ease;
}

.diferencial-item:hover i {       
    transform: scale(1.1);
    color: #25D366; 
}

.diferencial-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.diferencial-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

/* Ajustes Finais de Corpo de Texto */
.com-content-article__body {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0px 0px; /* O grid já tem gap, remove padding lateral excessivo */
}

@media (max-width: 768px) {
   .com-content-article__body {
        padding: 0px 15px !important;
    }
}
