* {
    font-family: "Poppins", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
}

.hamburger {
    display: none;
}
.close-btn{
    display: none;
}


body {
    background-color: #ebebdc;
}

/* side bar wts */
.whatsapp-sidebar {
    position: fixed;
    right: 20px;
    /* Distância da borda direita */
    bottom: 20px;
    /* Distância do rodapé */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    /* Cor oficial do WhatsApp */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-sidebar:hover {
    transform: scale(1.1);
}

/* /side bar wts */

.interface {
    max-width: 1200px;
    margin: 0 auto;
}

/* fazendo a rolagem do menu */
html {
    scroll-behavior: smooth;
}


.hero-site {
    height: 98vh;
    background-image: url(../imagens/logo2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;

}

.hero-site .interface {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-site .txt-hero h1 {
    font-size: 2.5em;
    line-height: 70px;
    font-weight: 800;
}



.hero-site .txt-hero p {
    font-size: 20px;
    font-weight: 300;
}

.hero-site button {
    width: 220px;
    height: 60px;
}

header .btn-contato button,
.hero-site button {
    font-size: 18px;
    background-color: #ebebdc;
    border: 1px solid #b1b0b094;
    cursor: pointer;
    color: #0b0b0b;
    transition: .5s;
}

/* Estilo para os ícones dentro do botão de contato */
.contact-box button i {
    font-size: 0.8rem;
}

.btn-contato {
    position: relative;
}

button {
    font-size: 18px;
    background-color: transparent;
    border: 1px solid #7c7c7c;
    cursor: pointer;
    transition: 0.5s;
    padding: 10px 20px;
}


header .btn-contato button:hover,
.hero-site button:hover {
    background-color: #333333;
    color: #000;
}

/* Caixa de contato escondida inicialmente */
.contact-box {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 220px;
    z-index: 999;
}

/* Estilo dos botões dentro da caixa de contato */
.contact-box button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0px;
    border: none;
    background-color: transparent;
    color: #000000;
    text-align: left;
    font-size: 0.9rem;
    padding: 8px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover para botões */
.contact-box button:hover {

    color: #fff;
}


.contact-box a {
    text-decoration: none;
    width: 100%;
}


/* Estilo do header */
header {
    width: 100%;
    padding: 40px 0;
    position: fixed;
    top: 0;
    left: 0;
}

header .interface {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-desktop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    /* Aumenta a altura do menu */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    z-index: 1000;
    border-bottom: 1px solid #a2a2a2;
    padding: 0 20px;
    /* Espaçamento lateral para os itens do menu */
    box-sizing: border-box;
}

.logo img {
    width: 200px;
    height: 85px;
    /* Ajustar o tamanho da logo conforme necessário */
}

.menu-desktop ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-desktop ul li {
    margin: 0 15px;
}

.menu-desktop ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.menu-desktop ul li a:hover {
    color: #7c7c7c;
    transition: 0.5s;
}

header {
    z-index: 10;
}

section {
    scroll-margin-top: 80px;
}

header .menu-desktop nav ul li a:hover {
    transform: scale(1.1);
    font-size: 1.4rem;
}

/* Estilo do Hero */

.hero-site {
    height: 98vh;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    color: #fff;
    transition: opacity 2s ease-in-out;
}


header .menu-desktop nav ul {
    list-style-type: none;
    border: 2px solid rgba(49, 47, 47, 0.137);
    background-color: rgba(37, 36, 36, 0.496);
    padding: 10px;
    border-radius: 5px;
}

.hero-site .interface {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-site .txt-hero h1 {
    font-size: 2.5em;
    line-height: 70px;
    font-weight: 800;
}

.hero-site .txt-hero span {
    display: block;
    font-weight: 800;
    color: #000;
    margin: 0px;
}

.hero-site .txt-hero p {
    font-size: 20px;
    font-weight: 300;
}

.hero-site button {
    width: 220px;
    height: 60px;
}


/* Estilo para a seção sobre o criador */

.sobre-criador {
    background-color: #000;
}

.sobre-criador .interface {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sobre-criador .foto-criador-container,
.sobre-criador .txt-sobre-container {
    width: 50%;
    padding: 20px;
}

.sobre-criador .foto-criador img {
    background-color: #000;
    max-width: 100%;
    border-radius: 10px;
}

.sobre-criador .txt-sobre p {
    font-size: 1.2em;
    line-height: 1.5;
    color: #fff;
    text-align: justify;
}

.sobre-criador .foto-criador {
    flex: 1;
    padding: 10px;
  
}

.sobre-criador .foto-criador img {
  
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}




/* sessão video */
.video-section {
    padding: 60px 0;
    background-color: #ebebdc;
    text-align: justify;
}


.video-box {
    background-color: #000;
    width: 573px;
    margin-top: 20px;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 5px;
    margin-right: auto;
}

.video {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #000000;
    /* borda preta no vídeo */
}

.video-destaque {
    color: #5d53a8;

    transition: color 0.3s ease;
}

.video-destaque h2,
p a:hover {
    color: #3d3d3d;
}


.text-content h2,
p {
    color: #000;
}


/* fim video */

/* sessão serviços */

.servicos {
    padding: 50px 0;
    text-align: center;
    background-color: #ebebdc;
}

.servicos h2 {
    color: #000;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: bold;
}

.cards-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: #000;
    overflow: hidden;
    width: 23%;
    height: 400px;
    position: relative;
    text-align: center;
    border: 2px solid #000;
    /* borda preta */
}

.card img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-legend {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(180, 179, 179, 0.7);
    color: #fff;
    font-size: 1em;
    font-weight: 500;
}



/* Fim serviços */


/* agenda */

.agenda {
    padding: 50px 0;
    text-align: center;
    background-color: #000;
}

.agenda h2 {
    color: #ffff;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: bold;
}

.cards-container {
    display: flex;
    justify-content: center;
    /* deixa centralizado */
    align-items: stretch;
    gap: 10px;
    /* aqui controla o espaço entre eles (pode usar 5px ou até 0px) */
    flex-wrap: nowrap;
    /* mantém na mesma linha */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: #ffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 28%;
    /* mantém o mesmo tamanho que você já usava */
    height: 400px;
    /* altura fixa */
    position: relative;
    text-align: center;
    border: 4px solid transparent;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* fim agenda */

/* galeria */
  .galeria-slides {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background: #111; /* opcional */
  }

  .galeria-slides .carousel {
    width: 90%;
    max-width: 900px;
    height: 60vh;
    max-height: 500px;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  }

  .galeria-slides .carousel-track {
    display: flex;
    transition: transform 1s ease;
    width: 100%;
    height: 100%;
  }

  .galeria-slides .slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
  }

  .galeria-slides .slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* garante que a imagem não corte */
    display: block;
  }


  /* Botões de navegação */
  .galeria-slides .controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
  }

  .galeria-slides .btn {
    background: rgba(110, 108, 108, 0.6);
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: all;
    transition: background 0.3s;
  }

  .galeria-slides .btn:hover {
    background: rgba(255, 255, 255, 0.9);
  }



/* /galeria */

/* ESTILO DO RODAPÉ */
footer {
    color: #000;
    padding: 40px 4%;
    box-shadow: 0 0 40px 10px #ffffff14;
}

footer .flex {
    justify-content: space-between;
}

footer .line-footer {
    padding: 20px 0;
    padding-bottom: 0;
    margin-bottom: 0;

}

.borda {
    border-top: 2px solid #000;
}

footer .line-footer p i {
    color: black;
    font-size: 22px;
}

.interface .line-footer p,
a,
i {
    color: #000;
}

footer .line-footer p a {
    color: #000;
}

/* responsivo */
@media (max-width: 1024px) {
    .hero-site {
        background-size: 170%;
    }
  .galeria-slides .carousel {
      height: 40vh;
    }
     .galeria-slides .carousel {
      height: 50vh;
    }
    /* Exibe hamburguer no mobile */
        .hamburger {
            display: block;
            font-size: 28px;
            cursor: pointer;
            padding: 10px;
            color: #fff;
            position: absolute;
            left: 15px;
            top: 20px;
            z-index: 1001;
        }
        .close-btn{
            color: #000;
        }
    

        /* Esconde logo no mobile */
        .logo {
            display: none;
        }

        /* Menu lateral escondido por padrão */
        .menu-desktop ul {
            position: fixed;
            top: 0;
            left: -250px;
            /* escondido fora da tela */
            width: 220px;
            height: 100%;
            background: #f9f9f9;
            flex-direction: column;
            padding: 60px 20px;
            gap: 20px;
            list-style: none;
            margin: 0;
            transition: left 0.3s ease;
            z-index: 1000;
        }

        /* Links do menu */
        .menu-desktop ul li a {
            text-decoration: none;
            font-size: 18px;
            color: #000;
            display: block;
        }

        .menu-desktop ul li a:hover{
           color: #000000a2;
            width: 300px;
            height: 100%;
        }

        /* Menu visível */
        .menu-desktop ul.active {
            left: 0;
        }

        /* Botão de contato alinhado à direita */
        .btn-contato {
            position: absolute;
            right: 15px;
            top: 20px;
        }



        body {
            padding-top: 0px 15px;
        }

        /* Configuração para a seção de serviços */
        .servicos h2 {
            font-size: 29px;
        }

        .servicos .box {
            width: 100%;
            max-width: 100px;
            margin: 0 auto;
            text-align: center;
        }

        /* Ajuste para a seção "sobre" */
        .sobre-criador .interface {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .sobre-criador .foto-criador-container,
        .sobre-criador .txt-sobre-container {
            width: 100%;
            padding: 0;
        }

        .sobre-criador .foto-criador img {
            width: 100%;
            max-width: 300px;
            height: auto;
            margin-left: 42px;
            margin-bottom: 20px;
        }


        .sobre-criador .txt-sobre {
            text-align: justify;
            padding-left: 15px;
            padding-right: 15px;
            padding-bottom: 50px;
        }




        /* Configuração dos cards */
        .servicos {
            padding: 0 7.6px;
        }

        .cards-container {
            flex-direction: column;
            align-items: center;
            width: 100%;
            padding: 0 15px;

        }

        .card {
            width: 100%;
            max-width: 300px;
            margin: 10px 0;
            overflow: hidden;
        }

        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Ajustes no vídeo para telas pequenas */
        .video-section {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .video-box {
            width: 100%;
            max-width: 1200px;
            /* Aumenta a largura máxima do vídeo */
            padding: 0 15px;
        }



 }

/* Tablets */
@media (max-width: 1024px) {
  .agenda .card {
    width: 70%;
  }
}

/* Celulares grandes */
@media (max-width: 768px) {
  .agenda .card {
    width: 70%;
  }
}

/* Celulares pequenos */
@media (max-width: 480px) {
.agenda  .card {
    width: 95%;
  }
}




