/* =========================================
   1. RESET E FUNDO GLOBAL (CINZA ESCURO)
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, sans-serif;
}

body {
    /* Fundo Cinza Escuro sólido no lugar da imagem Versace */
    background-color: #363636;
    margin: 0;
}


/* =========================================
   2. NAVBAR (CABEÇALHO MAIS LARGO)
========================================= */

.navbar {
    background-color: #000 !important;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 50px;
    /* Mais grossa e imponente */
    position: relative;
    z-index: 10;
}


/* Centraliza a Logo Absolutamente */

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-height: 250px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: lighten;
}


/* Ícones Redes Sociais */

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: lighten;
    transition: transform 0.3s ease;
}

.nav-links a:hover img {
    transform: scale(1.1);
}


/* =========================================
   3. CARROSSEL (SWIPER)
========================================= */

.swiper {
    width: 100%;
    height: auto;
    padding: 50px 0;
    background-color: transparent !important;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.card {
    border-radius: 15px;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.10);
}


/* Setas e Paginação */

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background-color: transparent;
    border: 2px solid white;
    opacity: 1;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background-color: white;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    transform: scale(0.7);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}


/* =========================================
   4. SERVIÇOS LUXO (CARDS)
========================================= */

.servicos {
    padding: 80px 20px;
    background-color: transparent !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicos-header {
    text-align: center;
    margin-bottom: 40px;
}

.servicos-header h2 {
    font-family: "Times New Roman", Times, serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.servicos-header p {
    color: #ddd;
}

.servicos-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

.servico-card {
    background-color: #f4f1ea;
    border-radius: 25px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.servico-card:hover {
    transform: translateY(-15px);
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px 20px;
    text-align: center;
}

.card-content h3 {
    font-family: "Arial", sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-whatsapp-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #48b471;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    gap: 10px;
    transition: 0.3s;
}

.btn-whatsapp-card:hover {
    background-color: #368a56;
    transform: scale(1.05);
}


/* =========================================
   5. DIFERENCIAIS
========================================= */

.diferenciais {
    padding: 80px 20px;
    background-color: transparent !important;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.titulo-serif {
    font-family: "Times New Roman", Times, serif;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    letter-spacing: 1px;
    color: #fff;
}

.diferenciais-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.diferencial-item {
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
}

.diferencial-item i {
    font-size: 2.5rem;
    color: #d4af37;
    min-width: 60px;
    text-align: center;
}

.diferencial-txt h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 800;
    color: #fff;
}

.diferencial-txt p {
    color: #ddd;
    line-height: 1.4;
}


/* =========================================
   6. RODAPÉ (FOOTER MAIS FINO)
========================================= */

.footer-final {
    background-color: #000 !important;
    color: white;
    padding: 15px 20px;
    /* Mais fino e discreto */
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-logo {
    max-height: 120px;
    /* Logo um pouco menor */
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.footer-social {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    color: #25d366;
}


/* =========================================
   7. RESPONSIVIDADE (CELULARES E TABLETS)
========================================= */

@media (max-width: 768px) {
    /* ==========================================
       1. CONTROLE DA NAVBAR (CABEÇALHO NO MOBILE)
       ========================================== */
    .navbar {
        flex-direction: row;
        /* Coloca a logo e os ícones lado a lado */
        justify-content: space-between;
        /* Joga a logo para a esquerda e ícones para a direita */
        align-items: center;
        padding: 1px 20px;
        /* Mantém o fundo preto fininho */
    }
    .logo {
        position: static;
        /* Tira a logo do meio da tela para não encavalar nas redes sociais */
        transform: none;
    }
    /* Tamanho INDIVIDUAL da Logo no Cabeçalho Mobile */
    .logo img {
        height: 120px;
        /* Altura ajustada para caber bem na lateral */
        width: auto;
        transform: scale(1);
    }
    /* Tamanho e espaço dos ícones (Insta e Whats) */
    .nav-links {
        gap: 15px;
        /* Espaço entre o Insta e o Whats */
    }
    .nav-links a img {
        height: 19px;
        /* Tamanho dos ícones para acompanhar a logo lateral */
    }
    /* ==========================================
       2. CONTROLE DO FOOTER (RODAPÉ)
       ========================================== */
    .footer-final {
        /* O PRIMEIRO NÚMERO (10px) controla a grossura do fundo preto do rodapé */
        padding: 10px 20px;
    }
    /* Tamanho INDIVIDUAL da Logo no Rodapé */
    .footer-logo {
        height: 95px;
        /* Aumente ou diminua para mudar APENAS a logo do rodapé */
        width: auto;
        margin-bottom: 5px;
    }
    /* ==========================================
       3. RESTANTE DO SITE (CARROSSEL, TEXTOS)
       ========================================== */
    .swiper {
        padding: 20px 0;
    }
    .card {
        height: 220px;
        border-radius: 10px;
    }
    .servicos-header h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .servicos-header p {
        font-size: 0.9rem;
    }
    .servicos-container {
        gap: 20px;
    }
    .servico-card {
        width: 100%;
        max-width: 320px;
    }
    .titulo-serif {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
}


/* Ajustes para Celulares menores (até 600px) */

@media (max-width: 600px) {
    .diferencial-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .diferencial-item i {
        font-size: 2rem;
    }
    .diferencial-txt h3 {
        font-size: 1.1rem;
    }
}