/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    padding-top: 180px;
}

/* Navbar */
.logo{
    color: black;
    border-radius: 50%;
    display: flex;
    width: 165px;
    height: 140px;
    margin-left: 0;
    margin: 15px;
    background: black;
    
}
.nav-topo {
    background: rgba(0, 0, 0, 0.2); /* transparente inicial */
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, box-shadow 0.3s ease; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed !important; 
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 150px;
    
}
.nav-topo nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-topo nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-topo nav ul li a:hover {
    color: orange;
}

.btn-menu-agendar  {
    background: orange;
    color: black;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;

}

.btn-agendar:hover {
    background: gold;
}

.btn-agendar:focus{
    outline-style: none;
}
/* Hero */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #222, #000);
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.btn-destaque {
    background: orange;
    color: black;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-destaque:hover {
    background: gold;
}

/* Serviços */
.servicos {
    padding: 50px 20px;
    text-align: center;
}

.grid-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
    
}

.card {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid orange;
}

/* Galeria */
.galeria {
    padding: 50px 20px;
    text-align: center;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.foto {
    border-radius: 8px;
    border: 2px solid orange;
    object-fit: cover;
    width: 100%;
    height: auto;
    display: block;
}


.galeria img{
    width: 100%;
    height: auto;
}

/* Depoimentos */
.grid-depoimentos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card-depoimento {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid orange;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-depoimento h3 {
    margin: 10px 0 5px;
    color: orange;
}

.card-depoimento p {
    font-size: 0.95em;
    color: #ddd;
}

.foto-cliente {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid orange;
}


/* Contato */
.contato {
    padding: 50px 20px;
    text-align: center;
}

.contato form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 20px auto;
}

.contato input, .contato textarea, .contato button {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.contato input, .contato textarea {
    background: #222;
    color: white;
}

.contato button {
    background: orange;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contato button:hover {
    background: gold;
}

/* Rodapé */
.rodape {
    background: #111;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}
.ebook {
    padding: 60px 20px;
    text-align: center;
    background: #111;
    border-top: 2px solid orange;
    border-bottom: 2px solid orange;
}

.ebook-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
    flex-wrap: wrap;
}

.ebook-img {
    width: 300px;
    border-radius: 10px;
    border: 3px solid orange;
}

.ebook-info {
    max-width: 450px;
    text-align: left;
}

.ebook-info h2 {
    color: orange;
    font-size: 2em;
    margin-bottom: 15px;
}

.ebook-lista {
    margin: 20px 0;
    line-height: 1.6;
}

.preco {
    font-size: 2.2em;
    margin: 20px 0;
    color: gold;
}

.btn-comprar {
    background: orange;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 8px;
    color: black;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2em;
}

.btn-comprar:hover {
    background: gold;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: gold;
    cursor: pointer;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block; /* aparece só no celular */
    }

    .nav-topo {
        flex-direction: row;
        height: 70px;
        padding: 10px 15px;
    }

    .logo {
        width: 145px;
        height: auto;
        margin-left: 145px;
        margin-top: 125px;
        
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        background: black;
        width: 100%;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    nav.active {
        display: flex;
        background: linear-gradient(rgb(34, 34, 34), black);
        width: 300px;
        left: 190px;
        border-radius: 10%;
    }

    .btn-agendar {
        display: none;
    }
    /* QUANDO SCROLLAR, ESCONDER LOGO */
    .logo {
    transition: opacity 0.3s ease, transform 0.3s ease;
}


   .btn-menu-agendar  {
    background: orange;
    color: black;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    }
    
}
.logo.hide {
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s ease;
}

.nav-topo {
    transition: transform 0.35s ease, opacity 0.35s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* Header escondido */
.nav-hide {
    transform: translateY(-100%);
    opacity: 0;
}

#mapa {
   margin: 50px 0;
   text-align: center;
}

#mapa h2 {
   color: gold;
   margin-bottom: 15px;
   font-size: 24px;
}

#mapa iframe {
   max-width: 90%;
   border-radius: 15px;
   box-shadow: 0 0 10px #000;
}

.btn-galeria {
    display: inline-block;
    margin-top: 20px;
    background: orange;
    color: black;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

/* Galeria Página */
.galeria {
    padding: 50px 20px;
    text-align: center;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 15px;
    margin-top: 30px;
    margin-left: 100px;
}

.foto {
    border-radius: 8px;
    border: 2px solid orange;
    object-fit: cover;
    width: 100%;
    height: auto;
    display: block;
}


.galeria img{
    width: 450px;
    height: 450px;
}


.galeria-page {
    padding: 120px 20px 50px;
    text-align: center;
}

.galeria-page h1 {
    color: gold;
    margin-bottom: 40px;
}

.galeria-page h2 {
    color: orange;
    margin: 30px 0 20px;
}

.grid-galeria img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.grid-galeria img:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {

    .grid-galeria {
        grid-template-columns: 1fr; /* UMA FOTO POR LINHA */
        margin-left: 0;
        
    }

    .grid-galeria img {
        width: 100%;
        height: auto;
        object-fit: contain; /* NÃO CORTA */
        max-height: none;
    }

    
}

/* VÍDEOS */
.grid-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-items: center;
}

.grid-videos video {
    
    max-width: 550px;     /* largura do vídeo */
    height: 550px;
    aspect-ratio: 9 / 16;  /* FORÇA 9:16 */
    object-fit: cover;
    border-radius: 12px;
    background: #000;
    border-radius: 8px;
    border: 2px solid orange;
}

@media (max-width: 768px) {
    .grid-videos video {
        max-width: 360px;
    }
}

/* MODAL GALERIA */
.modal-galeria {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-galeria.active {
    display: flex;
}

/* IMAGEM */
.modal-img {
    max-width: 90%;
    max-height: 90%;
    display: none;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255,165,0,0.4);
}


/* VÍDEO 9:16 */
.modal-video {
    width: 320px;
    max-width: 90%;
    aspect-ratio: 9 / 16;
    display: none;
    border-radius: 12px;
    background: black;
    box-shadow: 0 0 25px rgba(255,165,0,0.4);
}

/* BOTÃO FECHAR */
.modal-fechar {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.video-thumb {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 9 / 16; /* TRAVA proporção */
    overflow: hidden;
    border-radius: 12px;
    background: black;
}

/* VÍDEO */
.video-thumb video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* preenche corretamente */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ÍCONE PLAY CENTRALIZADO PERFEITO */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    background: rgba(0,0,0,0.6);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}
.video-thumb:hover .play-icon {
    background: rgba(255,165,0,0.8);
}
/* HOVER EFECTO ZOOM */
.video-thumb:hover video {
    transform: translate(-50%, -50%) scale(1.1);
    transition: transform 0.3s ease;
}
