/* Alinhamento horizontal dos contatos e apps */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contacts {
    display: flex;
    align-items: center;
    gap: 32px;
}
.contacts > span {
    margin-right: 18px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #fff;
}
.contacts-apps {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    margin-left: 16px;
}
.contacts-apps span {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 2px;
    white-space: nowrap;
}
.contacts-apps div {
    display: flex;
    gap: 16px;
}
.contacts-apps {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    margin-left: 16px;
}
.contacts-apps span {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 2px;
    white-space: nowrap;
}
.contacts-apps div {
    display: flex;
    gap: 16px;
}
/* Setas Swiper discretas */
.swiper-button-next,
.swiper-button-prev {
    color: #bbb !important;
    opacity: 0.7;
    transition: color 0.2s, opacity 0.2s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #b12623 !important;
    opacity: 1;
}
/* Setas do carrossel de parceiros fora dos cards */
.carousel-parceiros-controls {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -120px;
    z-index: 2;
    pointer-events: none;
}
.carousel-parceiros-controls .carousel-control-prev,
.carousel-parceiros-controls .carousel-control-next {
    position: static;
    pointer-events: auto;
    background: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: none;
    opacity: 1;
    border: 1.5px solid #eee;
    transition: background .2s, border .2s;
}
.carousel-parceiros-controls .carousel-control-prev:hover,
.carousel-parceiros-controls .carousel-control-next:hover {
    background: #ff2d00;
    border: 1.5px solid #ff2d00;
}
.carousel-parceiros-controls .carousel-control-prev-icon,
.carousel-parceiros-controls .carousel-control-next-icon {
    filter: none;
    background-size: 70% 70%;
}
/* Indicadores do carrossel de parceiros */
.carousel-indicators.position-static {
    position: static;
    margin-top: 18px;
    justify-content: center;
}
.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ff2d00;
    opacity: 0.4;
    border: none;
    margin: 0 6px;
    transition: opacity .2s, background .2s;
}
.carousel-indicators .active {
    opacity: 1;
    background-color: #ff2d00;
}
/* Indicadores do carrossel de marcas */
.carousel-indicators.position-static {
    position: static;
    margin-top: 18px;
    justify-content: center;
}
.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ff2d00;
    opacity: 0.4;
    border: none;
    margin: 0 6px;
    transition: opacity .2s, background .2s;
}
.carousel-indicators .active {
    opacity: 1;
    background-color: #ff2d00;
}
/* Footer */
.footer-site {
    background: #06173a;
    color: #fff;
    margin-top: 0;
    font-size: 1rem;
}
.footer-logo-bg {
    
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 140px;
    min-height: 80px;
}
.footer-logo-img {
    max-height: 240px;
    width: 280px;
    display: block;
}
.footer-title {
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}
.footer-link {
    color: #fff;
    text-decoration: underline dotted;
    transition: color .2s;
}
.footer-link:hover {
    color: #b02623;
}
.footer-social {
    margin-top: 10px;
}
.footer-social-link {
    color: #06173a;
    background: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: background .2s, color .2s;
}
.footer-social-link:hover {
    background: #b02623;
    color: #fff;
}
.footer-newsletter input.form-control {
    border-right: none;
    background: #06173a;
    color: #fff;
}
.footer-newsletter input.form-control:focus {
    box-shadow: none;
    border-color: #ff2d00;
    background: #06173a;
    color: #fff;
}
.footer-newsletter button.btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 0 22px;
}
.footer-copy {
    background: #06173a;
    font-size: 1rem;
    border-top: 1px solid #23325a;
    margin-top: 32px;
}
@media (max-width: 767px) {
    .footer-site .row > div {
        text-align: center !important;
    }
    .footer-logo-bg {
        margin: 0 auto 12px auto;
    }
    .footer-newsletter {
        flex-direction: column;
        gap: 8px;
    }
    .footer-newsletter input.form-control, .footer-newsletter button.btn {
        border-radius: 6px !important;
        width: 100%;
    }
}
/* Sessão Parceiros */
.parceiros-section {
    background: #f4f2f3;
}
.parceiro-card {
    /* background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07); */
    padding: 32px 18px;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow .2s;
}
.parceiro-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.13);
}
.parceiro-logo {
    max-width: 90%;
    max-height: 80px;
    object-fit: contain;
}
@media (max-width: 767px) {
    .parceiro-card {
        padding: 18px 6px;
        min-height: 100px;
    }
    .parceiro-logo {
        max-height: 50px;
    }
}
/* Linha vermelha abaixo do título Nossas Marcas */
.linha-vermelha {
    width: 120px;
    height: 6px;
    background: #ff2d00; 
    margin-top: 4px;
    margin-bottom: 8px;
}
/* Sessão Nossas Marcas */
.nossas-marcas-section {
    background: url('../img/Fundo-Marcas-Destaques.png') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 380px;
}
.nossas-marcas-section .marcas-info {
    background: rgba(10, 30, 60, 0.65);
    border-radius: 24px;
    margin-left: 40px;
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 32px 32px 32px 40px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
} 
.marcas-card {
    background: transparent;
    border-radius: 18px;
    box-shadow: none;
    padding: 2px;
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
    overflow: hidden;
}
.marcas-card img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
}    
@media (max-width: 767px) {
    .nossas-marcas-section {
        padding: 0 !important;
    }
    .nossas-marcas-section .marcas-info {
        margin: 0 0 16px 0;
        border-radius: 12px;
        padding: 16px;
    }
    .marcas-card {
        width: 100px;
        height: 360px;
        padding: 2px;
    }
}
/* Sessão Quem Somos */
.quem-somos-section {
    background: #F4F2F3;
}
.quem-somos-img-bg {
    position: absolute;
    left: 0;
    top: 10%;
    width: 120px;
    height: 320px;
    background: #b12623;
    border-radius: 120px 0 0 120px;
    z-index: 1;
} 
@media (max-width: 767px) {
    .quem-somos-img-bg {
        display: none;
    }
    .quem-somos-imgs img {
        width: 100% !important;
        margin: 0 0 16px 0 !important;
    }
}
.header-top {
            background: #06173a;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            height: 120px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            min-width: 240px;
            }
            .logo-area {
                position: relative;
                top: 0;
                left: 0;
                z-index: 11;
                pointer-events: auto;
                display: flex;
                justify-content: center;
                width: 100%;
            }
            .logo-bg { 
                display: flex;
                align-items: center;
                justify-content: center;
                min-width: 260px;
                min-height: 140px;
            }
            .logo-img {
                width: 348px;
                height: 258px;
                object-fit: contain;
                display: block;
                max-width: 100%; 
            }
        .header-top .contacts {
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .header-top .contacts span {
            font-size: 15px;
            margin-right: 10px;
        }
        .header-top .contacts a {
            color: #fff;
            margin-left: 8px;
            font-size: 18px;
            text-decoration: none;
        }
        .header-nav {
            background: linear-gradient(90deg, rgba(170,39,37,0.85) 0%, rgba(199,39,31,0.85) 100%);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            height: 60px;
            backdrop-filter: blur(2px);
        }
        .header-nav .nav {
            display: flex;
            gap: 40px;
            justify-content: flex-end;
            width: 100%;
        }
        .header-nav .nav a {
            color: #fff;
            font-weight: 600;
            text-decoration: none;
            font-size: 16px;
            transition: opacity .2s;
        }
        .header-nav .nav a:hover {
            opacity: 0.7;
        }
        .header-nav .logo-fortaleza {
            height: 48px;
        }
        .header-fixed {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        body {
            padding-top: 180px;
        }
        @media (max-width: 768px) {
            .header-top, .header-nav {
                flex-direction: column;
                height: auto;
                padding: 10px 10px;
            }
            .header-nav .nav {
                gap: 18px;
            }
            .logo-area {
                min-width: 0;
                height: auto;
            }
            .logo-bg {
                min-width: 0;
                min-height: 0;
                padding: 16px 16px 10px 16px;
            }
        }

        .header-swiper {
    width: 100%;
    height: 640px;
}
.header-swiper .swiper-slide img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}
@media (max-width: 767px) {
    .header-swiper, .header-swiper .swiper-slide img {
        height: 180px;
    }
}