/* ============================== 
   DESKTOP CSS E ESTILOS GLOBAIS 
============================== */

/* ==== EXTRACTED DESKTOP FROM 1menu.html ==== */
.Limpeza_pos_obra01 a {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #22c55e;
    color: #fff;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    white-space: nowrap;
    transition: all 0.3s;

}

.Limpeza_pos_obra01 a:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(34, 197, 94, .4);
}

.Limpeza_pos_obra01 {
    display: block;
    position: relative;
    margin: auto;
    top: -30px;
}

.solicitar_orçamento {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 55px;
    background: #22c55e;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    white-space: nowrap;
    transition: all 0.3s;
}

.solicitar_orçamento:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(34, 197, 94, .4);
}

.lco-header {
    --primary: hsl(140 45% 65%);
    --primary-foreground: #fff;
    --shadow-brand: 0 10px 30px -10px hsl(140 45% 65% / .3);
}

.lco-header .header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
    height: calc(3 * 1.5rem);
    /* altura = 3x font-size */
    display: flex;
    align-items: center;
    opacity: 0.98;
    /* opacidade do menu */
    padding: 0 1rem;
}

/* Container do Cabeçalho */
.lco-header .header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    position: relative;
    padding: 0 1rem;
}

/* Área da Logo (Esquerda) */
.logo-area {
    display: flex;
    align-items: center;
}

.logo-placeholder img {
    max-width: 120px;
    max-height: 45px;
    object-fit: contain;
}

.img-desktop {
    display: block;
}

.img-mobile {
    display: none;
}

@media (max-width: 768px) {
    .img-desktop {
        display: none !important;
    }

    .img-mobile {
        display: block !important;
    }
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.depo-img {
    width: 100%;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 0.8rem;
    background: #f0f0f0;
}

.imagem_desktop {
    padding: 0 0 0 0;
}

/* Menu de Links (Centro) */
.nav-menu {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.nav-menu .nav-link {
    color: var(--primary-foreground);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.nav-menu .nav-link:hover {
    opacity: 0.8;
}

/* Área de Ação (Direita) */
.header-right {
    display: flex;
    align-items: center;
}

/* Botão WhatsApp */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    background: #22c55e;
    color: #fff;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(34, 197, 94, .4);
}

/* Mostrar/ocultar botão conforme dispositivo */
.desktop-btn {
    display: inline-flex;
}

.mobile-btn {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 30px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
}

/* Transição entre Desktop e Mobile */
@media (max-width: 1200px) {
    .logo-placeholder img {
        margin-left: 0;
    }

    .whatsapp-btn {
        margin-right: 0;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu .nav-link {
        font-size: 15px;
    }
}

/* Mobile */

/* ==== EXTRACTED DESKTOP FROM 2pixel_rastreio.html ==== */
.lco-header {
    --primary: hsl(140 45% 65%);
    --primary-foreground: #fff;
    --shadow-brand: 0 10px 30px -10px hsl(140 45% 65% / .3);
}

.lco-header .header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
    height: calc(3 * 1.5rem);
    /* altura = 3x font-size */
    display: flex;
    align-items: center;
    opacity: 0.98;
    /* opacidade do menu */
    padding: 0 1rem;
}


/* Mobile */

/* ==== EXTRACTED DESKTOP FROM 3imagem_com_logo.html ==== */
.meu-widget {
    position: relative;
    width: 100%;
    padding-bottom: 10px;
    /* separar da próxima seção */
    margin-top: 130px;
    /* espaço para o menu fixo não cobrir a seção */
}

.meu-widget .stage {
    position: relative;
    width: 100%;
    height: auto;
}

.meu-widget .img-box {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
}

.meu-widget .img-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    /* Bordas arredondadas */
}

/* ===== MOBILE ===== */


/* ===== DESKTOP ===== */

/* ==== EXTRACTED DESKTOP FROM 5secao_principal.html ==== */
/* ================== CSS Base ================== */
.lco-hero {
    --background: #fff;
    --foreground: hsl(222 84% 5%);
    --primary: hsl(140 45% 65%);
    --primary-foreground: #fff;
    --primary-light: hsl(140 50% 75%);
    --primary-dark: hsl(140 45% 55%);
    --secondary: hsl(208 70% 42%);
    --secondary-foreground: #fff;
    --accent: hsl(208 100% 97%);
    --muted-foreground: hsl(215 16% 47%);
    --border: hsl(214 32% 91%);
    --hero-gradient: linear-gradient(135deg, hsl(208 70% 42%) 0%, hsl(208 70% 32%) 100%);
    --shadow-brand: 0 10px 30px -10px hsl(140 45% 65% / .3);
    --shadow-elegant: 0 4px 20px -8px hsl(208 70% 42% / .2);

}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.lco-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.lco-hero .text-center {
    text-align: center
}

.lco-hero .text-base {
    font-size: 1rem
}

.lco-hero .text-lg {
    font-size: 1.125rem
}

.lco-hero .text-xl {
    font-size: 1.25rem
}

.lco-hero .text-2xl {
    font-size: 1.5rem
}

.lco-hero .text-4xl {
    font-size: 2.25rem
}

.lco-hero .text-5xl {
    font-size: 3rem
}

.lco-hero .font-medium {
    font-weight: 500
}

.lco-hero .font-bold {
    font-weight: 700
}

.lco-hero .leading-tight {
    line-height: 1.25
}

.lco-hero .opacity-90 {
    opacity: .9
}

.lco-hero .text-primary-light {
    color: var(--primary-light)
}

.lco-hero .text-white {
    color: #fff
}

.lco-hero .flex {
    display: flex
}

.lco-hero .flex-col {
    flex-direction: column
}

.lco-hero .items-center {
    align-items: center
}

.lco-hero .items-baseline {
    align-items: baseline
}

.lco-hero .justify-center {
    justify-content: center
}

.lco-hero .space-y-4>*+* {
    margin-top: 1rem
}

.lco-hero .space-y-8>*+* {
    margin-top: 2rem
}

.lco-hero .space-x-2>*+* {
    margin-left: .5rem
}

.lco-hero .md\:space-y-0>*+* {
    margin-top: 0
}

.lco-hero .md\:space-x-4>*+* {
    margin-left: 1rem
}



.lco-hero .grid {
    display: grid
}

.lco-hero .gap-12 {
    gap: 3rem
}

.lco-hero .items-center {
    align-items: center
}

/* Ajustes de botões apenas para mobile */

.lco-hero .w-full {
    width: 100%
}

.lco-hero .h-96 {
    height: 24rem
}

.lco-hero .object-cover {
    object-fit: cover
}

.lco-hero .relative {
    position: relative
}

.lco-hero .absolute {
    position: absolute
}

.lco-hero .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.lco-hero .rounded-2xl {
    border-radius: 1rem
}

.lco-hero .overflow-hidden {
    overflow: hidden
}

.lco-hero .animate-fade-in {
    animation: fade-in .6s ease-out
}

.lco-hero .hero {
    background: var(--hero-gradient);
    color: var(--primary-foreground);
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden
}

.lco-hero .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .3)
}

.lco-hero .hero-content {
    position: relative;
    z-index: 10
}

.lco-hero .price-box {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 1rem;
    padding: 1.5rem
}

.lco-hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.5rem;
    font-weight: 600;
    border-radius: .5rem;
    text-decoration: none;
    transition: all .3s;
    border: none;
    font-size: 1rem
}

.lco-hero .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem
}

.lco-hero .btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-brand)
}

.lco-hero .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px hsl(140 45% 65% / .4)
}

.lco-hero .btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary)
}

.lco-hero .btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground)
}

/* ================== Swiper ================== */
.slider-container {
    position: relative;
    max-width: 490px;
    margin: 0 auto;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: white;
    color: rgba(0, 0, 0, .5);
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    opacity: 1;
    border-radius: 50%;
    margin: 0 4px !important;
    cursor: pointer;
    transition: background-color .3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #717171;
}

/* ================== Mobile Ajustes ================== */

/* ==== EXTRACTED DESKTOP FROM 6clientes_felizes.html ==== */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    text-align: center;
}

h1 {
    margin-bottom: 40px;
    /* espaço maior entre título e vídeos */
}

.video-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.video {
    flex: 1;
    min-width: 250px;
    max-width: 25%;
    /* 4 vídeos por linha no desktop */
}

iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

/* MOBILE */

/* ==== EXTRACTED DESKTOP FROM 7botao_1_contratar_agora.html ==== */
/* Botão Contratar Agora */
.btn-contratar {
    display: inline-block;
    background: #28a745;
    /* botão sempre verde */
    color: #fff;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    /* cantos levemente arredondados */
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hover */
.btn-contratar:hover {
    background: #218838;
    /* verde mais escuro no hover */
    transform: scale(1.05);
}

/* ==== EXTRACTED DESKTOP FROM 8diferenciais.html ==== */
.lco-features {
    --background: #fff;
    --foreground: hsl(222 84% 5%);
    --card: #fff;
    --card-foreground: hsl(222 84% 5%);
    --accent: hsl(208 100% 97%);
    --accent-foreground: hsl(208 70% 42%);
    --muted-foreground: hsl(215 16% 47%);
    --border: hsl(214 32% 91%);
    --shadow-elegant: 0 4px 20px -8px hsl(208 70% 42% / .2);
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.lco-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.lco-features .text-center {
    text-align: center
}

.lco-features .mb-3 {
    margin-bottom: .75rem
}

.lco-features .mb-4 {
    margin-bottom: 1rem
}

.lco-features .mb-16 {
    margin-bottom: 4rem
}

.lco-features .text-lg {
    font-size: 1.125rem
}

.lco-features .text-xl {
    font-size: 1.25rem
}

.lco-features .text-3xl {
    font-size: 1.875rem
}



.lco-features .font-bold {
    font-weight: 700
}

.lco-features .leading-relaxed {
    line-height: 1.625
}

.lco-features .text-muted-foreground {
    color: var(--muted-foreground)
}

.lco-features .text-accent-foreground {
    color: var(--accent-foreground)
}

.lco-features .text-card-foreground {
    color: var(--card-foreground)
}

.lco-features .grid {
    display: grid
}

.lco-features .gap-8 {
    gap: 2rem
}

.lco-features .features {
    background: var(--accent);
    padding: 5rem 1rem
}

.lco-features .card {
    background: var(--card);
    color: var(--card-foreground);
    border: 1px solid var(--border);
    border-radius: .75rem;
    box-shadow: var(--shadow-elegant);
    transition: all .3s
}

.lco-features .card:hover {
    transform: translateY(-8px)
}

.lco-features .p-6 {
    padding: 1.5rem
}

.lco-features .feature-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-elegant)
}

.lco-features .w-full {
    width: 100%
}

.lco-features .h-full {
    height: 100%
}

.lco-features .object-cover {
    object-fit: cover
}

.lco-features .animate-fade-in {
    animation: fade-in .6s ease-out
}

/* ==== EXTRACTED DESKTOP FROM 9botao_2_saiba_mais.html ==== */
/* Botão Contratar Agora */
.btn-contratar {
    display: inline-block;
    background: #28a745;
    /* botão sempre verde */
    color: #fff;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    /* cantos levemente arredondados */
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 30px;
}

/* Hover */
.btn-contratar:hover {
    background: #218838;
    /* verde mais escuro no hover */
    transform: scale(1.05);
}

.DEPOIMENTO_02 {
    margin: 20px;
    background: #e8f3fc;
    padding: 50px;
}

.titulo_depoimento {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: rgb(32, 112, 182);
}

.texto_depoimento {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555555
}

@media (min-width: 768px) {

    /*DESKTOP*/
    .depoimento01 {
        margin: 10px;
        padding: 10px;
    }

    .depoimento02 {
        margin: 10px;
        padding: 10px;
    }
}

@media (max-width: 768px) {

    /*MOBILE*/
    .depoimento01 {
        position: relative;
        display: block;
        margin: 0 auto;
        width: 100%;
        padding: 10px;
        left: -10px;
    }

    .depoimento02 {
        position: relative;
        display: block;
        margin: 0 auto;
        width: 100%;
        padding: 10px;
        left: -10px;
    }
}

.servicos_de_limpeza_disponiveis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

@media (max-width: 768px) {

    /*MOBILE*/
    .servicos_de_limpeza_disponiveis {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 0 auto;
        padding: 10px;
    }
}

.cards_servicos_limpeza_faxina_DF {
    padding: 30px;
    margin: 10px;
    background: rgb(255, 255, 255);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, transform 0.2s;
}

.cards_servicos_limpeza_faxina_DF:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {

    /*MOBILE*/
    .cards_servicos_limpeza_faxina_DF {
        position: relative;
        display: block;
        margin: 0 auto;
        left: -33px;

    }
}





/* ==== EXTRACTED DESKTOP FROM 12nossos_servicos.html ==== */
.lco-servicos {
    --background: #ddfada;
    --foreground: hsl(222 84% 5%);
    --card: #fff;
    --card-foreground: hsl(222 84% 5%);
    --primary: hsl(140 45% 65%);
    --primary-foreground: #fff;
    --primary-dark: hsl(140 45% 55%);
    --muted-foreground: hsl(215 16% 47%);
    --border: hsl(214 32% 91%);
    --shadow-elegant: 0 4px 20px -8px hsl(208 70% 42% / .2);
    --shadow-brand: 0 10px 30px -10px hsl(140 45% 65% / .3);
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.lco-servicos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.lco-servicos .text-center {
    text-align: center
}

.lco-servicos .mb-2 {
    margin-bottom: .5rem
}

.lco-servicos .mb-4 {
    margin-bottom: 1rem
}

.lco-servicos .mb-6 {
    margin-bottom: 1.5rem
}

.lco-servicos .mb-8 {
    margin-bottom: 2rem
}

.lco-servicos .mb-16 {
    margin-bottom: 4rem
}

.lco-servicos .text-lg {
    font-size: 1.125rem
}

.lco-servicos .text-xl {
    font-size: 1.25rem
}

.lco-servicos .text-3xl {
    font-size: 1.875rem
}



.lco-servicos .font-semibold {
    font-weight: 600
}

.lco-servicos .font-bold {
    font-weight: 700
}

.lco-servicos .text-primary {
    color: var(--primary)
}

.lco-servicos .text-muted-foreground {
    color: var(--muted-foreground)
}

.lco-servicos .text-card-foreground {
    color: var(--card-foreground)
}

.lco-servicos .max-w-2xl {
    max-width: 42rem
}

.lco-servicos .mx-auto {
    margin-left: auto;
    margin-right: auto
}

.lco-servicos .grid {
    display: grid;
    margin: auto;
    justify-items: center;
}

.lco-servicos .gap-8 {
    gap: 2rem
}



.lco-servicos .flex {
    display: flex
}

.lco-servicos .items-center {
    align-items: center
}

.lco-servicos .space-y-3>*+* {
    margin-top: .75rem
}

.lco-servicos .space-x-3>*+* {
    margin-left: .75rem
}

.lco-servicos .w-full {
    width: 100%
}

.lco-servicos .services {
    background: var(--background);
    padding: 5rem 1rem
}

.lco-servicos .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: .75rem;
    box-shadow: var(--shadow-elegant);
    transition: all .3s
}

.lco-servicos .card:hover {
    transform: translateY(-8px)
}

.lco-servicos .p-8 {
    padding: 2rem
}

.lco-servicos .service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: rgba(140, 195, 170, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.lco-servicos .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.5rem;
    font-weight: 600;
    border-radius: .5rem;
    text-decoration: none;
    transition: all .3s;
    border: none;
    font-size: 1rem
}

.lco-servicos .btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-brand)
}

.lco-servicos .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px hsl(140 45% 65% / .4)
}



/* ==== EXTRACTED DESKTOP FROM 14depoimentos2.html ==== */
.lco-depoimentos {
    --background: #cce7ff;
    /* azul bem claro */
    --foreground: hsl(222 84% 5%);
    --muted-foreground: hsl(215 16% 47%);
}

.lco-depoimentos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.lco-depoimentos .text-center {
    text-align: center
}

.lco-depoimentos .text-3xl {
    font-size: 1.875rem
}

.lco-depoimentos .font-bold {
    font-weight: 700
}

.lco-depoimentos .text-muted-foreground {
    color: var(--muted-foreground)
}

.lco-depoimentos .mb-2 {
    margin-bottom: .5rem
}

.lco-depoimentos .mb-4 {
    margin-bottom: 1rem
}

.lco-depoimentos .mb-12 {
    margin-bottom: 3rem
}

.lco-depoimentos .grid {
    display: grid
}

.lco-depoimentos .gap-8 {
    gap: 2rem
}





.lco-depoimentos .depo {
    background: var(--background);
    padding: 4rem 1rem
}

.lco-depoimentos .card {
    border: none;
    padding: 0;
}

.lco-depoimentos .p-6 {
    padding: 1.5rem
}

.lco-depoimentos .font-semibold {
    font-weight: 600
}

/* Novo estilo para o subcontainer */
.lco-depoimentos .contain {
    background: #ffffff;
    /* fundo branco */
    border-radius: 1rem;
    /* bordas arredondadas */
    padding: 1.5rem;
    /* espaço interno */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* sombra leve */
}

/* ==== EXTRACTED DESKTOP FROM 15sobre_nos.html ==== */
.lco-sobre {
    --border: hsl(214 32% 91%);
    --background: #0a3d62;
    /* azul escuro */
}

.lco-sobre .sobre {
    background: var(--background);
    color: #ffffff;
    /* todo texto branco */
    padding: 4rem 1rem;
}

.lco-sobre .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.lco-sobre .grid {
    display: grid
}

.lco-sobre .gap-8 {
    gap: 2rem
}



.lco-sobre .items-center {
    align-items: center
}

.lco-sobre .text-3xl {
    font-size: 1.875rem;
    color: #ffffff
}

.lco-sobre .font-bold {
    font-weight: 700;
    color: #ffffff
}

.lco-sobre .mb-4 {
    margin-bottom: 1rem
}

.lco-sobre .card {
    border: 1px solid var(--border);
    border-radius: .75rem
}

.lco-sobre .overflow-hidden {
    overflow: hidden
}

.lco-sobre .w-full {
    width: 100%
}

.lco-sobre .h-full {
    height: 100%
}

.lco-sobre .object-cover {
    object-fit: cover
}

/* ==== EXTRACTED DESKTOP FROM 16entre_em_contato.html ==== */
.lco-contato {
    --background: #fff;
    --foreground: hsl(222 84% 5%);
    --primary: hsl(140 45% 65%);
    --primary-foreground: #fff;
    --accent: hsl(208 100% 97%);
    --accent-foreground: hsl(208 70% 42%);
    --muted-foreground: hsl(215 16% 47%);
    --card: #fff;
    --card-foreground: hsl(222 84% 5%);
    --border: hsl(214 32% 91%);
    --shadow-brand: 0 10px 30px -10px hsl(140 45% 65% / .3);
    position: relative;
}

.lco-contato .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 2;
}

.lco-contato .text-center {
    text-align: center
}

.lco-contato .text-2xl {
    font-size: 1.5rem
}

.lco-contato .text-3xl {
    font-size: 1.875rem
}

.lco-contato .font-bold {
    font-weight: 700
}

.lco-contato .font-semibold {
    font-weight: 600
}

.lco-contato .text-lg {
    font-size: 1.125rem
}

.lco-contato .text-sm {
    font-size: .875rem
}

.lco-contato .opacity-90 {
    opacity: .9
}

.lco-contato .opacity-80 {
    opacity: .8
}

.lco-contato .text-muted-foreground {
    color: var(--muted-foreground)
}

.lco-contato .text-accent-foreground {
    color: var(--accent-foreground)
}

.lco-contato .text-card-foreground {
    color: var(--card-foreground)
}

.lco-contato .text-primary {
    color: var(--primary)
}

.lco-contato .max-w-2xl {
    max-width: 42rem
}

.lco-contato .mx-auto {
    margin-left: auto;
    margin-right: auto
}

.lco-contato .mb-2 {
    margin-bottom: .5rem
}

.lco-contato .mb-4 {
    margin-bottom: 1rem
}

.lco-contato .mb-6 {
    margin-bottom: 1.5rem
}

.lco-contato .mb-8 {
    margin-bottom: 2rem
}

.lco-contato .mb-16 {
    margin-bottom: 4rem
}

.lco-contato .mt-8 {
    margin-top: 2rem
}

.lco-contato .contact {
    background: var(--accent);
    /* azul atual */
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

/* Adiciona a imagem de fundo com 30% de opacidade */
.lco-contato .contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://advocaciaborges.com.br/wp-content/uploads/2024/08/faxineira-1024x576.png') center/cover no-repeat;
    opacity: 0.10;
    /* 30% de opacidade */
    z-index: 1;
}

.lco-contato .contact-card {
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-brand);
    margin: 0 auto;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.lco-contato .feature-highlight {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    border-radius: .5rem;
    padding: 1rem;
}

.lco-contato .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.5rem;
    font-weight: 600;
    border-radius: .5rem;
    text-decoration: none;
    transition: all .3s
}

.lco-contato .btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary)
}

.lco-contato .btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground)
}

.lco-contato .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem
}

/* ==== EXTRACTED DESKTOP FROM 17rodape.html ==== */
.lco-footer {
    background: #13426b;
    --secondary-foreground: #fff;
    --border: hsl(214 32% 91%);
}

.lco-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.lco-footer .footer {
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 3rem 1rem
}

.lco-footer .grid {
    display: grid
}

.lco-footer .gap-8 {
    gap: 2rem
}

.lco-footer .mb-8 {
    margin-bottom: 2rem
}



.lco-footer .text-center {
    text-align: center
}

.lco-footer .text-xl {
    font-size: 1.25rem
}

.lco-footer .font-bold {
    font-weight: 700
}

.lco-footer .font-semibold {
    font-weight: 600
}

.lco-footer .mb-4 {
    margin-bottom: 1rem
}

.lco-footer .opacity-80 {
    opacity: .8
}

.lco-footer .opacity-60 {
    opacity: .6
}

.lco-footer .flex {
    display: flex
}

.lco-footer .items-center {
    align-items: center
}

.lco-footer .space-x-4>*+* {
    margin-left: 1rem
}

.lco-footer .space-x-2>*+* {
    margin-left: .5rem
}

.lco-footer .space-y-2>*+* {
    margin-top: .5rem
}

.lco-footer .space-y-3>*+* {
    margin-top: .75rem
}

.lco-footer .nav-link {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: opacity .3s
}

.lco-footer .nav-link:hover {
    opacity: .8
}

.lco-footer .border-t {
    border-top: 1px solid var(--border)
}

.lco-footer .pt-8 {
    padding-top: 2rem
}

/* Forçar a cor branca em números de celular detectados como links (ex: iOS) */
.lco-footer a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

/* Botão Flutuante WhatsApp */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

.whatsapp-label {
    background-color: var(--primary, #25d366);
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

@keyframes float-label {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ajuste mobile para o botão flutuante */
@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
        gap: 5px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-label {
        display: none;
    }
}

/* ============================== 
   MOBILE CSS (MEDIA QUERIES)
============================== */

/* ==== CONFIGURAÇÃO MOBILE DO MENU (CSS EXATO) ==== */
@media(max-width:768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--primary);
        padding: 0.5rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        gap: 0.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        text-align: center;
        line-height: normal;
        padding: 0.5rem 0;
        transform: translateX(-20px);
    }

    /* Mostrar botão WhatsApp no mobile dentro do menu */
    .mobile-btn {
        display: inline-flex;
        justify-content: center;
        margin: 0.5rem auto;
        transform: translateX(-20px);
    }

    .desktop-btn {
        display: none;
    }

    .hamburger {
        display: flex;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-main {
        height: 3rem;
        /* altura menor quando menu fechado */
    }

    .lco-header .header-container {
        justify-content: flex-start;
        position: static;
    }
}


/* ==== EXTRACTED MOBILE FROM 3imagem_com_logo.html ==== */
@media (max-width: 768px) {
    .meu-widget .img-desktop {
        display: none;
    }

    .meu-widget .img-mobile {
        display: block;
    }
}

@media (min-width: 769px) {
    .meu-widget .img-mobile {
        display: none;
    }

    .meu-widget .img-desktop {
        display: block;
    }
}

/* ==== EXTRACTED MOBILE FROM 5secao_principal.html ==== */
@media(min-width:768px) {
    .lco-hero .md\:flex-row {
        flex-direction: row
    }
}

@media (max-width: 768px) {

    /* Container centralizado */
    .lco-hero .flex-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* centraliza horizontalmente */
        gap: 0.5rem;
        /* espaçamento entre os botões */
    }

    /* Botão "Saiba Mais" */
    .lco-hero .btn-primary.btn-lg {
        width: 250px;
        /* largura em px */
        height: 45px;
        /* altura em px */
        font-size: 0.95rem;
        /* tamanho do texto */
        margin-left: 0;
        /* ajuste horizontal se necessário */
        margin-right: 0;
        /* ajuste horizontal se necessário */
    }

    /* Botão "Contratar Agora" */
    .lco-hero .btn-outline.btn-lg {
        width: 250px;
        /* largura em px */
        height: 45px;
        /* altura em px */
        font-size: 0.95rem;
        /* tamanho do texto */
        margin-left: 0;
        /* ajuste horizontal se necessário */
        margin-right: 0;
        /* ajuste horizontal se necessário */
    }
}

@media(min-width:1024px) {
    .lco-hero .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr)
    }

    .lco-hero .lg\:text-6xl {
        font-size: 3.75rem
    }

    .lco-hero .lg\:text-7xl {
        font-size: 4.5rem
    }
}

@media (max-width:768px) {

    /* Container centralizado e com padding interno */
    .lco-hero .container {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        margin: 0 auto;
    }

    /* Slider menor e centralizado */
    .slider-container {
        max-width: 300px;
        /* diminui o tamanho dos itens */
        margin: 0 auto;
    }

    /* Ajuste tamanho das setas */
    .nav-arrow {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    /* Ajuste de título e textos */
    .lco-hero h2 {
        font-size: 2rem;
        text-align: center;
    }

    .price-box .text-5xl {
        font-size: 2.5rem;
    }

    .price-box .text-2xl {
        font-size: 1.25rem;
    }

    .price-box .text-xl {
        font-size: 1rem;
    }

    .price-box p {
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ==== EXTRACTED MOBILE FROM 6clientes_felizes.html ==== */
@media (max-width: 768px) {
    .video-container {
        display: flex;
        flex-direction: column;
        /* vídeos em coluna */
        gap: 20px;
        /* espaço entre os vídeos */
        height: auto;
        /* altura ajustável */
    }

    .video {
        position: static;
        width: 100%;
        max-width: 100%;
        display: block;
        /* todos os vídeos aparecem */
    }
}

/* ==== EXTRACTED MOBILE FROM 8diferenciais.html ==== */
@media(min-width:1024px) {
    .lco-features .lg\:text-4xl {
        font-size: 2.25rem
    }
}

@media(min-width:768px) {
    .lco-features .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .lco-features .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr)
    }
}

/* ==== EXTRACTED MOBILE FROM 12nossos_servicos.html ==== */
@media(min-width:1024px) {
    .lco-servicos .lg\:text-4xl {
        font-size: 2.25rem
    }
}

@media(min-width:1024px) {
    .lco-servicos .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr)
    }
}

/* ==== EXTRACTED MOBILE FROM 14depoimentos2.html ==== */
@media(min-width:768px) {
    .lco-depoimentos .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .lco-depoimentos .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr)
    }
}

/* ==== EXTRACTED MOBILE FROM 15sobre_nos.html ==== */
@media(min-width:1024px) {
    .lco-sobre .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* ==== EXTRACTED MOBILE FROM 16entre_em_contato.html ==== */
@media(min-width:1024px) {
    .lco-contato .lg\:text-4xl {
        font-size: 2.25rem
    }
}

/* ==== EXTRACTED MOBILE FROM 17rodape.html ==== */
@media(min-width:768px) {
    .lco-footer .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:768px) {
    .logo-placeholder img {
        max-width: 120px;
        max-height: 45px;
        object-fit: contain;
        margin-left: 10px;
    }
}

/* ==== 7 - Área de Depoimentos Prova Social (Prints WhatsApp) ==== */
.whatsapp-prints-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 80px; /* Aumentado para segurança total */
}

.depo-img {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.depo-img:hover {
    transform: translateY(-10px);
}

.img-whatsapp-print {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

@media (min-width: 768px) {
    .whatsapp-prints-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .img-whatsapp-print {
        max-width: 95%; /* Quase largura total para evitar crop */
    }
}