/*
Theme Name: Planefibra Theme
Theme URI: http://planefibra.local
Author: Desenvolvimento Planefibra
Author URI: http://planefibra.local
Description: Tema institucional da Planefibra, desenvolvido do zero com HTML, CSS e WordPress.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: planefibra-theme
*/

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HERO / BANNER ===== */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.hero p {
  font-size: 1.05rem;
  margin-bottom: 25px;
}

/* ===== BOTÃO PADRÃO ===== */
.btn {
  background: #ee2c3c;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 500;
  transition: background 0.3s;
  display: inline-block;
}
.btn:hover {
  background: #d92630;
}

/* ===== SOBRE ===== */
/* ===== SOBRE (PADRÃO INSTITUCIONAL) ===== */
.sobre{
    padding: 90px 20px;
    background: #fff;
}

.sobre-grid{
    display: flex;
    align-items: center;
    gap: 70px;
}

/* TEXTO */
.sobre-texto{
    flex: 1;
    max-width: 620px;
}

.sobre-texto h2{
    font-size: clamp(2.2rem, 1.8rem + 1.4vw, 2.8rem); /* referência direta de resíduos */
    font-weight: 800;
    color: #1e1e1e;
    line-height: 1.15;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.sobre-texto h2 strong{
    color: #C52332;
}

.sobre-texto h3.sub{
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #C52332;
    margin-bottom: 26px;
}

/* PARÁGRAFOS — MESMO PADRÃO DE RESÍDUOS */
.sobre-texto p{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
}

/* IMAGEM */
.sobre-midia{
    flex: 1;
    display: flex;
    justify-content: center;
}

.sobre-img{
    width: 100%;
    max-width: 800px;
    height: auto;

}


/* RESPONSIVO */
@media (max-width: 900px){
    .sobre-grid{
        flex-direction: column;
        gap: 50px;
    }

    .sobre-texto{
        max-width: 100%;
    }

    .sobre-texto h2,
    .sobre-texto h3.sub{
        text-align: center;
    }
}


/* ============================================================
   SEÇÃO CARROSSEL – CORREÇÃO DE TÍTULO, SETAS E BOTÕES
============================================================ */

/* Afastar título do topo */
.produtos-home {
    padding: 140px 0 80px; /* aumentei o topo */
    background: #F5F5F5;
    position: relative;
}

/* Título estilo faixa (igual depoimentos) */
.produtos-home .sec-title {
    position: absolute;
    top: 30px; /* desce o título */
    left: 50%;
    transform: translateX(-50%);
    background: #C52332;
    color: #fff;
    padding: 16px 60px;
    border-radius: 0 0 12px 12px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    letter-spacing: .5px;
    z-index: 10;
}


/* =======================
       CARDS
======================= */

.card .link {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 1rem;
    background: #C52332 !important; /* cor da marca */
    color: #fff !important;
    border-radius: 6px 0 6px 6px;
    text-transform: uppercase;
    transition: .25s ease;
}

.card .link:hover {
    background: #A51D29 !important;
}


/* ================================
   SETAS DO CARROSSEL DE PRODUTOS 
===================================*/

.prod-carousel .prod-nav {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff !important;
    border: 2.5px solid #C52332;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transition: 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

/* ÍCONES INTERNOS — exatamente como o Swiper usa */
.prod-carousel .prod-nav::after {
    font-size: 35px;
    font-weight: 700;
    color: #C52332;
}

/* Ícone da esquerda */
.prod-carousel .prev::after {
    content: "‹";
}

/* Ícone da direita */
.prod-carousel .next::after {
    content: "›";
}

/* HOVER — mesmo efeito do depoimento */
.prod-carousel .prod-nav:hover {
    background: #C52332 !important;
    border-color: #C52332;
}

.prod-carousel .prod-nav:hover::after {
    color: #fff !important;
}

/* POSICIONAMENTO */
.prod-carousel .prev {
    left: -30px;
}

.prod-carousel .next {
    right: -30px;
}

/* ===============================
   SETAS – MOBILE (SEM SOBREPOR)
=============================== */
@media (max-width: 600px) {

    /* cria espaço abaixo do carrossel para as setas */
    .prod-carousel {
        padding-bottom: 90px;
        position: relative;
    }

    /* estilo das setas */
    .prod-carousel .prod-nav {
        width: 52px;
        height: 52px;
        top: auto;                 /* remove top:50% */
        bottom: 15px;              /* joga para baixo */
        transform: none;
        background: #ffffff !important;
        border: 2.5px solid #C52332;
        box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    }

    /* seta esquerda */
    .prod-carousel .prev {
        left: 50%;
        transform: translateX(-70px);
    }

    /* seta direita */
    .prod-carousel .next {
        right: 50%;
        transform: translateX(70px);
    }

    /* ícones menores */
    .prod-carousel .prod-nav::after {
        font-size: 24px;
    }
}
/* ===============================
   AJUSTE DO TÍTULO – MOBILE
=============================== */
@media (max-width: 600px) {

    .produtos-home .sec-title {
        position: relative;          
        top: auto;
        left: auto;
        transform: none;

        display: inline-block;
        margin: 0 auto 30px auto;

        padding: 14px 32px;
        font-size: 18px;
        line-height: 1.2;
        border-radius: 8px;

        white-space: nowrap;       
    }

    /* garante espaço acima do carrossel */
    .produtos-home {
        padding-top: 80px;
    }
}




/* ===== DIFERENCIAIS ===== */
.diferenciais {
  padding: 80px 20px;
  text-align: center;
}
.diferenciais h2 {
  margin-bottom: 40px;
}
.diferenciais .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.diferenciais .card {
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.diferenciais i {
  color: #C52332;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}



/* ===== WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}
.whatsapp-float img {
  width: 100%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .car-item { min-width: 50%; }
  .hero { height: 400px; }
}
@media (max-width: 600px) {
  .car-item { min-width: 100%; }
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.95rem; }
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  border-bottom: 3px solid #ee2c3c;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 15px 0;
  position: relative; /* <-- alterado de sticky para relative */
  z-index: 1000;
  transition: all 0.3s ease;
}

/* HEADER AO ROLAR (diminuído — se quiser manter o efeito suave quando ele reaparece) */
.header.shrink {
  padding: 5px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Quando estiver logado no WordPress */
.admin-bar .header {
    top: 32px; /* altura da admin bar desktop */
}


/* CONTEÚDO INTERNO */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.3s ease;
}

/* LOGO */
.logo img {
  height: 30px;
  display: block;
  transition: height 0.3s ease;
}
.header.shrink .logo img {
  height: 35px;
}

/* CONTAINER DIREITO (menu, busca, idiomas) */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 25px;
}

/* MENU */
.menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}
.menu a {
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s, font-size 0.3s ease;
}
.menu a:hover,
.menu .current-menu-item a {
  color: #ee2c3c;
}
.header.shrink .menu a {
  font-size: 0.9rem;
}

/* CAMPO DE BUSCA */
.search-form {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 5px 10px;
  background: #f9f9f9;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.search-form input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.9rem;
  width: 160px;
}
.search-form button {
  border: none;
  background: none;
  color: #666;
  cursor: pointer;
  padding-left: 5px;
}

/* ==== ÍCONES DE IDIOMAS ==== */
/* ============================
   ESTILO DO SELETOR DE IDIOMAS
=============================== */

.idiomas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
}

/* estilo básico das bandeiras */
.idiomas a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 2px solid transparent;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

/* tamanho dos ícones das bandeiras */
.idiomas a .fi {
    font-size: 22px;
    line-height: 1;
}

/* hover suave */
.idiomas a:hover {
    transform: scale(1.12);
    border-color: #C52332; /* cor da sua marca */
}

/* idioma ativo (o atual do Polylang) */
.idiomas a.active,
.idiomas a[aria-current="language"] {
    border-color: #C52332;
    box-shadow: 0 0 6px rgba(197, 35, 50, 0.4);
    transform: scale(1.08);
}

/* ============================
   RESPONSIVIDADE MOBILE
=============================== */

@media (max-width: 1024px) {
    .idiomas {
        gap: 10px;
    }

    .idiomas a {
        width: 32px;
        height: 32px;
    }

    .idiomas a .fi {
        font-size: 20px;
    }
}



/* ===== FOOTER ===== */
/* =======================================================
   RODAPÉ MODERNO — DESIGN PROFISSIONAL
   ======================================================= */


.pf-footer {
  background: #f4f4f4;
  color: #717170;
  font-family: 'Roboto', sans-serif;
  padding: 25px 0 0;
}

/* container principal */
.pf-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* logo com área de proteção */
.pf-logo-area {
  text-align: center;
  margin-bottom: 10px;
}

.pf-logo {
  width: 140px;
  height: auto;
}

/* GRID */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* TITULOS */
.pf-col h3 {
  font-size: 20px;
  font-weight: 700;
  color: #C52332;
  margin-bottom: 14px;
}

/* TEXTOS */
.pf-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* LINKS */
.pf-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-col ul li {
  margin-bottom: 8px;
}

.pf-col ul li a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s;
}

.pf-col ul li a:hover {
  color: #C52332;
}

/* redes sociais */
.pf-social a {
  color: #717170;
  font-size: 24px;
  margin-right: 12px;
  transition: 0.25s;
}

.pf-social a:hover {
  color: #C52332;
}

/* divisor institucional */
.pf-divider {
  width: 100%;
  height: 5px;
  background: #C52332;
  margin-top: 15px;
}

/* copyright */
.pf-copy {
  background: #C52332;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
}

/* Forçar tamanho adequado da logo no footer */
.pf-logo-area img.pf-logo {
  width: 160px !important;   /* ajuste aqui o tamanho ideal */
  max-width: 160px !important;
  height: auto !important;
  display: block;
  margin: 0 auto 4px;        /* espaço abaixo da logo */
}


/* ===== PÁGINA POLÍTICA DE PRIVACIDADE ===== */
.politica h1 {
  font-size: 2rem;
  font-weight: 700;
}

.politica h2 {
  margin-top: 40px;
  color: #ee2c3c;
  font-size: 1.3rem;
}

.politica h3 {
  margin-top: 25px;
  font-size: 1.1rem;
  color: #333;
}

.politica p, .politica ul {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.politica ul {
  list-style: disc;
  margin-left: 25px;
}

.politica a {
  color: #ee2c3c;
  text-decoration: none;
}
.politica a:hover {
  text-decoration: underline;
}
/* BANNER DE PRIVACIDADE */
.privacidade-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px 30px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
  border-top: 4px solid #ee2c3c;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.privacidade-banner p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.privacidade-banner a {
  color: #ee2c3c;
  font-weight: bold;
  text-decoration: none;
}

.privacidade-banner button {
  background: #ee2c3c;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.privacidade-banner button:hover {
  background: #d32032;
}
/* ==========================================
   CARROSSEL PRODUTOS — ESTRUTURA
========================================== */
.produtos-home {
  padding: 80px 20px;
  text-align: center;
}

.sec-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.title-divider {
  width: 20px;
  height: 20px;
  margin: 0 auto 40px;
  background-image: url('data:image/svg+xml;utf8,<svg width="40" height="25" xmlns="http://www.w3.org/2000/svg"><path fill="%23C52332" d="M20 0 40 25H0z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}

/* Wrapper geral */
.prod-carousel {
  position: relative;
}

.prod-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.prod-track {
  display: flex;
  gap: 30px;
  transition: transform .4s ease;
}

/* Cards */
.prod-item {
  min-width: 260px;
}

.prod-card {
  background: #fff;
  border-radius: 12px;
  display: block;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}

.prod-card:hover {
  transform: translateY(-4px);
}

.prod-img-wrap {
  width: 100%;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.prod-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.prod-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 15px 0;
}

/* Botão de ação */
/* ================================
   BOTÃO PADRÃO — PLANE FIBRA
================================ */
.prod-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: #C52332;
    color: #fff;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;

    border-radius: 6px 0 6px 6px;
    position: relative;
    margin-top: 14px;

    text-decoration: none;
    cursor: pointer;
    transition: .25s ease;

    box-shadow: 0 8px 22px rgba(0,0,0,.18);
}



/* hover */
.prod-btn:hover{
    background:#A51D29;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

/* foco acessível */
.prod-btn:focus{
    outline:none;
    box-shadow: 0 0 0 3px rgba(197,35,50,.35);
}

/* versão compacta (opcional) */
.prod-btn.sm{
    padding: 10px 26px;
    font-size: 14px;
}


/* ==========================================
   SETAS PREMIUM — IGUAL AOS DEPOIMENTOS
========================================== */

.prod-carousel .prod-nav {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #C52332;
    color: #C52332;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    /* sombra premium */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.25s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.prod-carousel .prod-nav:hover {
    background: #C52332;
    color: #fff;
    border-color: #C52332;
}

/* Setas posicionamento desktop */
.prod-carousel .prev { left: -40px; }
.prod-carousel .next { right: -40px; }

/* ==========================================
   RESPONSIVO
========================================== */

@media (max-width: 900px) {
    .prod-carousel .prev { left: -20px; }
    .prod-carousel .next { right: -20px; }
}

@media (max-width: 600px) {

    .prod-carousel .prod-nav {
        width: 48px;
        height: 48px;
        font-size: 24px;
        top: calc(100% - 25px);
        transform: translateY(-50%);
    }

    .prod-carousel .prev { left: 20%; }
    .prod-carousel .next { right: 20%; }
}


/* ================================
   TÍTULO PRINCIPAL DA PÁGINA
================================ */
.produtos-title {
    font-size: 42px;
    text-align: center;
    font-weight: 800;
    color: #222;
    margin-top: 40px;
    margin-bottom: 5px;
}

.produtos-subtitle-line {
    width: 80px;
    height: 4px;
    background: #E30613;
    margin: 0 auto 40px auto;
    border-radius: 3px;
}


/* ================================
   GRID DOS PRODUTOS
================================ */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}


/* ================================
   CARD DO PRODUTO
================================ */
.produto-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    background: #ffffff;
    padding: 25px;
    border-radius: 18px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    cursor: pointer;
}

.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}


/* ================================
   IMAGEM DO PRODUTO
================================ */
.produto-img img {
    width: 100%;
    max-width: 250px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;

    transition: transform .3s ease;
}

.produto-card:hover .produto-img img {
    transform: scale(1.05);
}


/* ================================
   TÍTULO DO PRODUTO
================================ */
.produto-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    line-height: 1.3;
    min-height: 55px;
    margin-bottom: 15px;
}


/* ================================
   BOTÃO "VER DETALHES"
================================ */
.produto-btn {
    padding: 10px 20px;
    background: #E30613;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;

    transition: .3s ease;
    display: inline-block;
    margin-top: auto;
}

.produto-btn:hover {
    background: #b00510;
}


/* ================================
   ANIMAÇÃO DE ENTRADA
================================ */
.produto-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeCard .5s forwards ease;
}

@keyframes fadeCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   AJUSTE FINO DO TÍTULO SEGMENTOS
================================ */

.segmentos-title-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 35px;
}

.segmentos-title-bar {
    display: inline-block;
    background: #C52332;
    color: #fff;

    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;

    padding: 14px 42px;
    border-radius: 6px;

    position: relative;

    /* RECORTE INFERIOR DIREITO (PADRÃO DO SITE) */
    clip-path: polygon(
        0 0,
        100% 0,
        100% 65%,
        92% 100%,
        0 100%
    );
}


/* Responsivo */
@media(max-width: 650px){
    .segmentos-title-bar {
        font-size: 20px;
        padding: 10px 26px;
    }

    .segmentos-title-bar::after {
        border-top: 18px solid transparent;
        border-bottom: 18px solid transparent;
        border-left: 14px solid #C52332;
        right: -14px;
    }
}

/* Delay automático para cada card */
.produtos-grid .produto-card:nth-child(1) { animation-delay: .1s; }
.produtos-grid .produto-card:nth-child(2) { animation-delay: .2s; }
.produtos-grid .produto-card:nth-child(3) { animation-delay: .3s; }
.produtos-grid .produto-card:nth-child(4) { animation-delay: .4s; }
.produtos-grid .produto-card:nth-child(5) { animation-delay: .5s; }
.produtos-grid .produto-card:nth-child(6) { animation-delay: .6s; }
.produtos-grid .produto-card:nth-child(7) { animation-delay: .7s; }
.produtos-grid .produto-card:nth-child(8) { animation-delay: .8s; }

/* BANNER */
.produto-banner {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.produto-banner .overlay {
    background: rgba(0,0,0,0.55);
    position: absolute;
    inset: 0;
}
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}
.banner-content h1 {
    font-size: 48px;
    font-weight: 800;
}
.banner-content .subtitulo {
    font-size: 20px;
    opacity: .85;
    margin: 10px 0 20px;
}
.btn-banner {
    background: #E30613;
    padding: 12px 25px;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

/* CONTAINER */
.produto-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* DESTAQUES */
.produto-destaques {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
    margin-bottom: 60px;
}
.dest-card {
    background: #fff;
    padding: 22px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.10);
}

/* LISTAS */
.produto-beneficios ul,
.produto-aplicacoes ul {
    margin-left: 22px;
    line-height: 1.7;
}

/* GALERIA */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 15px;
}
.gal-item img {
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
}

/* CONTATO */
.produto-contato {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}
.btn-whatsapp {
    background: #25D366;
    padding: 12px 25px;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
}
/* ================================
   PÁGINA DO PRODUTO – PLANEFIBRA
================================ */

/* CONTAINER GERAL */
.pf-produto-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Roboto', sans-serif;
}

/* TÍTULOS DAS SEÇÕES */
.pf-produto-container h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 40px 0 15px;
    color: #222;
}

/* TEXTO */
.pf-produto-container p,
.pf-produto-container li {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

/* IMAGENS DENTRO DO CONTEÚDO */
.pf-produto-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
}

/* DESTAQUES */
.pf-destaques {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.pf-dest-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    padding: 25px;
    text-align: center;
    border-radius: 6px;
    transition: 0.3s;
}

.pf-dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pf-dest-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* GALERIA */
.pf-galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.pf-galeria-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

/* PDF */
.pf-pdf-btn {
    display: inline-block;
    background: #ee2c3c;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}

.pf-pdf-btn:hover {
    background: #c70a18;
}

/* BOTÃO WHATSAPP */
.pf-btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 14px 30px;
    font-size: 18px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
    transition: 0.3s;
}

.pf-btn-whatsapp:hover {
    background: #128c4a;
}

/* BANNER */
/* Estilo similar ao site Planefibra – Página de Produto */

.pf-produto-banner {
    position: relative;
    background-position: center;
    background-size: cover;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.pf-overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.4);
}

.pf-banner-content {
    position: relative;
    z-index:2;
}

.pf-banner-content h1 {
    font-size: 46px;
    font-weight: 800;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.pf-subtitulo {
    font-size: 22px;
    margin-bottom: 25px;
}


.pf-produto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.pf-produto-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #222;
}

.pf-produto-container .pf-texto p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.pf-imagem-alinhada img {
    width: 100%;
    height: auto;
    margin: 30px auto;
}

.pf-destaques {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pf-dest-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #e5e5e5;
    text-align: center;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pf-dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pf-dest-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pf-dest-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.pf-beneficios ul, .pf-aplicacoes ul {
    padding-left: 20px;
    margin-top: 20px;
}

.pf-beneficios li, .pf-aplicacoes li {
    font-size: 18px;
    color: #444;
    margin-bottom: 10px;
}

.pf-pdf-btn {
    display: inline-block;
    background: #EE2C3C;
    color: #fff;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 15px;
    text-decoration: none;
    transition: background 0.3s;
}

.pf-pdf-btn:hover {
    background: #c70a18;
}

.pf-galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.pf-galeria-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 5px;
}

.pf-btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 16px 34px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    margin-top: 30px;
    display: inline-block;
    text-decoration: none;
    transition: background 0.3s;
}

.pf-btn-whatsapp:hover {
    background: #128c4a;
}

@media (max-width: 900px) {
    .pf-destaques,
    .pf-galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pf-destaques,
    .pf-galeria-grid {
        grid-template-columns: 1fr;
    }
    .pf-banner-content h1 {
        font-size: 32px;
    }
}
.btn-pdf {
    display: inline-block;
    background: #0073e6;
    padding: 15px 35px;
    color: white;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-pdf:hover {
    background: #005bb5;
}
/* ===============================
OBRAS GALERIA - CSS COMPLETO
=============================== */


.pf-obras-hero {
height: 380px;
background: url('https://via.placeholder.com/1600x600?text=Obras+Planefibra') center/cover no-repeat;
border-radius: 18px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
overflow:hidden;
}
.pf-obras-hero::after {
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.45);
}
.pf-obras-hero-inner {
position:relative;
z-index:2;
color:white;
max-width:800px;
}
.pf-obras-hero-inner h1 {
font-size:50px;
font-weight:800;
margin:0;
}
.pf-obras-hero-inner p {
font-size:20px;
opacity:.9;
}


/* GRID GERAL */
.pf-container {
max-width:1350px;
margin:auto;
padding:50px 20px;
}
.pf-galeria-grid {
display:grid;
grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
gap:30px;
}


/* ITEM DA GALERIA */
.pf-galeria-item {
position:relative;
border-radius:16px;
overflow:hidden;
cursor:pointer;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:.3s;
}
/* Hero */
.pf-hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.pf-hero .container h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
}

/* Vantagens */
.grid-vantagens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 30px;
}
.vantagem-item {
  text-align: center;
}
.vantagem-item img {
  width: 60px;
  margin-bottom: 15px;
}
.vantagem-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.vantagem-item p {
  font-size: 16px;
}

/* Características */
.grid-caracteristicas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 40px;
  list-style: none;
  padding: 0;
}
.grid-caracteristicas li {
  text-align: center;
}
.grid-caracteristicas li img {
  width: 80px;
  margin-bottom: 12px;
}
.grid-caracteristicas li h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.grid-caracteristicas li p {
  font-size: 15px;
}

/* Aplicações */
.pf-aplicacoes ul {
  list-style: none;
  padding: 0;
}
.pf-aplicacoes li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* CTA */
.pf-cta {
  background: #005baa;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.pf-cta h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
/* ===========================
   TIPOGRAFIA PADRÃO PLANEFIBRA
   PARA PÁGINA DE PRODUTO
   =========================== */

.pf-texto {
    font-family: 'Roboto', sans-serif;
    color: #444;
    line-height: 1.8;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Títulos dentro do conteúdo */
.pf-texto h1,
.pf-texto h2,
.pf-texto h3,
.pf-texto h4 {
    font-weight: 700; /* Roboto Bold */
    color: #222;
    margin: 50px 0 15px 0;
    line-height: 1.3;
}

/* Ajuste de tamanho */
.pf-texto h2 {
    font-size: 32px;
}
.pf-texto h3 {
    font-size: 24px;
}
.pf-texto h4 {
    font-size: 20px;
}

/* Parágrafos */
.pf-texto p {
    margin-bottom: 18px;
    font-size: 18px;
    color: #444;
}

/* Listas */
.pf-texto ul,
.pf-texto ol {
    margin: 25px 0 25px 40px;
}

.pf-texto li {
    margin-bottom: 12px;
    font-size: 18px;
    color: #444;
}

/* Destaque em vermelho conforme manual */
.pf-texto strong {
    color: #C52332; /* Vermelho Planefibra */
}

/* Separador elegante entre blocos */
.pf-texto hr {
    margin: 40px 0;
    border: none;
    border-bottom: 2px solid #eee;
}

/* Imagens dentro do conteúdo */
.pf-texto img {
    max-width: 100%;
    margin: 30px auto;
    display: block;
}
/* ===========================================
   CARDS PLANEFIBRA - MODELO B (Oficial)
   =========================================== */

/* ========================
   BLOCO PREMIUM PLANEFIBRA
   ======================== */

.pf-card-box {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 14px;
    margin: 40px auto;
    max-width: 1000px;
    border-left: 6px solid #C52332;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    position: relative;
}

/* Tarja discreta (B2) */
.pf-card-box::before {
    content: "";
    width: 55px;
    height: 6px;
    background: #C52332;
    position: absolute;
    top: -6px;
    left: 0;
    border-radius: 0 0 6px 0;
}

/* Títulos internos */
.pf-card-box h2 {
    font-weight: 700;
    color: #222;
    font-size: 30px;
    margin-bottom: 20px;
}

/* Conteúdo formatado */
.pf-texto p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
}

.pf-texto h2,
.pf-texto h3 {
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
}

/* ========================
   FAQ PREMIUM
   ======================== */

.faq-item {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 16px 22px;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.faq-pergunta {
    font-size: 18px;
    font-weight: 700;
    color: #C52332;
    padding-right: 20px;
}

.faq-pergunta::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 20px;
    color: #C52332;
    transition: .3s;
}

.faq-item.active .faq-pergunta::after {
    content: "-";
}

.faq-resposta {
    margin-top: 12px;
    display: none;
    line-height: 1.7;
    font-size: 17px;
}

.faq-item.active .faq-resposta {
    display: block;
}
/* ============================
   CTA FINAL PREMIUM – PLANEFIBRA
   ============================ */

.pf-cta-final {
    margin: 60px auto 80px auto;
    text-align: center;
    padding: 40px 20px;
}

.pf-cta-final h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}

.pf-cta-final p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

/* Botão WhatsApp Premium */
.pf-wpp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
    transition: .3s ease;
}

.pf-wpp-btn:hover {
    background: #1ebe5b;
    transform: translateY(-3px);
    box-shadow: 0 7px 25px rgba(0,0,0,0.15);
}

.pf-wpp-btn i {
    font-size: 22px;
}

/* Responsivo */
@media (max-width: 600px) {
    .pf-cta-final h2 {
        font-size: 26px;
    }
    .pf-wpp-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}
/* BOTÃO SUTIL INSTITUCIONAL (SOLICITE UM ORÇAMENTO) */
.pf-orcamento-btn {
    display: inline-block;
    background: #C52332; /* vermelho Planefibra */
    color: #fff;
    padding: 14px 32px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    text-decoration: none;
    border-radius: 4px 4px 4px 0;
    position: relative;
    transition: .3s ease;
}

.pf-orcamento-btn::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 16px solid #C52332;
}

.pf-orcamento-btn:hover {
    background: #EE2C3C;
}

.pf-orcamento-btn:hover::after {
    border-left-color: #EE2C3C;
}

/* Centralização sutil */
.pf-orcamento-wrapper {
    text-align: center;
    padding: 50px 10px;
}
/* IMAGENS DO CONTEÚDO - RESPONSIVAS E MAIORES */
.pf-texto img {
    width: 100%;
    max-width: 1000px; /* tamanho máximo largo */
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
}
/* BLOCO DE IMAGEM INSTITUCIONAL */
.pf-imagem-institucional {
    max-width: 1200px;
    margin: 50px auto;
}

.pf-imagem-institucional img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.1);
}


.produtos {
    padding: 40px 0 80px;
    background: #fafafa;
}

.produtos .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}
.produto-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    padding: 25px 20px 35px;
    transition: all 0.3s ease;
    position: relative;
}
.produto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.produto-card .img-box {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f5;
}

.produto-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.produto-card:hover .img-box img {
    transform: scale(1.05);
}
.produto-card h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: 700;
}
.produto-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
    padding: 0 10px;
}
.btn-produto {
    display: inline-block;
    background: #ee2c3c;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0 3px 6px rgba(238, 44, 60, 0.3);
    font-size: 1rem;
}

.btn-produto:hover {
    background: #d9292c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(238, 44, 60, 0.4);
}
@media (max-width: 768px) {
    .produto-card {
        padding: 20px;
    }
    .produto-card .img-box {
        height: 140px;
    }
    .btn-produto {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
}
/* =============================
   DIFERENCIAIS – UMA LINHA SEM SCROLL
============================= */

.diferenciais {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.diferenciais h2 {
  color: #C52332;
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.diferenciais p {
  color: #333;
  max-width: 850px;
  margin: 10px auto 40px;
  line-height: 1.6;
}

/* Grade fixa com 5 colunas */
.diferenciais .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* ❗ mantém SEMPRE 5 colunas */
  gap: 20px;
  align-items: stretch;
}

/* Card mais compacto */
.diferenciais .card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* Hover */
.diferenciais .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Ícone menor pra caber */
.diferenciais .card i {
  width: 38px;
  height: 38px;
  stroke: #C52332;
  margin-bottom: 10px;
}

/* Texto */
.diferenciais .card h3 {
  font-size: 0.9rem;  /* reduzido */
  margin-bottom: 8px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
}

.diferenciais .card p {
  color: #555;
  font-size: 0.85rem; /* reduzido */
  line-height: 1.4;
}

/* Marcador */
.diferenciais .marker {
  width: 0;
  height: 0;
  margin: 5px auto 10px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #ee2c3c;
}

/* Ajustes adicionais para telas médias */
@media (max-width: 1400px) {
  .diferenciais .card {
    padding: 18px 12px;
  }

  .diferenciais .card p {
    font-size: 0.8rem;
  }

  .diferenciais .card h3 {
    font-size: 0.85rem;
  }
}

/* Para telas menores, aí sim permitir quebra */
@media (max-width: 1100px) {
  .diferenciais .grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
/* =============================
   SEÇÃO RESÍDUOS – PLANEFIBRA
============================= */

.pf-residuos {
    padding: 80px 0;
    background: #fff;
}

.residuos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.residuos-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.residuos-text h2 {
    font-size: 44px;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.residuos-text h2 span {
    color: #C52332;
}

.residuos-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Responsivo */
@media (max-width: 900px) {
    .residuos-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .residuos-text h2 {
        font-size: 32px;
    }
}
/* ===================================
   CONTATO PLANEFIBRA 
   =================================== */
/* ====== SEÇÃO CONTATO COM TEXTURA ====== */
.contato-section {
    padding: 100px 20px;
  
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* TEXTURA EM OVERLAY */
.contato-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("http://planefibra.local/wp-content/uploads/2025/12/triangle_pattern_009-scaled.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    opacity: 0.20;

    z-index: 0;
    pointer-events: none; /* evita bloquear cliques */
}

/* Conteúdo sempre acima da textura */
.contato-section > * {
    position: relative;
    z-index: 2;
}


.contato-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;                 /* garante altura igual */
}

.pf-form-col{
    max-width: 640px;
    margin-left:auto;
}

.pf-form-box{
    background:#ffffff;
    border-radius: 4px;
    padding: 32px 26px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    position: relative;
}

/* Inputs compactos */
.pf-form-box input,
.pf-form-box textarea{
    width:100%;
    border:1px solid #e4e4e4;
    border-radius: 4px;
    background:#fafafa;
    padding: 11px 14px;
    font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
    margin-bottom: 16px;
    outline:none;
    transition:.2s;
}

/* PLACEHOLDER */
.pf-form-box input::placeholder,
.pf-form-box textarea::placeholder{
    color:#7c7c7c;
    opacity:1;
}

/* foco */
.pf-form-box input:focus,
.pf-form-box textarea:focus{
    background:#fff;
    border-color:#C52332;
    box-shadow:0 0 4px rgba(197,35,50,0.25);
}

/* textarea */
.pf-form-box textarea{
    height:120px;
}

/* Botão igual à imagem */
.pf-form-box input[type="submit"]{
    width:160px;
    background:#E42231;
    color:#fff;
    font-size:1rem;
    font-weight:600;
    padding:12px 0;
    border:none;
    border-radius:4px;
    cursor:pointer;
    display:block;
    margin:25px auto 0 auto;
    position:relative;
}

/* corte diagonal */
.pf-form-box input[type="submit"]::after{
    content:"";
    position:absolute;
    right:-10px;
    bottom:0;
    width:12px;
    height:12px;
    background:#E42231;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* hover */
.pf-form-box input[type="submit"]:hover{
    background:#C52332;
}

/* ===============================
   ESTILO DO ERRO (igual a sites modernos)
=============================== */

.wpcf7-not-valid{
    border-color:#E42231 !important;
    background:#fff0f0 !important;
}

.wpcf7-not-valid-tip{
    color:#E42231;
    font-size:0.8rem;
    margin-top:-8px;
    margin-bottom:12px;
}


/* MAPA – ALTURA PERFEITA E ALINHADA */
.contato-mapa .mapa-box {
    height: 100%;
    min-height: 540px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.09);
}

.contato-mapa .mapa-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contato-card {
        padding: 40px 30px;
        max-width: 500px;
        margin: 0 auto;
    }
    .contato-mapa .mapa-box {
        min-height: 460px;
    }
}

@media (max-width: 576px) {
    .contato-section { padding: 70px 15px; }
    .contato-card { padding: 35px 25px; }
    .contato-card h2 { font-size: 24px; }
    .contato-mapa .mapa-box { min-height: 400px; }
}
/* ===================================
   RESPONSIVIDADE — CONTATO (MOBILE)
=================================== */

@media (max-width: 768px) {

    /* seção geral */
    .contato-section {
        padding: 60px 16px;
    }

    /* grid vira coluna única */
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: stretch;
    }

    /* FORMULÁRIO */
    .pf-form-col {
        max-width: 100%;
        margin: 0 auto;
    }

    .pf-form-box {
        padding: 32px 22px;
        border-radius: 10px;
    }

    .pf-form-box h2 {
        text-align: center;
        font-size: 20px;
        margin-bottom: 20px;
    }

    /* inputs mais confortáveis */
    .pf-form-box input,
    .pf-form-box textarea {
        font-size: 16px; /* evita zoom no iOS */
        padding: 14px 14px;
    }

    /* botão mais touch-friendly */
    .pf-form-box input[type="submit"] {
        width: 100%;
        max-width: 260px;
        padding: 14px 0;
        font-size: 16px;
        margin-top: 20px;
    }

    /* remove corte diagonal no mobile (mais limpo) */
    .pf-form-box input[type="submit"]::after {
        display: none;
    }

    /* MAPA */
    .contato-mapa .mapa-box {
        min-height: 320px;
        border-radius: 14px;
    }
}

/* ===================================
   MOBILE PEQUENO (≤ 480px)
=================================== */
@media (max-width: 480px) {

    .pf-form-box {
        padding: 28px 18px;
    }

    .pf-form-box h2 {
        font-size: 18px;
    }

    .contato-mapa .mapa-box {
        min-height: 280px;
    }
}

/* ============================
   HEADER DA PÁGINA
============================ */
/* Remove espaço gigante do header antigo */
.contato-header {
    padding: 0;   
    margin: 0;
    text-align: center;
}

.contato-header h1 {
    color: #C52332;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}
.contato-header p {
    font-size: 18px;
    color: #555;
}

/* ============================
   CARDS DE INFORMAÇÕES
============================ */
/* Cards sobem para perto do título */
.contato-cards-section {
    padding: 20px 0 40px;
}


.contato-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.contato-card-info {
    background: #fff;
    padding: 38px 30px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: .3s ease;
}

.contato-card-info:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0,0,0,0.12);
}

/* Ícone */
.icon-box {
    width: 70px;
    height: 70px;
    background: #C52332;
    color: #fff;
    border-radius: 14px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* Título e texto */
.contato-card-info h3 {
    font-weight: 700;
    color: #222;
    font-size: 22px;
    margin-bottom: 8px;
}
.contato-card-info p {
    color: #444;
    font-size: 17px;
    line-height: 1.6;
}

/* ============================
   FORMULÁRIO + MAPA
============================ */
.contato-form-mapa {
    padding: 80px 20px;
}

.contato-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

/* CARD DO FORMULÁRIO */
.contato-form-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 12px 45px rgba(0,0,0,0.08);
}

.contato-form-card h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: #C52332;
    margin-bottom: 25px;
}

/* ============================
   FORMULÁRIO CF7
============================ */
.contato-form-card .wpcf7-form p {
    margin: 0 0 20px !important;
}

.contato-form-card input[type="text"],
.contato-form-card input[type="email"],
.contato-form-card input[type="tel"],
.contato-form-card textarea {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    background: #fafafa !important;
    font-size: 16px !important;
    font-family: 'Roboto', sans-serif !important;
    transition: all .3s ease !important;
    box-sizing: border-box !important;
}

.contato-form-card textarea {
    min-height: 130px !important;
}

.contato-form-card input:focus,
.contato-form-card textarea:focus {
    border-color: #C52332 !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(197,35,50,0.22) !important;
    outline: none !important;
}

/* Botão enviar */
.contato-form-card input[type="submit"] {
    background: #C52332 !important;
    color: #fff !important;
    border: none !important;
    padding: 16px 20px !important;
    width: 100% !important;
    border-radius: 10px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: .3s ease;
}

.contato-form-card input[type="submit"]:hover {
    background: #a81223 !important;
    transform: translateY(-2px);
}
/* =====================================================
   TÍTULO INSTITUCIONAL — CONTATO
===================================================== */
.contato-title-wrapper {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
}

.contato-title-bar {
    display: inline-block;
    background: #C52332;
    color: #fff;

    font-size: clamp(1.6rem, 1.3rem + 0.8vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;

    padding: 14px 42px;

    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);

    position: relative;

    /* RECORTE INFERIOR DIREITO — PADRÃO OFICIAL */
    clip-path: polygon(
        0 0,
        100% 0,
        100% 65%,
        92% 100%,
        0 100%
    );
}
@media (max-width: 600px){
    .contato-title-bar{
        font-size: 1.3rem;
        padding: 12px 30px;

        clip-path: polygon(
            0 0,
            100% 0,
            100% 88%,
            94% 100%,
            0 100%
        );
    }
}


/* RESPONSIVO */
@media(max-width: 650px){
    .contato-title-bar {
        font-size: 20px;
        padding: 10px 28px;
    }

    .contato-title-bar::after {
        border-top: 18px solid transparent;
        border-bottom: 18px solid transparent;
        border-left: 14px solid #C52332;
        right: -14px;
    }
}

/* ============================
   MAPA
============================ */
.contato-mapa-card {
    width: 100%;
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(0,0,0,0.08);
}

.contato-mapa-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================
   RESPONSIVO
============================ */
@media (max-width: 900px) {
    .contato-form-grid {
        grid-template-columns: 1fr;
    }
    .contato-mapa-card {
        height: 400px;
    }
}
/* ===== BANNER ===== */
.sobre-banner {
    height: 380px;
    background: url('https://via.placeholder.com/1920x600?text=Planefibra') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.sobre-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.42);
}
.sobre-banner h1 {
    font-size: 50px;
    font-weight: 800;
}
.sobre-banner p {
    font-size: 20px;
    opacity: .9;
}
.trajetoria-section {
    padding-top: 20px !important;
    margin-top: 0 !important;
}

/* Remove QUALQUER espaço imediatamente antes da Trajetória */
.trajetoria-section,
.trajetoria-section * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove espaço da seção anterior */
.trajetoria-section {
    margin-top: -120px !important; /* sobe tudo para encostar */
}


/* =====================================================
   TÍTULO CORRIGIDO E INQUEBRÁVEL — TRAJETÓRIA
===================================================== */

.trajetoria-title-wrapper{
    text-align: center;
    margin: 20px 0 40px;
}

.trajetoria-title{
    display: inline-block;
    background: #C52332;
    color: #fff;

    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;

    /* padding compensado (equilíbrio visual) */
    padding: 14px 40px;
    border-radius: 1px;
    
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);

 

    /* RECORTE INFERIOR DIREITO — PADRÃO OFICIAL */
    clip-path: polygon(
        0 0,
        100% 0,
        100% 65%,
        92% 100%,
        0 100%
    );
}

@media (max-width: 600px){
    .trajetoria-title{
        font-size: 1.3rem;
        padding: 12px 30px;

        clip-path: polygon(
            0 0,
            100% 0,
            100% 88%,
            94% 100%,
            0 100%
        );
    }
}


/* ============================
   CARROSSEL – ESTRUTURA
============================ */
.trajetoria-section {
    padding: 10px 0;
}

.trajetoria-carousel {
    position: relative;
}

.trajetoria-track-wrapper {
    overflow: hidden;
}

.trajetoria-track {
    display: flex;
    gap: 40px;
    transition: transform .4s ease;
}

/* ============================
   ITEM
============================ */
.trajetoria-item {
    min-width: 350px;
    max-width: 350px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 25px;
    text-align: center;
    flex-shrink: 0;
}

.trajetoria-year {
    font-size: 26px;
    font-weight: 800;
    color: #C52332;
    margin-bottom: 15px;
}

.trajetoria-img img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.trajetoria-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* ============================
   BOTÕES DO CARROSSEL
============================ */
.trajetoria-prev,
.trajetoria-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #C52332;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: .3s;
}

.trajetoria-prev:hover,
.trajetoria-next:hover {
    background: #A71222;
}

.trajetoria-prev {
    left: -20px;
}

.trajetoria-next {
    right: -20px;
}

/* MOBILE */
@media (max-width: 700px) {
    .trajetoria-item {
        min-width: 270px;
    }
    .trajetoria-prev, .trajetoria-next {
        display: none;
    }
}



/* ===== MVV ===== */
.mvv-section {
    background: #fafafa;
    padding: 80px 0;
}
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 40px;
}
.mvv-box {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    text-align: center;
}
.mvv-icon {
    width: 85px;
    height: auto;
    margin: 0 auto 20px auto;
    opacity: 0.85; /* deixa mais elegante */
}

.mvv-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: #C52332;
    margin-bottom: 15px;
}

.mvv-box p,
.mvv-box ul li {
    font-size: 17px;
    color: #444;
    line-height: 1.55;
}
/* Todos os ícones do bloco MVV com o MESMO tamanho */
.mvv-icon {
    width: 90px;      /* ajuste conforme preferir: 80px / 90px / 100px */
    height: 90px;
    object-fit: contain;   /* mantém proporção original sem esticar */
    display: block;
    margin: 0 auto 20px auto;
    opacity: 0.9;          /* deixa mais elegante */
}


.mvv-box ul {
    padding-left: 0;
    list-style: none;
}

/* Aplica a cor #717170 em ícones PNG monocromáticos */
.mvv-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: invert(42%) sepia(1%) saturate(0%) hue-rotate(180deg) brightness(96%) contrast(88%);
}


/* ===== QUALIDADE ===== */
.qualidade-section {
    padding: 80px 0;
}
.qualidade-box {
    text-align: center;
    max-width: 900px;
    margin: auto;
}
.qualidade-box h2 {
    color: #C52332;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}
.qualidade-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}
/* Remove espaço deixado por banners removidos */


/* Remove espaço extra antes da primeira seção */
.entry-header,
.entry-content > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Força a seção Trajetória a encostar no header */
.trajetoria-section {
    padding-top: 20px !important;
    margin-top: 0 !important;
}
/* ====== AJUSTE DOS CARDS MAIS GORDINHOS ====== */

/* Tamanho geral do card */
.traj-item {
    padding: 20px 22px;
    min-height: 540px;   /* >>> altura ideal, NÃO deixa o card gigante */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Ajuste do título */
.traj-year {
    margin-bottom: 14px;
    font-size: 24px;
}

/* Imagem menor, mais compacta */
.traj-img {
    height: 160px !important;  /* reduz de 220px para 160px */
    margin-bottom: 15px;
}

/* Texto mais compacto */
.traj-text {
    font-size: 16px;
    line-height: 1.45;
    margin-top: 5px;
}

/* Alinhar tudo sem rolagem dentro do card */
.traj-item p {
    margin-bottom: 10px;
}

/* Deixar cards mais harmoniosos visualmente */
.traj-item {
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
/* texto */
.traj-text {
    text-align: left !important;
}
/* SETAS FORA DO CARROSSEL */
.traj-prev,
.traj-next {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 20;
}

/* empurra as setas para fora dos cards */
.traj-prev {
    left: -60px !important;   /* ajuste a gosto */
}

.traj-next {
    right: -60px !important;  /* ajuste a gosto */
}

/* evita que o wrapper corte as setas */
.trajetoria-carousel {
    overflow: visible !important;
}
.traj-item,
.trajetoria-section,
.traj-track-wrapper {
    box-shadow: none !important;
}
/* ===========================
   SEÇÃO
=========================== */
.secao-depoimentos {
    padding: 60px 0;
    background: #f5f5f5;
}

.titulo-depoimentos {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* ===========================
   CARROSSEL
=========================== */




/* Remove QUALQUER botão "+" do AddToAny, onde quer que ele apareça */
.a2a_kit .a2a_dd,
.a2a_dd {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}
/* CARROSSEL DE DEPOIMENTOS */
.dep-carousel {
    position: relative;
    width: 100%;
    margin-top: 30px;
}

.dep-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.dep-track {
    display: flex;
    gap: 30px;
    transition: transform .4s ease;
}

/* Cada depoimento já deve ter uma classe "pf-depo-item" (do shortcode) */
.pf-depo-item {
    min-width: 400px;
    max-width: 400px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    padding: 25px;
    flex-shrink: 0;
}

.dep-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--pf-red);
    color: #fff;
    border: none;
    padding: 12px 18px;
    font-size: 26px;
    border-radius: 50%;
    cursor: pointer;
    transition: .25s ease;
    z-index: 10;
}

.dep-nav:hover { background: var(--pf-red-dark); }

.dep-prev { left: -20px; }
.dep-next { right: -20px; }

@media(max-width: 600px){
    .pf-depo-item {
        min-width: 85%;
    }

    .dep-prev { left: 5px; }
    .dep-next { right: 5px; }
}
/* ===============================
   AJUSTE DO TÍTULO – DEPOIMENTOS (MOBILE)
=============================== */
@media (max-width: 600px) {

    /* reduz espaço acima da seção */
    .dep-carousel {
        margin-top: 10px;
    }

    /* título da seção (faixa vermelha) */
    .dep-carousel .sec-title,
    .depoimentos .sec-title {
        margin-top: 0 !important;
        margin-bottom: 20px !important;
        padding: 12px 28px;
        font-size: 16px;
        line-height: 1.2;
    }
}


:root {
    --pf-red: #C52332;
    --pf-red-dark: #A51D29;
    --pf-gray: #717170;
    --pf-dark: #1e1e1e;
}

/* ======================== */
/* TÍTULO PRINCIPAL */
/* ======================== */

.titulo-segmentos {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--pf-dark);
    margin-bottom: 40px;
    position: relative;
}

.titulo-segmentos::after {
    content: "";
    width: 70px;
    height: 5px;
    background: var(--pf-red);
    display: block;
    margin: 15px auto 0;
    transform: skewX(-25deg);
}

/* ======================== */
/* GRID DE SEGMENTOS */
/* ======================== */

.segmento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

/* CARD */
.segmento-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
    transition: .3s ease;
}

.segmento-card:hover {
    transform: translateY(-6px);
}

/* SLIDER */
.segmento-slider {
    position: relative;
    height: 230px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.segmento-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity .5s ease, transform .5s ease;
}

.segmento-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.segmento-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Botões do slider */
.seg-prev,
.seg-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: rgba(0,0,0,0.4);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    z-index: 5;
}

.seg-prev { left: 12px; }
.seg-next { right: 12px; }

.seg-prev:hover,
.seg-next:hover {
    background: rgba(0,0,0,0.65);
}

/* Conteúdo do card */
.segmento-card-content {
    padding: 26px 28px 30px;
}

.segmento-card-content h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #222;
}

.segmento-card-content p {
    font-size: 15px;
    color: #555;
    min-height: 48px;
}

/* Botão */
.btn-ver-produtos {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 26px;
    background: #C52332;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .25s ease;
}

.btn-ver-produtos:hover {
    background: #A51D29;
}

/* Responsivo */
@media (max-width: 768px) {
    .segmento-card-content {
        padding: 20px;
    }
    .segmento-slider {
        height: 200px;
    }
}



/* ======================== */
/* RESPONSIVIDADE */
/* ======================== */

@media (max-width: 768px) {
    .titulo-segmentos {
        font-size: 32px;
    }
}


/* botão só aparece no mobile */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 992px) {
  .header-right { display: none; }
  .mobile-menu-btn { display: block; }
}

/* painel lateral */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;              /* escondido */
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,.2);
  padding: 20px 25px;
  z-index: 1001;
  transition: right .3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open {
  right: 0;                   /* aparece */
}

.mobile-menu-logo img {
  max-width: 160px;
  height: auto;
}

.close-mobile-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
}

/* links */
.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 60px 0 10px;
  text-align: left;
}
.mobile-menu-list li {
  margin-bottom: 10px;
}
.mobile-menu-list a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  color: #333;
}

/* busca */
.mobile-search {
  display: flex;
  margin-top: 10px;
}
.mobile-search input {
  flex: 1;
  border: 1px solid #ccc;
  padding: 6px 8px;
  font-size: 14px;
}
.mobile-search button {
  border: none;
  background: #e30613;        /* vermelho Planefibra aproximado */
  color: #fff;
  padding: 0 10px;
  cursor: pointer;
}

/* idiomas */
.mobile-langs {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}
.mobile-langs a {
  font-size: 22px;
}

/* overlay escuro */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
  z-index: 1000;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}






/* ====================================
   SEÇÃO DEPOIMENTOS – VERSÃO PREMIUM
==================================== */

.secao-depoimentos {
    padding: 140px 0 100px;
    background: #F5F5F5;
    position: relative;
    overflow: hidden;
}

/* ======== TÍTULO PREMIUM ======== */
.secao-depoimentos .faixa-titulo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #C52332 0%, #A71C27 100%);
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 18px 60px;
    border-radius: 0 0 14px 14px;
    z-index: 15;
    box-shadow: 0 10px 28px rgba(0,0,0,0.20);
    letter-spacing: 0.6px;
}

.secao-depoimentos .faixa-titulo::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) skewX(-25deg);
    width: 120px;
    height: 6px;
    background: #C52332;
    opacity: .35;
    border-radius: 4px;
}

/* ========================================
   SWIPER
======================================== */

.depoimentos-swiper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 70px;
    position: relative;
}

/* Slide */
.pf-depo-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Wrapper */
.pf-depo-slide .depo-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   VIDEO
======================================== */

.depo-media {
    flex: 1;
    max-width: 560px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.depo-media iframe,
.depo-media video {
    width: 100%;
    height: 315px;
    display: block;
    border: none;
}

/* ========================================
   TEXTO DO DEPOIMENTO
======================================== */

.depo-texto {
    flex: 1;
    max-width: 520px;
    position: relative;
    padding-left: 10px;
}

.depo-texto .depo-frase {
    margin: 0 0 25px 0;
    font-size: 28px;
    line-height: 1.45;
    color: #222;
    font-weight: 600;
    position: relative;
    padding-left: 10px;
}

.depo-texto .depo-frase:before {
    content: '“';
    position: absolute;
    left: -35px;
    top: -25px;
    font-size: 80px;
    color: #C52332;
    opacity: 0.15;
    font-family: Georgia, serif;
}

.depo-texto .depo-nome {
    margin-bottom: 5px;
    font-size: 22px;
    color: #C52332;
    font-weight: 700;
}

.depo-texto .depo-cargo,
.depo-texto .depo-empresa {
    font-size: 17px;
    color: #555;
}

/* ============================================================
   SETAS PREMIUM — VERSÃO ÚNICA E RESPONSIVA
============================================================ */

.depoimentos-swiper .swiper-button-prev,
.depoimentos-swiper .swiper-button-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff !important;
    border: 2.5px solid #C52332;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transition: 0.25s ease;
}

.depoimentos-swiper .swiper-button-prev:after,
.depoimentos-swiper .swiper-button-next:after {
    font-size: 28px !important;
    color: #C52332 !important;
    font-weight: 700;
}

.depoimentos-swiper .swiper-button-prev:hover,
.depoimentos-swiper .swiper-button-next:hover {
    background: #C52332 !important;
}

.depoimentos-swiper .swiper-button-prev:hover:after,
.depoimentos-swiper .swiper-button-next:hover:after {
    color: #fff !important;
}

/* === Desktop === */
@media (min-width: 993px) {
    .depoimentos-swiper .swiper-button-prev { left: 20px; top: 50%; }
    .depoimentos-swiper .swiper-button-next { right: 20px; top: 50%; }
}

/* === Tablets === */
@media (max-width: 992px) {
    .depoimentos-swiper .swiper-button-prev,
    .depoimentos-swiper .swiper-button-next {
        width: 55px;
        height: 55px;
    }

    .depoimentos-swiper .swiper-button-prev { left: 10px; }
    .depoimentos-swiper .swiper-button-next { right: 10px; }

    .pf-depo-slide .depo-wrap {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .depo-media { max-width: 90%; }
    .depo-texto { max-width: 95%; padding-left: 0; }

    .depo-texto .depo-frase:before {
        left: 50%;
        transform: translateX(-50%);
        top: -60px;
    }
}

/* === Mobile === */
@media (max-width: 600px) {

    .secao-depoimentos { padding-top: 180px; }

    .secao-depoimentos .faixa-titulo {
        position: relative;
        width: 92%;
        font-size: 20px;
        padding: 14px 25px;
        margin-bottom: 40px;
        border-radius: 12px;
    }

    .pf-depo-slide .depo-wrap {
        flex-direction: column;
        gap: 25px;
        padding: 0 12px;
    }

    .depo-media { max-width: 100%; }

    .depoimentos-swiper .swiper-button-prev,
    .depoimentos-swiper .swiper-button-next {
        width: 48px !important;
        height: 48px !important;
        top: calc(100% - 25px) !important;
        transform: translateY(-50%);
    }

    .depoimentos-swiper .swiper-button-prev { left: 20% !important; }
    .depoimentos-swiper .swiper-button-next { right: 20% !important; }

    .depo-texto .depo-frase {
        font-size: 19px;
    }
}

/* ====================================
   PAGINAÇÃO — CORES DA MARCA
==================================== */

.depoimentos-swiper .swiper-pagination {
    position: relative !important;
    margin-top: 45px !important;
}

.depoimentos-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #C9C9C9;
    opacity: 1;
}

.depoimentos-swiper .swiper-pagination-bullet-active {
    background: #C52332 !important;
    transform: scale(1.3);
}


/* =======================
   PÁGINA DE BUSCA PLANEFIBRA
   ======================= */

.search-section {
    padding: 70px 20px 90px;
    background: #f8f8f8;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
}

.search-title {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
}

.search-title span {
    color: #C52332;
}

/* GRID DE RESULTADOS */
.search-results-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.search-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.search-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.14);
}

.search-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Imagem */
.search-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Conteúdo */
.search-card-body {
    padding: 18px 18px 20px;
}

.search-card-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #C52332;
}

.search-card-body p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Mensagem sem resultados */
.no-results {
    font-size: 18px;
    margin-top: 20px;
    color: #444;
}

/* Paginação */
.search-pagination {
    margin-top: 35px;
    text-align: center;
}

.search-pagination .page-numbers {
    display: inline-block;
    margin: 0 4px;
    padding: 7px 12px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #ddd;
    color: #444;
    text-decoration: none;
    font-size: 14px;
}

.search-pagination .page-numbers.current,
.search-pagination .page-numbers:hover {
    background: #C52332;
    border-color: #C52332;
    color: #fff;
}

/* Mobile */
@media (max-width: 600px) {
    .search-section {
        padding: 50px 15px 70px;
    }

    .search-title {
        font-size: 24px;
    }
}


.menu-principal ul,
.menu-principal li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.menu-principal ul.menu > li,
.menu-principal ul.sub-menu > li {
    position: relative;
}

/* seta no item do menu */
.menu-principal ul.menu > li.menu-item-has-children > a {
    position: relative;
    padding-right: 6px; /* reduzido para aproximar a seta do 's' */
}

/* seta vermelha tipo Bootstrap */
.menu-principal ul.menu > li.menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: -2px; /* seta bem próxima ao texto */
    top: 50%;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid #C52332;
    border-bottom: 2px solid #C52332;
    transition: .2s ease;
}

/* animação (gira ao hover) */
.menu-principal ul.menu > li.menu-item-has-children:hover > a::after {
    transform: translateY(-50%) rotate(225deg);
}

/* caixa do dropdown */
.menu-principal ul.menu > li.menu-item-has-children > ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 230px;
    background: #fff;
    padding: 10px 0;

    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);

    display: none;
    z-index: 20;
}

/* abre ao passar o mouse */
.menu-principal ul.menu > li.menu-item-has-children:hover > ul.sub-menu {
    display: block;
}

.menu-principal ul.sub-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    text-decoration: none;

    white-space: nowrap;

    transition: .2s ease;
}

.menu-principal ul.sub-menu > li > a:hover {
    background: #C52332;
    color: #fff;
    border-radius: 6px;
}

/* seta lateral ">" */
.menu-principal ul.sub-menu li.menu-item-has-children > a {
    padding-right: 20px;
    position: relative;
}

.menu-principal ul.sub-menu li.menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;

    width: 6px;
    height: 6px;
    border-right: 2px solid #aaa;
    border-bottom: 2px solid #aaa;
    transform: translateY(-50%) rotate(-45deg);
    transition: .2s ease;
}

.menu-principal ul.sub-menu li.menu-item-has-children:hover > a::after {
    border-color: #C52332;
}

/* caixa do submenu lateral */
.menu-principal ul.sub-menu li.menu-item-has-children > ul.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 8px;

    min-width: 230px;
    background: #fff;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);

    display: none;
}

.menu-principal ul.sub-menu li.menu-item-has-children:hover > ul.sub-menu {
    display: block;
}

/* animação */
.menu-principal ul.sub-menu,
.menu-principal ul.sub-menu ul.sub-menu {
    animation: fadeDown .2s ease;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* seta no item do menu (PRINCIPAL) */
.menu-principal ul.menu > li.menu-item-has-children > a {
    position: relative !important;
    padding-right: 0 !important; /* remove espaço que empurra a seta */
}

/* seta vermelha colada no texto */
.menu-principal ul.menu > li.menu-item-has-children > a::after {
    content: "";
    position: absolute;
    left: 100%; /* coloca a seta logo após o texto */
    margin-left: 4px; /* ajuste fino da distância */
    top: 50%;

    width: 6px;
    height: 6px;
    border-right: 2px solid #C52332;
    border-bottom: 2px solid #C52332;

    transform: translateY(-50%) rotate(45deg);
    transition: .2s ease;
}

/* animação no hover */
.menu-principal ul.menu > li.menu-item-has-children:hover > a::after {
    transform: translateY(-50%) rotate(225deg);
}







































/* ================================
   ESTILO MOBILE (NÃO AFETA DESKTOP)
================================ */
@media (max-width: 992px) {

  /* HEADER MOBILE - ALINHAMENTO PERFEITO */
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
  }

  .logo img {
    max-width: 180px;
  }

  /* BOTÃO HAMBÚRGUER AO LADO DA LOGO */
  .menu-toggle {
    display: block !important;
    background: none;
    border: none;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    padding: 6px;
  }

  /* ESCONDER ELEMENTOS DESKTOP */
  .menu-principal,
  .search-form,
  .idiomas {
    display: none !important;
  }

  /* ================================
     MENU MOBILE (OFF CANVAS PREMIUM)
  ================================ */

  .m-menu {
    position: fixed;
    right: -100%;        /* abre pela direita - mais moderno */
    top: 0;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: #fff;
    padding: 25px 22px;
    z-index: 99999;
    overflow-y: auto;
    transition: right .35s ease-in-out;
    box-shadow: -4px 0 18px rgba(0,0,0,0.12);
    border-left: 3px solid #C52332; /* assinatura visual da marca */
  }

  .m-menu.active {
    right: 0;
  }

  /* BOTÃO FECHAR LIMPO E VISÍVEL */
  .m-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-bottom: 25px;
  }

  /* ================================
     LISTA MOBILE MODERNA
  ================================ */

  .m-list {
    margin-top: 10px;
  }

  .m-list li {
    list-style: none;
    border-bottom: 1px solid #eee;
  }

  .m-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: .2s ease;
  }

  .m-list li a:hover {
    color: #C52332;
  }

  /* Seta de dropdown */
  .m-arrow {
    font-size: 14px;
    opacity: .5;
    margin-left: 10px;
    transition: .25s;
  }

  /* Submenu */
  .m-list .sub-menu {
    display: none;
    background: #fafafa;
    margin-top: 8px;
    border-left: 2px solid #C52332;
    padding-left: 12px;
  }

  .m-list li.open > .sub-menu {
    display: block;
  }

  .m-list .sub-menu a {
    padding: 10px 0;
    font-size: 16px;
    color: #444;
    font-weight: 500;
    border-bottom: none;
  }

  .m-list li.open > a .m-arrow {
    transform: rotate(180deg);
    opacity: .7;
  }

  /* ================================
     BUSCA MOBILE
  ================================ */

  .m-search {
    margin-top: 30px;
    display: flex;
    gap: 10px;
  }

  .m-search input {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
  }

  .m-search button {
    background: #C52332;
    border: none;
    padding: 0 16px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
  }

  /* ================================
     IDIOMAS MOBILE
  ================================ */

  .m-lang {
    margin-top: 25px;
    display: flex;
    gap: 15px;
  }

  .m-lang .lang {
    font-size: 28px;
    cursor: pointer;
  }
}

/* ===== DROPDOWN PROFISSIONAL (PRODUTOS) ===== */

.m-list li.has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m-arrow {
    font-size: 14px;
    opacity: .5;
    transition: transform .25s ease;
    margin-left: 12px;
}

/* submenu fechado */
.m-list li.has-dropdown .sub-menu {
    display: none;
    padding-left: 15px;
    margin-top: 6px;
    border-left: 2px solid #C52332;
    background: #fafafa;
}

/* submenu aberto */
.m-list li.has-dropdown.open .sub-menu {
    display: block !important;
}

/* rotação da seta */
.m-list li.has-dropdown.open > a .m-arrow {
    transform: rotate(180deg);
    opacity: .7;
}

/* links do submenu */
.m-list li.has-dropdown .sub-menu li a {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: #444;
    display: block;
}
/* SUBMENU MOBILE */
.m-list li .sub-menu {
  display: none;
  padding-left: 15px;
  background: #fafafa;
}

.m-list li.open > .sub-menu {
  display: block;
}

/* setinha (opcional, se quiser estilizar) */
.m-arrow {
  font-size: 14px;
  opacity: .5;
  margin-left: 8px;
  transition: transform .25s ease;
}

.m-list li.open > a .m-arrow {
  transform: rotate(180deg);
  opacity: .8;
}
/* ESCONDE O MENU MOBILE EM TELAS GRANDES */
.m-menu {
    display: none; /* some completamente no desktop */
}
@media (max-width: 992px) {

    /* mostra o container do menu mobile */
    .m-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%; /* escondido até abrir */
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        overflow-y: auto;
        transition: right .35s ease;
    }

    .m-menu.active {
        right: 0;
    }
}
/* ESCONDE O BOTÃO EM TELAS GRANDES DE QUALQUER JEITO */
.menu-toggle {
    display: none !important;
}
@media (max-width: 992px) {
    .menu-toggle {
        display: block !important;
    }
}
@media (max-width: 992px) {

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* garante que a logo NÃO empurra o botão */
    .logo {
        flex-shrink: 1;
        max-width: 60%; /* evita estourar os limites */
        display: flex;
        align-items: center;
    }

    .logo img {
        width: auto;
        height: auto;
        max-height: 42px;
    }

    .menu-toggle {
        display: block !important;
        background: none;
        border: none;
        margin-left: auto; /* joga o botão para a direita */
        padding: 6px;
        font-size: 32px;
    }

    .header-right {
        display: none !important;
    }
}
@media (max-width: 992px) {

    /* força a logo para o lado esquerdo */
    .header-inner {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 12px; /* espaço entre logo e botão */
    }

    /* impede a logo de empurrar o botão */
    .logo {
        margin-right: auto !important;
        flex-shrink: 0 !important;
    }

    .logo img {
        max-width: 180px;
        height: auto;
        display: block;
    }

}
@media (max-width: 992px) {

    /* Ajuste da logo */
    .logo {
        flex-shrink: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
    }

    .logo img {
        max-height: 38px !important;  /* altura ideal */
        width: auto;
        display: block;
    }

    /* Ajuste do botão hamburguer */
    .menu-toggle {
        display: block !important;
        background: none;
        border: none;
        font-size: 30px;
        cursor: pointer;
        padding: 4px;
        margin: 0 !important;
        flex-shrink: 0;
    }

    /* Espaçamento geral do header mobile */
    .header {
        border-bottom: 2px solid #C52332;
    }

}
@media (max-width: 992px) {

    /* Remove espaços do header */
    .header {
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Linha perfeita: logo esquerda / menu direita */
    .header-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 8px 12px !important; /* remove espaços brancos */
        gap: 0 !important;
    }

    /* Força a logo ficar colada à esquerda */
    .logo {
        margin: 0 !important;
        padding: 0 !important;
        flex-shrink: 1 !important;
        display: flex !important;
        align-items: center !important;
    }

    .logo img {
        max-height: 38px !important;
        width: auto !important;
        display: block !important;
    }

    /* Força o botão ALWAYS à direita */
    .menu-toggle {
        display: block !important;
        margin-left: auto !important;
        background: none !important;
        border: none !important;
        padding: 4px !important;
        font-size: 30px !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
    }

    /* Esconde tudo do desktop */
    .header-right {
        display: none !important;
    }
}

/* ====================================
   PAGINAÇÃO — OBRAS (BOTÕES QUADRADOS)
==================================== */

.obras-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 60px 0 40px;
}

/* Botões */
.obras-pagination .page-numbers {
    min-width: 46px;
    height: 46px;
    padding: 0 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    border: 1.5px solid #d9d9d9;
    color: #444;
    background: #fff;

    transition: all .25s ease;
}

/* Hover */
.obras-pagination a.page-numbers:hover {
    border-color: #C52332;
    color: #C52332;
    transform: translateY(-1px);
}

/* Página ativa */
.obras-pagination .page-numbers.current {
    background: #C52332;
    color: #fff;
    border-color: #C52332;
    cursor: default;
}

/* Setas */
.obras-pagination .prev,
.obras-pagination .next {
    font-size: 20px;
    font-weight: 700;
}

/* Remove "..." */
.obras-pagination .dots {
    display: none;
}
/* ====================================
   PAGINAÇÃO — DOWNLOADS (PADRÃO MARCA)
==================================== */

.downloads-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 60px 0 40px;
}

/* Botões */
.downloads-pagination .page-numbers {
    min-width: 46px;
    height: 46px;
    padding: 0 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    border: 1.5px solid #d9d9d9;
    color: #444;
    background: #fff;

    transition: all .25s ease;
}

/* Hover */
.downloads-pagination a.page-numbers:hover {
    border-color: #C52332;
    color: #C52332;
    transform: translateY(-1px);
}

/* Página ativa */
.downloads-pagination .page-numbers.current {
    background: #C52332;
    color: #fff;
    border-color: #C52332;
    cursor: default;
}

/* Setas */
.downloads-pagination .prev,
.downloads-pagination .next {
    font-size: 20px;
    font-weight: 700;
}

/* Remove "..." */
.downloads-pagination .dots {
    display: none;
}


/* ===========================
   REDES SOCIAIS - CONTATO
   VERSÃO PREMIUM FINAL
   =========================== */

.contato-social-section {
    margin: 120px 0 80px;
    text-align: center;
    position: relative;
}

.contato-social-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #1e1e1e;
}

/* Wrapper dos ícones */
.social-preview-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Ícone base */
.social-preview {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 22px;
    position: relative;
    transition: all .25s ease;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* Hover ícone */
.social-preview:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

/* CARD DE PRÉVIA */
.social-card {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) scale(.95);
    width: 230px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
    padding: 14px 16px;
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
    text-align: center;
    z-index: 10;
}

/* Setinha do card */
.social-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #fff;
}

/* Exibe o card no hover */
.social-preview:hover .social-card {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Conteúdo do card */
.social-card strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #222;
}

.social-card span {
    display: block;
    font-size: 13px;
    color: #777;
}

.social-card p {
    font-size: 13px;
    line-height: 1.45;
    margin-top: 8px;
    color: #444;
}

/* CORES POR REDE */
.facebook:hover {
    background: #1877f2;
    color: #fff;
}

.instagram:hover {
    background: #e1306c;
    color: #fff;
}

.linkedin:hover {
    background: #0a66c2;
    color: #fff;
}

.youtube:hover {
    background: #ff0000;
    color: #fff;
}

/* MOBILE (desativa preview) */
@media (max-width: 768px) {
    .social-card {
        display: none;
    }

    .contato-social-section {
        margin: 80px 0 60px;
    }

    .contato-social-title {
        font-size: 20px;
    }
}
