/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #64626269;
    padding: 5px 20px;
    font-size: 14px;
}

.top-bar .contact-info {
    display: flex;
    margin-left: 20px;
    gap: 15px;
}

.top-bar .social-icons a {
    margin-right: 48px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fcfcfc; /* Cor inicial */
    padding: 20px 70px; /* Tamanho inicial */
    transition: all 0.3s ease-in-out;
    z-index: 1000 !important;
}

/* Estilos da navbar encolhida */
.navbar.shrink {
    background: #fffffff1; /* Cor ao rolar */
    padding: 10px 50px; /* Menor espaçamento */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar.shrink .logo img {
    width: 120px; /* Reduz o tamanho da logo */
    transition: width 0.3s ease-in-out;
}

/* Ajuste para os links do menu ao rolar */
.navbar.shrink .nav-links {
    color: rgb(0, 0, 0); /* Altera a cor dos links */
}

/* Ajuste para os links do menu ao rolar */
.navbar.shrink .nav-links li a:hover {
    color: rgb(255, 136, 0); /* Altera a cor dos links */
}

/* Ajuste para o botão 'Agende' */
.navbar.shrink .agendar {
    background: #b86b3a; /* Mantém a cor do botão */
    color: white;
}


.logo h1 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #b86b3a;
    font-size: 12px;
}

.nav-links {
    display: flex;
    list-style: none; /* Remove os pontos */
    align-items: center;
    gap: 60px;
}

.menu-close {
    display: none;
}

.nav-links li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgb(0, 0, 0);
    transition: 0.3s;
}

.nav-links li a:hover{
    color: rgb(255, 136, 0);
}

.nav-links .agendar {
    background: #b86b3a;
    padding: 20px 40px; /* Aumenta o padding para ficar mais proporcional */
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: large;
    text-transform: uppercase;
}

.nav-links .agendar:hover {
    background: black;
    padding: 20px 40px; /* Aumenta o padding para ficar mais proporcional */
    border-radius: 5px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}


.social-icons {
    display: flex;
}

/* Ajustar tamanho dos ícones sociais */
.social-icons img {
    width: 18px;  /* Ajuste conforme necessário */
    height: 18px;
}

/* Ajustar tamanho da logo */
.logo img {
    width: 170px; /* Ajuste conforme necessário */
    height: auto;
}


/* Mobile Menu */
.menu-toggle {
    display: none;
    align-items: center;
    cursor: pointer;
    color: black;
}

.menu-toggle .hamburger {
    width: 25px;
    height: 3px;
    background: black;
    margin-left: 10px;
    position: relative;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
    content: "";
    width: 25px;
    height: 3px;
    background: black;
    position: absolute;
    left: 0;
}

.menu-toggle .hamburger::before {
    top: -8px;
}

.menu-toggle .hamburger::after {
    top: 8px;
}


/* Remover qualquer espaço extra entre navbar e carrossel */
.navbar {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Evitar que o corpo da página tenha margens extras */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Seção do Carrossel */
/* Garantir que o carrossel comece imediatamente abaixo do menu */
.carousel {
    position: relative;
    width: 100vw;
    height: 80vh;
    overflow: hidden;
    margin-top: 180px; /* Remove margens extras */
    padding-top: 0;
}

/* Contêiner do Carrossel */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Imagens do Carrossel */
.slide {
    display: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.slide img {
    width: 100%;
    max-width: fit-content;
    height: 100%;
    object-fit: cover; /* Ajusta as imagens para preencher a área sem distorcer */
}

/* Esconde a versão mobile por padrão */
.mobile-image {
    display: none;
}

/* Botões de navegação */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 2;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Indicadores (pontos) */
.dots-container {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s ease-in-out;
    cursor: pointer;
}

.active, .dot:hover {
    background-color: #b86b3a;
}

/* Seção Quem Somos */
.quem-somos {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10%;
    background-color: #ffffff;
}

/* Layout responsivo */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

/* Estilização do vídeo */
.video-container {
    flex: 1;
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 315px;
    border-radius: 10px; /* Deixa as bordas arredondadas */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Adiciona leve sombra */
}

/* Estilização do conteúdo */
.content {
    flex: 1;
    padding-left: 50px;
}

.content h2 {
    font-size: 50px;
    margin-bottom: 40px;
    font-weight: bold;
    color: #000;
    font-family: 'Playfair Display', serif;
}

.content p {
    font-size: 18px;
    color: #333;
    line-height: 2.0;
    margin-bottom: 15px;
}

/* Botão Saiba Mais */
.saiba-mais {
    background-color: #b86b3a;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.saiba-mais:hover {
    background-color: #8d4f29;
}

/* Seção Agende pelo App */
.agende-app {
    background-color: #b86b3a; /* Cor de fundo do print */
    padding: 80px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.agende-app .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

/* Texto estilizado */
.text-content {
    flex: 1;
    color: white;
}

.text-content h2 {
    font-size: 50px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

/* Botões das lojas */
.store-buttons {
    margin-top: 20px;
}

.store-buttons a img {
    width: 160px;
    margin-right: 10px;
    transition: transform 0.3s;
}

.store-buttons a img:hover {
    transform: scale(1.05);
}

/* Mockup do celular */
.mockup {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.mockup img {
    width: 100%;
    max-width: 500px;
}

/* Seção Serviços */
.servicos {
    background-color: #0d0d0d;
    color: white;
    padding: 80px 10%;
    text-align: center;
    position: relative; /* Necessário para posicionar os botões corretamente */
}

/* Título da seção */
.servicos h2 {
    font-size: 42px;
    color: #b86b3a;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

/* Container do Carrossel */
/* Ajuste para que os botões de navegação fiquem sempre visíveis */
.carousel-container-serv {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carrossel */
.carousel-serv {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.carousel-serv::-webkit-scrollbar {
    display: none;
}

/* Cartões de Serviço */
.service-card {
    background: #111;
    border: 2px solid #b86b3a;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    min-width: 300px;
    max-width: 300px;
    white-space: normal;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Alinhamento das imagens dentro dos cards */
.service-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Estilização do texto */
.service-card h3 {
    font-size: 22px;
    color: #b86b3a;
    text-align: center;
}

.service-card p {
    font-size: 16px;
    color: #ddd;
    text-align: center;
    margin-bottom: 5px;
}


/* Garante que os botões fiquem dentro da área visível */
.prev_serv, .next_serv {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #b86b3a;
    color: #b86b3a;
    font-size: 24px;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

/* Ajuste de posicionamento dos botões */
.prev_serv {
    left: -50px; /* Mantém o botão visível */
}

.next_serv {
    right: -50px; /* Mantém o botão visível */
}

/* Efeito hover para melhorar a visibilidade */
.prev_serv:hover, .next_serv:hover {
    background: #b86b3a;
    color: white;
    border: 2px solid white;
}

/* Seção Portfólio */
.portfolio {
    background: #f0e8e2; /* Cor de fundo conforme o print */
    padding: 80px 10%;
    text-align: center;
}

.portfolio h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
}

/* Grid de Imagens */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    justify-content: center;
    align-items: center;
}

/* Estilização das imagens */
.portfolio-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.portfolio-grid img:hover {
    transform: scale(1.05);
}

/* Seção Clube */
.clube {
    background-color: #ffffff;
    padding: 80px 10%;
    text-align: center;
}

.clube h2 {
    font-size: 42px;
    color: #000;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.clube p {
    margin-bottom: 40px;
}

/* Botão Seja Membro */
.seja-membro {
    background-color: #9b5721;
    color: white;
    border: none;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.seja-membro:hover {
    background-color: #75421b;
}

/* Container dos benefícios */
.clube-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Cartões dos benefícios */
.clube-beneficio {
    background: #ffffff;
    border: 2px solid #b86b3a;
    padding: 30px 20px;
    width: 100%;
    max-width: 700px;
    position: relative;
    text-align: center;
    transition: transform 0.3s;
    margin-top: 40px;
}

.clube-beneficio:hover {
    transform: scale(1.02);
}

/* Ícone acima do título */
.clube-icon {
    width: 80px;
    height: 80px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto; /* Centraliza o ícone */
    border-radius: 8px;
}

/* Ícone dentro do quadrado preto */
.clube-icon img {
    width: 100px;
    height: 100px;
}

/* Títulos dos benefícios */
.clube-beneficio h3 {
    font-size: 22px;
    color: #b86b3a;
}   

/* Títulos dos benefícios */
.clube-beneficio p {
    margin-top: 10px;
}

/* Seção Clube Destaque */
.clube-destaque {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d0d0d; /* Cor do fundo conforme print */
    padding: 60px 10%;
    position: relative;
}

.clube-destaque .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.clube-texto {
    flex: 1;
    color: white;
    text-align: left;
}

.clube-texto h2 {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.botao-membro {
    background-color: #b86b3a;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.botao-membro:hover {
    background-color: #8d4f29;
}

.clube-imagem {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.clube-imagem img {
    width: 100%;
    max-width: 1000px;
    border-radius: 30px;
    opacity: 90%;
}


/* Seção Instagram */
.instagram-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    background-color: white; /* Mantém a seção limpa */
}

.instagram-container {
    position: relative;
    width: 80%;
    max-width: 700px;
}

.instagram-box {
    background-color: #9b5721; /* Cor exata do print */
    height: 180px;
    position: relative;
}

.instagram-box a {
    text-decoration: none;
}

.instagram-overlay {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background: white;
    border: 2px solid black;
}

.instagram-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.instagram-icon {
    width: 80px;
    height: 80px;
}

.instagram-handle {
    margin-top: 8px;
    font-size: 32px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    text-transform: lowercase;
}

/* Rodapé */
.footer-section {
    background-color: #0d0d0de5;
    padding: 50px 10%;
    color: white;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-logo img {
    width: 150px;
    border-radius: 90px;
}

.footer-info h3 {
    color: #b86b3a;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 5px;
}

.footer-contact p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #b86b3a;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 12px;
    color: #aaa;
}

.footer-bottom img {
    width: 30px;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo img {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


/* Responsividade */
/* Ajuste para menu responsivo */
@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar{
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100vh; /* Garante que o menu ocupa toda a tela */
        background: #0d0d0d;
        text-align: left;
        padding-top: 20px;
        transition: left 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto; /* Permite rolagem dentro do menu */
        scrollbar-width: thin; /* Ajusta a largura da barra de rolagem */
        scrollbar-color: #b86b3a transparent; /* Cor da barra de rolagem */
    }

    .nav-links .agendar {
        text-align: center;
    }

    /* Personalizando a barra de rolagem para navegadores baseados no WebKit */
    .nav-links::-webkit-scrollbar {
        width: 5px; /* Largura da barra de rolagem */
    }

    .nav-links::-webkit-scrollbar-thumb {
        background-color: #b86b3a; /* Cor da barra de rolagem */
        border-radius: 5px;
    }

    .nav-links::-webkit-scrollbar-track {
        background: transparent; /* Fundo da barra de rolagem */
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li a {
        font-size: 18px;
        color: white;
        text-decoration: none;
        display: block;
    }

    /* Botão Fechar */
    .menu-close {
        display: flex;
        justify-content: flex-end;
        padding: 15px;
        font-size: 18px;
        color: white;
        cursor: pointer;
    }

    /* Ícones sociais no menu */
    .nav-links .social-icons {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 15px;
    }

    .nav-links .social-icons img {
        width: 24px;
        height: 24px;
    }

    /* Estilização do botão do menu hambúrguer */
    .menu-toggle {
        display: flex;
        align-items: center;
        cursor: pointer;
        color: rgb(0, 0, 0);
        font-size: 16px;
    }

    .menu-toggle .hamburger {
        width: 25px;
        height: 3px;
        background: rgb(0, 0, 0);
        position: relative;
        margin-left: 10px;
    }

    .menu-toggle .hamburger::before,
    .menu-toggle .hamburger::after {
        content: "";
        width: 25px;
        height: 3px;
        background: rgb(0, 0, 0);
        position: absolute;
        left: 0;
    }

    .menu-toggle .hamburger::before {
        top: -8px;
    }

    .menu-toggle .hamburger::after {
        top: 8px;
    }

    .desktop-image {
        display: none;
    }
    .mobile-image {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .quem-somos .container {
        flex-direction: column;
        text-align: center;
    }

    .video-container {
        width: 100%;
        margin-right: 10%;
        margin-bottom: 20px;
    }

    .content {
        padding-left: 0;
    }

    .content h2 {
        font-size: 32px;
    }

    .content p {
        font-size: 16px;
    }

    .saiba-mais {
        font-size: 16px;
        padding: 10px 20px;
    }

    .agende-app .container {
        flex-direction: column;
        text-align: center;
    }

    .text-content h2 {
        font-size: 40px;
    }

    .mockup {
        justify-content: center;
        margin-top: 30px;
    }

    .mockup img {
        max-width: 350px;
    }

    .store-buttons a img {
        width: 140px;
    }

    .carousel-serv {
        overflow-x: scroll;
        justify-content: flex-start;
    }

    .service-card {
        min-width: 90%;
    }

    /* Esconde os botões de navegação no mobile */
    .prev_serv, .next_serv {
        display: none;
    }
    
    
    /* muda formato do grid para telas menores */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* muda formato do club para telas menores */
    .clube h2 {
        font-size: 32px;
    }

    .clube-card {
        flex-direction: column;
        text-align: center;
    }

    .clube-card .icon {
        margin-bottom: 10px;
    }

    .clube-card .text {
        padding-left: 0;
    }

    /* muda formato do clube destaque para telas menores */
    .clube-destaque .container {
        flex-direction: column;
        text-align: center;
    }

    .clube-imagem {
        justify-content: center;
        margin-top: 30px;
    }

    .clube-texto h2 {
        font-size: 36px;
    }

    .botao-membro {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .clube-imagem img {
        max-width: 350px;
    }
    
    /* muda formato do instagram-section para telas menores */
    .instagram-container {
        width: 90%;
    }

    .instagram-box {
        height: 150px;
    }
    
    .instagram-icon {
        width: 35px;
        height: 35px;
    }
    
    .instagram-handle {
        font-size: 14px;
    }
    
    /* muda formato do footer para telas menores */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo img {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
