@media (min-width: 992px) {
    .about-grid {

        align-items: center !important;
    }
}

/*secao 1*/
.section-1-single {
    background: #F8F8F8;
}

.buttons-single {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-top: 32px;
    /* Espaçamento ajustável conforme o design */
}

.buttons-single .feature-item {
    flex: 1;
    /* Faz as duas divs ocuparem 50% de espaço igualmente */
    min-width: 0;
    /* Evita que o conteúdo quebre o flex no mobile */
}

.buttons-single .feature-item a {
    width: 100% !important;
    /* Força o botão esticar, sobrescrevendo os estilos globais */
    display: flex !important;
    justify-content: center;
    box-sizing: border-box;
    max-width: 100%;
}

/* Responsivo para garantir que fiquem bem no mobile */
@media (max-width: 576px) {
    .buttons-single {
        flex-direction: column;
    }
}


/*secao 2*/

.lt-section-vantagens {
    padding: 80px 0px;
    background-color: #FCFCFC;
}



.single-title {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 31px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}


.lt-vantagens-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
}

.lt-vantagem-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lt-vantagem-icon-wrapper {
    flex-shrink: 0;
    margin-top: 2px;
    /* Ajuste fino do alinhamento do ícone com o texto */
}

.lt-vantagem-text {
    font-family: 'Geist';
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: -1%;
    vertical-align: middle;
    color: #242322;
}

/* O cliente pode usar <strong> direto no painel do CMB2 */
.lt-vantagem-text strong {
    color: #000;
    font-weight: 700;
}

/* Responsivo para duas colunas a partir de tablets/desktops */
@media (min-width: 768px) {
    .lt-vantagens-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/*secao 3 */

.lt-section-tipos {
    padding: 80px 0;
    background-color: #fff;
}



/* Grid Responsivo automático (Mínimo de 260px por card) */
.lt-tipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* Estrutura do Card */
.lt-card-tipo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 205px;
    /* Altura controlada evita quebras e CLS */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wrapper e imagem absoluta para simular background-image sem travar o PageSpeed */
.lt-card-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lt-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradiente/Overlay escuro para dar leitura ao texto branco */
.lt-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);

    z-index: 2;
}

/* Texto do Card */
.lt-card-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.lt-card-title {
    color: #fff;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;

}

.btn-orcamento {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

/* Ajuste específico para telas maiores, permitindo até 4 colunas como no layout original */
@media (min-width: 992px) {
    .lt-tipos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/*secao 4*/

.section-4 {
    background: #FFFFFF;
}

.desc-section-4 {
    max-width: 555px;
}

.img-section-4 img {
    border-radius: 0 !important;
    box-shadow: none !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 426px;
}

/* Carrossel da Secao 4 */
.lt-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 568px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0px 25px 50px -12px #00000040;
}

.lt-carousel-slides {
    position: relative;
    height: 426px;
    width: 100%;
}

@media (max-width: 576px) {
    .lt-carousel-slides {
        height: 280px;
    }
    .img-section-4 img {
        max-height: 280px;
    }
}

.lt-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    z-index: 1;
}

.lt-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Dots Navigation */
.lt-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.lt-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.lt-carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.lt-carousel-dot.active {
    background-color: #F97316;
    width: 24px;
    border-radius: 5px;
}

/* Prev/Next Buttons */
.lt-carousel-prev,
.lt-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    z-index: 10;
    opacity: 0;
}

.lt-carousel-wrapper:hover .lt-carousel-prev,
.lt-carousel-wrapper:hover .lt-carousel-next {
    opacity: 1;
}

.lt-carousel-prev:hover,
.lt-carousel-next:hover {
    background-color: #F97316;
}

.lt-carousel-prev {
    left: 12px;
}

.lt-carousel-next {
    right: 12px;
}

/*section 5*/

.section-5 {
    background: #fff;
}

.lt-seguranca-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 24px;
}

@media (min-width: 768px) {
    .lt-seguranca-list.has-2-cols {
        display: grid;
        grid-template-columns: 1fr 1fr;

        row-gap: 16px;
    }

    .lt-seguranca-list.has-2-cols .lt-seguranca-item {
        margin-bottom: 0;
    }
}

.lt-seguranca-item {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
}

.lt-item-title {
    margin: 0;
    font-family: 'Geist';
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #242322;
}

.lt-item-desc {
    margin: 0;
    font-size: 16px;
}

.lt-seguranca-item:last-child {
    margin-bottom: 0;
}

/*secao 6*/
.title-section-6 {
    max-width: 500px;
}

.btn-single {
    margin-top: 40px;
}


/*section 7*/

.lt-section-marcas {
    padding: 80px 00px;
    background-color: #fff;
}



/* Grid de marcas flexível e centralizado */
.lt-marcas-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;

    /* Espaçamento controlado entre as logos */
    max-width: 100%;
    margin: 0 auto;
}

.lt-marca-item {
    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 100%;
    height: auto;
    /* Altura fixa para manter a linha do horizonte alinhada */
}

.testimonials {
    background: #fff !important;
}

/*secao 8*/
.lt-section-outros-servicos {
    padding: 80px 0;
}

.lt-outros-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de 3 colunas em desktop */
.lt-outros-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
    margin-top: 40px;
}

/* Garante que o hover no card dê um feedback visual bacana sem quebrar layout */
.lt-card-linkable {
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lt-card-linkable:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
    .lt-outros-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}