* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* ===================== NAVBAR ===================== */
/* ===================== NAVBAR ===================== */
.navbar {
    display: flex;
    background: #000;
    align-items: center;
    padding: 0 40px;
    height: 80px;
    justify-content: space-between;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #ffde59, #ff914d) 1;
}

.logo {
    display: flex;
    align-items: center;
    height: 65px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 10px;
    padding: 0;
    list-style: none;
    align-items: center;
}

.linha-nav {
    border-right: 2px solid #ff914d;
    height: 22px;
    opacity: 0.5;
}

.nav-btn {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 8px 22px;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 22px;
    right: 22px;
    height: 2px;
    background: linear-gradient(to right, #ffde59, #ff914d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-btn:hover::after {
    transform: scaleX(1);
}

.nav-btn:hover {
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: brightness(1.2);
}

/* Responsivo navbar */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 12px 16px;
        gap: 8px;
    }

    .logo {
        height: 50px;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-btn {
        font-size: 13px;
        letter-spacing: 1px;
        padding: 6px 12px;
    }
}

/* ===================== HERO / VÍDEO ===================== */
.home {
    position: relative;
}

.bg-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border-top: 4px solid white;
    margin-top: 90px;
    display: block;
}

.text-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    z-index: 1;
    width: 90%;
}

.Gecar-vid {
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===================== SEÇÃO SERVIÇOS ===================== */
.secao-servicos {
    background: linear-gradient(to bottom, #1a1a1a, #000);
    padding: 40px 20px;
}

.titulo-servicos-wrapper {
    text-align: center;
    padding: 20px 0 40px;
}

.titulo-servicos {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 6px;
    background: linear-gradient(to bottom, #aaaaaa, #ffffff, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
}

/* Card de cada serviço */
.card-servico {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #1c1c1c, #2a2a2a);
    border-bottom: 2px solid #333;
    padding: 30px 40px;
    gap: 60px;
    min-height: 260px;
}

.card-servico:last-of-type {
    border-bottom: none;
}

/* Lado esquerdo */
.card-servico-esquerda {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 220px;
    text-align: center;
    padding-left: 40px;
}

.card-servico-btn-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(255, 145, 77, 0.3));
    transition: transform 0.3s ease;
}

.card-servico-btn-img:hover {
    transform: scale(1.05);
}

.card-servico-nome {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-align: center;
}

.card-servico-saibamais {
    color: #ffde59;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #ffde59;
    padding: 6px 20px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
    text-align: center;
}

.card-servico-saibamais:hover {
    background: #ffde59;
    color: black;
}

.card-servico-direita {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 700px;
}

.mini-carousel {
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    border: 3px solid #ff914d;
    border-radius: 6px;
}

.mini-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.mini-carousel-slide {
    min-width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 400px;
}

.foto-placeholder {
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 16px;
    font-weight: bold;
    border: 2px dashed #444;
    box-sizing: border-box;
}

.mini-carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #555;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.ativo {
    background: #ff914d;
}

/* ===================== CARROSSEL SEGURADORAS ===================== */
.carousel-container {
    width: 100%;
    overflow: hidden;
    background: white;
    padding: 20px 0;
    border-top: 6px solid #ffde59;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
    will-change: transform;
}

@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.card {
    flex: 0 0 auto;
    width: 180px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 10px;
}

.card img {
    width: 160px;
    height: 140px;
    object-fit: contain;
}

/* ===================== SOBRE NÓS ===================== */
/* ===================== SOBRE NÓS ===================== */
.sobre-nos {
    background: #0a0a0a;
    border-top: 2px solid;
    border-image: linear-gradient(to right, #ffde59, #ff914d) 1;
    padding: 70px 80px;
}

.sobre-nos-header {
    text-align: center;
    margin-bottom: 60px;
}

.sobre-nos-titulo {
    font-size: 46px;
    font-weight: 900;
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.sobre-nos-linha {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ffde59, #ff914d);
    margin: 0 auto;
    border-radius: 2px;
}

.sobre-nos-conteudo {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Lado esquerdo - logo + badge */
.sobre-nos-esquerda {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-width: 220px;
}

.sobre-nos-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 145, 77, 0.3));
}

.sobre-nos-badge {
    background: linear-gradient(to right, #ffde59, #ff914d);
    color: #000;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 8px 24px;
    border-radius: 30px;
}

/* Lado direito - texto + números */
.sobre-nos-direita {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.sobre-nos-texto {
    font-size: 17px;
    color: #ccc;
    line-height: 1.8;
}

.sobre-destaque {
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* Números / estatísticas */
.sobre-nos-numeros {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 16px;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 24px 30px;
    justify-content: space-around;
}

.sobre-numero-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.sobre-numero {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sobre-numero-label {
    font-size: 13px;
    color: #888;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.sobre-numero-divisor {
    width: 1px;
    height: 50px;
    background: #333;
}

/* Responsivo sobre nós */
@media (max-width: 768px) {
    .sobre-nos {
        padding: 40px 24px;
    }

    .sobre-nos-titulo {
        font-size: 30px;
        letter-spacing: 2px;
    }

    .sobre-nos-conteudo {
        flex-direction: column;
        gap: 40px;
    }

    .sobre-nos-esquerda {
        min-width: unset;
        width: 100%;
    }

    .sobre-nos-logo {
        width: 150px;
    }

    .sobre-nos-texto {
        font-size: 15px;
    }

    .sobre-nos-numeros {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .sobre-numero-divisor {
        width: 60px;
        height: 1px;
    }

    .sobre-numero {
        font-size: 28px;
    }
}

/* ===================== WHATSAPP ===================== */
.botao-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}

.botao-whatsapp a {
    display: block;
}

.botao-whatsapp img {
    height: 90px;
    width: 90px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.botao-whatsapp img:hover {
    transform: scale(1.1);
}

/* ===================== RODAPÉ ===================== */
/* ===================== RODAPÉ ===================== */
.info {
    background: radial-gradient(ellipse at left center, #3a1a00 0%, #1a0a00 40%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 80px;
    width: 100%;
    border-top: 2px solid;
    border-image: linear-gradient(to right, #ffde59, #ff914d) 1;
    gap: 40px;
    flex-wrap: wrap;
}

.info-endereco {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 260px;
}

.info-titulo {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    border-bottom: 1px solid #ff914d;
    padding-bottom: 6px;
}

.info-texto {
    color: #ccc;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.8;
}

.info-contatos {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.info-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.info-link:hover {
    transform: translateY(-6px);
}

.info-icone-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icone-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-link-nome {
    color: #ffde59;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Responsivo rodapé */
@media (max-width: 768px) {
    .info {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 24px;
        gap: 30px;
    }

    .info-contatos {
        gap: 30px;
        width: 100%;
        justify-content: center;
    }

    .info-icone-box {
        width: 60px;
        height: 60px;
    }

    .info-link-nome {
        font-size: 13px;
    }

    .info-texto {
        font-size: 13px;
    }
}

/* ===================== PÁGINAS DE SERVIÇO ===================== */
.container-textimg {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 90px;
    flex-wrap: wrap;
}

.titulo-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 700px;
}

.titulo {
    justify-content: center;
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 36px;
    font-weight: bold;
    display: flex;
}

.text-funilaria {
    font-weight: bold;
    font-size: 22px;
    color: white;
    border-top: 3px solid white;
    border-bottom: 3px solid white;
    padding: 20px 10px;
    line-height: 1.6;
}

.container-img {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-img img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    padding: 10px;
    margin-top: 15px;
    border: 4px solid white;
}

.container-img p {
    font-weight: bold;
    font-size: 24px;
    color: white;
    text-align: center;
}

.imagemdecima {
    margin-top: 20px;
}

.container-video-est {
    width: 500px;
    max-width: 100%;
}

.container-video-est .bg-video {
    margin-top: 0;
    height: 400px;
    border-top: none;
}

.container-video .bg-video {
    margin-top: 0;
    height: 500px;
    border-top: none;
}

/* ===================== ANIMAÇÕES ===================== */
.slide-up {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.slide-up.active {
    transform: translateY(0);
    opacity: 1;
}

.slide-left {
    transform: translateX(-80px);
    opacity: 0;
    transition: all 0.8s ease;
}

.slide-left.active {
    transform: translateX(0);
    opacity: 1;
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 10px;
        justify-content: center;
        gap: 8px;
    }

    .logo {
        height: 60px;
    }

    .nav-links {
        gap: 10px;
        font-size: 15px;
        justify-content: center;
    }

    .nav-links a {
        margin: 0;
    }

    /* Hero */
    .bg-video {
        height: 60vh;
        margin-top: 110px;
    }

    .text-video {
        font-size: 24px;
        width: 95%;
    }

    /* Seção serviços */
    .titulo-servicos {
        font-size: 38px;
        letter-spacing: 3px;
    }

    .card-servico {
        flex-direction: column;
        padding: 24px 16px;
        gap: 20px;
        align-items: flex-start;
    }

    .card-servico-esquerda {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        min-width: unset;
        width: 100%;
    }

    .card-servico-nome {
        font-size: 26px;
    }

    .card-servico-icone {
        width: 50px;
    }

    .card-servico-direita {
        width: 100%;
    }

    .mini-carousel-slide {
        height: 180px;
    }

    /* Carrossel seguradoras */
    .card {
        width: 130px;
        height: 110px;
    }

    .card img {
        width: 110px;
        height: 90px;
    }

    /* Sobre nós */
    .sobre-nos-titulo {
        font-size: 26px;
    }

    .bloco-sobre-nos {
        padding: 30px 16px;
    }

    .text-sobrenos {
        font-size: 1em;
    }

    /* WhatsApp */
    .botao-whatsapp img {
        width: 65px;
        height: 65px;
    }

    /* Rodapé */
    .info {
        flex-direction: column;
        gap: 20px;
        padding: 24px 16px;
    }

    .gmail,
    .insta,
    .maps,
    .telefone {
        width: 60px;
        height: 60px;
    }

    .link-contato .slide-left {
        flex-direction: row;
        gap: 12px;
    }

    .nomes {
        font-size: 14px;
    }

    .informacoes {
        font-size: 20px;
    }

    .endereco {
        font-size: 14px;
    }

    /* Páginas de serviço */
    .container-textimg {
        flex-direction: column;
        gap: 30px;
        padding: 20px 16px;
        margin-top: 120px;
    }

    .titulo {
        font-size: 26px;
    }

    .text-funilaria {
        font-size: 16px;
        width: 100%;
    }

    .container-img img {
        width: 260px;
        height: 260px;
    }

    .container-img p {
        font-size: 18px;
    }

    .container-video-est {
        width: 100%;
    }

    .container-video-est .bg-video {
        height: 260px;
    }

    .container-video .bg-video {
        height: 260px;
    }
}
/* ===================== SEÇÃO SELO VERDE ===================== */
.secao-selo {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.selo-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.selo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.selo-conteudo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 80px;
    width: 100%;
    max-width: 1200px;
}

/* Lado esquerdo */
.selo-esquerda {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.selo-frase {
    font-size: 22px;
    font-weight: 900;
    color: white;
    line-height: 1.5;
    letter-spacing: 1px;
    border: 2px solid #4CAF50;
    padding: 16px 20px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.4);
}

.selo-destaque {
    color: #4CAF50;
}

.selo-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.selo-img {
    width: 130px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.4));
}

.iqa-img {
    width: 180px;
    height: auto;
    background: white;
    border-radius: 10px;
    padding: 10px 16px;
}

/* Divisor vertical */
.selo-divisor {
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #ff914d, transparent);
    flex-shrink: 0;
}

/* Lado direito */
.selo-direita {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    flex: 1;
    text-align: center;
}

.agende-texto {
    font-size: 18px;
    color: #ccc;
    line-height: 1.8;
    font-weight: bold;
}

.agende-destaque {
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-agende {
    display: inline-block;
    background: linear-gradient(to right, #ffde59, #ff914d);
    color: #000;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, filter 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 145, 77, 0.4);
}

.btn-agende:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Responsivo */
@media (max-width: 768px) {
    .selo-conteudo {
        flex-direction: column;
        padding: 40px 24px;
        gap: 36px;
    }

    .selo-frase {
        font-size: 17px;
    }

    .selo-divisor {
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, transparent, #ff914d, transparent);
    }

    .agende-texto {
        font-size: 15px;
    }

    .btn-agende {
        font-size: 17px;
        padding: 14px 36px;
    }

    .selo-img {
        width: 100px;
    }

    .iqa-img {
        width: 140px;
    }
}
.card-servico-btn-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(255, 145, 77, 0.3));
    transition: transform 0.3s ease;
}

.card-servico-btn-img:hover {
    transform: scale(1.05);
}
/* ===================== PÁGINAS DE SERVIÇO - BANNER TOPO ===================== */
.pagina-banner {
    position: relative;
    width: 100%;
    height: 420px;
    margin-top: 80px;
    overflow: hidden;
}

.pagina-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pagina-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.1) 100%);
}

.pagina-banner-titulo {
    position: absolute;
    bottom: 40px;
    left: 60px;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    font-style: italic;
}

/* ===================== PÁGINAS DE SERVIÇO - ITENS ===================== */
.pagina-servicos {
    background: #0a0a0a;
    padding: 20px 0;
}

.servico-item {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 80px;
    border-bottom: 1px solid #1a1a1a;
}

.servico-item-invertido {
    flex-direction: row-reverse;
    background: #0f0f0f;
}

.servico-img-box {
    flex-shrink: 0;
    width: 380px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #222;
}

.servico-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.servico-img-box img:hover {
    transform: scale(1.05);
}

.servico-texto {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.servico-titulo {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.servico-subtitulo {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.servico-descricao {
    font-size: 16px;
    color: #aaa;
    line-height: 1.8;
}

.servico-btn {
    display: inline-block;
    background: linear-gradient(to right, #ffde59, #ff914d);
    color: #000;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    width: fit-content;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.servico-btn:hover {
    filter: brightness(1.15);
    transform: scale(1.03);
}

/* ===================== RESPONSIVO PÁGINAS DE SERVIÇO ===================== */
@media (max-width: 768px) {
    .pagina-banner {
        height: 260px;
        margin-top: 110px;
    }

    .pagina-banner-titulo {
        font-size: 42px;
        bottom: 20px;
        left: 24px;
    }

    .servico-item,
    .servico-item-invertido {
        flex-direction: column;
        padding: 40px 20px;
        gap: 24px;
    }

    .servico-img-box {
        width: 100%;
        height: 220px;
    }

    .servico-titulo {
        font-size: 22px;
    }

    .servico-subtitulo {
        font-size: 15px;
    }

    .servico-descricao {
        font-size: 14px;
    }
}
/* ===================== BANNER DUPLO ===================== */
.banner-duplo {
    display: flex;
    width: 100%;
    height: 420px;
    margin-top: 80px;
    overflow: hidden;
    position: relative;
}

.banner-metade {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.banner-metade-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.banner-metade:hover .banner-metade-img {
    transform: scale(1.04);
}

.banner-metade-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 30%, rgba(0,0,0,0.2) 100%);
}

.banner-metade-titulo {
    position: absolute;
    bottom: 36px;
    left: 36px;
    font-size: 64px;
    font-weight: 900;
    font-style: italic;
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.banner-divisor {
    width: 4px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
}

.banner-divisor-linha {
    width: 4px;
    background: linear-gradient(to bottom, transparent, #ffde59, #ff914d, transparent);
    flex: 1;
}

/* ===================== INTRO FUNILARIA E PINTURA ===================== */
.funpin-intro {
    background: #0a0a0a;
    padding: 50px 80px;
    text-align: center;
    border-bottom: 1px solid #1a1a1a;
}

.funpin-intro-texto {
    font-size: 20px;
    color: #bbb;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.funpin-destaque {
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* ===================== ANTES E DEPOIS ===================== */
.antesdepois-secao {
    background: #080808;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.antesdepois-titulo {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.antesdepois-linha {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ffde59, #ff914d);
    margin: 0 auto;
    border-radius: 2px;
}

.slider-wrapper {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slider-label-topo {
    color: #888;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #222;
    cursor: col-resize;
    user-select: none;
}

.slider-depois,
.slider-antes {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
}

.slider-depois {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-antes {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 3px solid #ff914d;
    z-index: 2;
}

.slider-depois img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.slider-antes img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    pointer-events: none;
}

.slider-tag {
    position: absolute;
    top: 14px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 4px;
}

.antes-tag {
    right: 14px;
    background: rgba(0,0,0,0.7);
    color: #ff4444;
    border: 1px solid #ff4444;
}

.depois-tag {
    left: 14px;
    background: rgba(0,0,0,0.7);
    color: #ffde59;
    border: 1px solid #ffde59;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    cursor: col-resize;
}

.slider-handle-linha {
    width: 3px;
    flex: 1;
    background: #ff914d;
}

.slider-handle-circulo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(to right, #ffde59, #ff914d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: black;
    font-weight: bold;
    box-shadow: 0 0 12px rgba(255, 145, 77, 0.6);
}

/* ===================== CTA FUNILARIA E PINTURA ===================== */
.funpin-cta {
    background: linear-gradient(to right, #0f0f0f, #1a1a1a);
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-top: 2px solid;
    border-image: linear-gradient(to right, #ffde59, #ff914d) 1;
}

.funpin-cta-texto {
    font-size: 22px;
    color: #ccc;
    font-weight: bold;
    line-height: 1.6;
}

/* ===================== RESPONSIVO FUNILARIA E PINTURA ===================== */
@media (max-width: 768px) {
    .banner-duplo {
        flex-direction: column;
        height: auto;
        margin-top: 110px;
    }

    .banner-metade {
        height: 200px;
    }

    .banner-metade-titulo {
        font-size: 38px;
        bottom: 20px;
        left: 20px;
    }

    .banner-divisor {
        width: 100%;
        height: 4px;
    }

    .banner-divisor-linha {
        width: 100%;
        height: 4px;
        background: linear-gradient(to right, transparent, #ffde59, #ff914d, transparent);
    }

    .funpin-intro {
        padding: 36px 20px;
    }

    .funpin-intro-texto {
        font-size: 16px;
    }

    .antesdepois-secao {
        padding: 40px 16px;
        gap: 40px;
    }

    .antesdepois-titulo {
        font-size: 28px;
    }

    .slider-container {
        height: 260px;
    }

    .funpin-cta {
        padding: 40px 20px;
    }

    .funpin-cta-texto {
        font-size: 16px;
    }
}
/* ===================== RODAPÉ INFERIOR ===================== */
.rodape-inferior {
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    border-top: 1px solid #1a1a1a;
    flex-wrap: wrap;
    gap: 10px;
}

.rodape-assinatura {
    color: #555;
    font-size: 13px;
}

.rodape-nome {
    background: linear-gradient(to right, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.rodape-lgpd {
    color: #555;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid #333;
    padding: 4px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.rodape-lgpd:hover {
    border-color: #ff914d;
    color: #ff914d;
}

@media (max-width: 768px) {
    .rodape-inferior {
        flex-direction: column;
        align-items: center;
        padding: 16px 20px;
        text-align: center;
    }
}
.link-contato,
.link-contato:visited,
.link-contato:hover,
.link-contato:active {
    text-decoration: none;
    color: inherit;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.link-contato img {
    border: none;
    outline: none;
}