/* HEADER */
.header-clean {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1000;
}

.header-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;

    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;    
}

.logo {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo img {
    width: 80px;
    height: auto;
}

.logo span {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.1;
}
.logo:hover {
    text-decoration: none;
    color: inherit;
}

.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 1001;
}

.main-nav a {
    position: relative;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding-bottom: 6px;
    font-size: 16px;
    transition: color 0.2s ease;
}

/* linha invisível */
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #b40000;
    transition: width 0.25s ease;
}

/* hover menu */
.main-nav a:hover {
    color: #b40000;
}

.main-nav a:hover::after {
    width: 100%;
}

/* item ativo */
.main-nav a.active {
    color: #b40000;
}

.main-nav a.active::after {
    width: 100%;
}

/* MOBILE */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #000;
}

/* HEADER MOBILE */
@media (max-width: 768px) {

   .header-wrapper {
        position: relative;
        z-index: 1000;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        transform: none; 
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        padding: 20px 0;
        display: none;
        border-bottom: 1px solid #eee;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        z-index: 999;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        font-size: 18px;
    }

    .menu-toggle {
        display: flex;
    }

    /* ESCONDER BUSCA NO MOBILE */
    .header-right .search-icon,
    .header-right .search-box {
        display: none !important;
    }

}
.texto-destaque {
    font-size: 18px;
}

.header-right {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* SEARCH */
.search-box {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);

    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 10px;

    display: none;
    z-index: 1002;
}
.search-icon {
    display: block !important;
    /* background: red !important; */
    padding: 10px !important;


    position: relative;
    z-index: 1002;
    font-size: 18px;
    cursor: pointer;
}

.search-box input {
    border: 1px solid #ddd;
    padding: 8px 12px;
    width: 220px;
    border-radius: 4px;
    outline: none;
}

.search-box input:focus {
    border-color: #b40000;
}

.search-icon {
    cursor: pointer;
    font-size: 18px;
    padding: 8px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .search-box {
        right: 10px;
        left: 10px;
    }

    .search-box input {
        width: 100%;
    }
}

/* HERO MOBILE */
@media (max-width: 768px) {
     .hero-bg-img {
        content: url("/img/img_inicio_mob.webp");
    }

    .hero {
        height: auto;
        min-height: auto;
        flex-direction: column;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-container {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }

    .hero-logo-area {
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-form-area {
        width: 100%;
        max-width: 400px;
        margin-top: 0;
    }

    .hero-logo-wrapper {
        display: none;
    }

   .hero-bg-wrapper {
        height: 100%;
    }
    .hero-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

.hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    padding: 120px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #000;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 60px;
}

.hero-logo-area {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
}

.hero-logo-area h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero-logo-area h1,
.hero-logo-area p {
    opacity: 0;
    transform: translateY(40px);
}

.hero-form-area {
    flex: 0 0 400px;
    margin-left: auto;
    margin-top: -60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(50px);
}

.hero-logo-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    z-index: 3;
    pointer-events: none;
}

.hero-logo-img {
    width: 350px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

/* FOOTER */
.site-footer {
    background: #2f2f2f;
    color: #fff;
    padding: 50px 0;
    font-size: 15px;
}

.footer-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-col ul li i {
    font-size: 18px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

/* LOGO */
.footer-brand {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 3px;
}

.footer-brand img {
    width: 100px;
    height: auto;
    margin-top: -13px;
}

.footer-brand strong {
    display: block;
    font-size: 16px;
    text-align: center;
}

.footer-brand span {
    font-size: 13px;
    opacity: 0.8;
}

/* SOCIAL */
.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social a {
    font-size: 22px;
    color: #fff;
}

.footer-social a:hover {
    color: #b40000;
}
.footer-marca strong {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

/* FOOTER MOBILE */
@media (max-width: 768px) {

    .footer-social .social-icons {
        justify-content: center;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer-col ul {
        align-items: center;
    }

    .footer-col ul li {
        justify-content: center;
        text-align: center;
    }

    .footer-col h4 {
        text-align: center;
    }
}
.footer-hours ul li {
    display: block;
    margin-bottom: 6px;
}

.footer-hours strong {
    font-weight: 600;
}

/* DESTAQUES  */
.highlights {
    background: #ffffff;
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Card */
.highlight-card {
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 30px 20px;
    background: #fff;
    height: 100%;
    transition: all 0.25s ease;
}

/* Ícone */
.highlight-card i {
    font-size: 42px;
    margin-bottom: 15px;
    display: block;
    color: #000;
    transition: color 0.25s ease;
}

.highlight-card h5 {
    font-weight: 600;
    margin: 0;
}

.highlight-card:hover {
    transform: translateY(-6px);
    border-color: #b40000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.highlight-card:hover i {
    color: #b40000;
}

.highlights-title {
    margin-top: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
}
/* CARROSSEL SERVIÇOS */
.servicos-carousel-wrapper {
    position: relative;
}

/* Setas */
#servicosCarousel .carousel-control-prev,
#servicosCarousel .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    z-index: 10;
    opacity: 1;
}

@media (min-width: 769px) {
    #servicosCarousel .carousel-control-prev {
        left: -70px;
    }
    #servicosCarousel .carousel-control-next {
        right: -70px;
    }
}

/* MOBILE: esconder setas do carousel */
@media (max-width: 768px) {
    #servicosCarousel .carousel-control-prev,
    #servicosCarousel .carousel-control-next {
        display: none;
    }
}


/* Ícones */
#servicosCarousel .carousel-control-prev-icon,
#servicosCarousel .carousel-control-next-icon {
    filter: invert(1);
    width: 32px;
    height: 32px;
}

/* NÃO controlar altura do slide */
#servicosCarousel .carousel-item {
    height: auto;
}

/* Coluna da mídia (imagem / vídeo) */
.servico-media {
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 12px;
}

/* Imagens */
.servico-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vídeos */
.servico-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
    .servico-media {
        height: 260px;
    }
}


.stars {
    color: #ff3b3b;
    font-size: 18px;
    letter-spacing: 2px;
}
/* Mobile */
@media (max-width: 768px) {
    .depoimento-card {
        text-align: center;
    }
}
.depoimento-card {
    background: #fff;
    padding: 30px 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 600px;
}
.depoimentos {
    background: #f8f9fa; /* opcional, dá contraste com o card */
}

.depoimento-card p {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.depoimento-card strong {
    font-weight: 600;
}


/* HERO PRODUTOS */
.produtos-hero {
    position: relative;
    background: url("../img/img_inicio.png") center/cover no-repeat;
    height: 320px;
    display: flex;
    align-items: center;
}

.produtos-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.produtos-hero h1,
.clientes-hero h1,
.contato-hero h1 {
    position: relative;
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
}

.clientes-hero h1,
.contato-hero h1,
.produtos-hero h1 {
    text-align: center;
}

.produtos-hero .container,
.clientes-hero .container,
.contato-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FILTROS */
.produtos-filtros {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.filtro-lista {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    margin: 0;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.filtro-lista li {
    cursor: pointer;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    transition: 0.2s;
}

.filtro-lista li.active {
    background: #7a0b0b;
    color: #fff;
}

/* GRID PRODUTOS */
.produto-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: 0.25s;
}

.produto-card:hover {
    transform: translateY(-5px);
}

.produto-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.produto-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}
.produto-card p {
    margin-bottom: 6px;
    line-height: 1.3;
}
.produto-detalhes {
    text-align: left;
    padding: 20px;
}
.produto {
    transition: opacity 0.2s ease;
}

.btn-orcamento {
    display: inline-block;
    background: #7a0b0b;
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
}

.btn-orcamento:hover {
    background: #5e0808;
}

/* MOBILE */
@media (max-width: 768px) {
    .produtos-hero h1 {
        font-size: 2rem;
    }

    .filtro-lista {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}
/* HERO CLIENTES */
.clientes-hero {
    position: relative;
    background: url("../img/img_inicio.png") center/cover no-repeat;
    height: 260px;
    display: flex;
    align-items: center;
}

.clientes-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* SEÇÃO CLIENTES / PARCEIROS */
.clientes-parceiros {
    background: #fff;
}

/* CARD LOGO */
.logo-card {
    background: #fff;
    border-radius: 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 768px) {
    .clientes-hero h1 {
        font-size: 2rem;
        text-align: center;
    }

    .logo-card {
        height: 100px;
    }
}
/* HERO CONTATO */
.contato-hero {
    position: relative;
    height: 260px;
    background: url("../img/img_inicio.png") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.contato-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* INFO CONTATO */
.contato-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.info-card i {
    font-size: 22px;
    color: #b40000;
}

/* FORM */
.contato-form-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.telefone-link {
    color: inherit;
    text-decoration: none;
    font-weight: normal;
}

.telefone-link:hover {
    color: inherit;
    text-decoration: none;
}
.email-link {
    color: inherit;
    text-decoration: none;
    font-weight: normal;
}

.email-link:hover {
    color: inherit;
    text-decoration: none;
}


/* MOBILE */
@media (max-width: 768px) {
    .contato-hero h1 {
        font-size: 2rem;
        text-align: center;
    }

    .contato-info {
        align-items: center;
        text-align: center;
    }

    .info-card {
        width: 100%;
        justify-content: center;
    }
}
.btn-orcamento {
    background-color: #b40000;
    border-color: #b40000;
    color: #fff;
    font-weight: 600;
    padding: 10px 90px;
    font-size: 17px;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.2s ease;
}


.btn-orcamento:hover {
    background-color: #5e0e0e;
    border-color: #5e0e0e;
    color: #fff;
}

.btn-orcamento:focus,
.btn-orcamento:active {
    background-color: #5e0e0e;
    border-color: #5e0e0e;
    box-shadow: 0 0 0 0.2rem rgba(116, 17, 17, 0.35);
}
.produto-observacao {
    display: block;
    font-size: 12px;
    color: #777;
    margin: 8px 0 12px;
    line-height: 1.4;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 56px;
    height: 56px;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
    }
}

/* COOKIES */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    transform: none;
    bottom: 20px;  
    background: #fff;
    color: #000;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    text-align: center;
    z-index: 9999;
    font-size: 15px;
}

.cookie-banner p {
    margin-bottom: 10px;
    line-height: 1.4;
}

.cookie-links {
    margin-bottom: 15px;
}

.cookie-links a {
    color: #000;
    text-decoration: underline;
    font-size: 14px;
    margin: 0 5px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cookie-buttons button {
    padding: 6px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#btn-aceitar {
    background: #FFD700; 
    color: #000;
}

#btn-rejeitar {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

/* Responsivo */
@media (max-width: 480px) {
    .cookie-banner {
    padding: 15px;
    font-size: 14px;
    }

    .cookie-buttons button {
    flex: 1;
    }
}

