<style>
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background:#050000;
    color:#fff;
    overflow-x:hidden;
}

/* FUNDO ANIMADO */
body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at center, rgba(150,0,0,.35), transparent 35%),
        linear-gradient(180deg,#000,#160000,#000);
    z-index:-3;
}

body::after{
    content:"";
    position:fixed;
    inset:0;
    background-image:
        radial-gradient(#ff0000 1px, transparent 1px);
    background-size:45px 45px;
    opacity:.18;
    animation:particles 18s linear infinite;
    z-index:-2;
}

@keyframes particles{
    from{background-position:0 0;}
    to{background-position:300px 600px;}
}

/* FUMAÇA */
.smoke{
    position:fixed;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    filter:blur(60px);
    animation:smokeMove 12s ease-in-out infinite;
    z-index:-1;
}

.smoke1{top:10%;left:-100px;}
.smoke2{bottom:10%;right:-100px;animation-delay:4s;}

@keyframes smokeMove{
    50%{transform:translateY(-80px) translateX(80px);}
}

/* MENU */
header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,0,0,.3);
}

.nav{
    max-width:1200px;
    margin:auto;
    padding:18px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo-img{

    width:110px;
    height:110px;

    object-fit:contain;

    filter:
        drop-shadow(0 0 10px rgba(255,0,0,.5))
        drop-shadow(0 0 25px rgba(255,0,0,.3));

    transition:.4s;

}

.logo-img:hover{

    transform:rotate(-8deg) scale(1.08);

}

.logo-text{

    display:flex;

    flex-direction:column;

    line-height:1.1;

}

.logo-text span{

    color:#d4af37;

    font-size:13px;

    letter-spacing:3px;

}

.logo-text strong{

    color:#fff;

    font-size:22px;

    font-weight:700;

}
.logo-symbol{
    font-size:34px;
    color:#c1121f;
    animation:spin 25s linear infinite;
    text-shadow:0 0 20px red;
}

@keyframes spin{
    from{transform:rotate(0);}
    to{transform:rotate(360deg);}
}

.menu{
    display:flex;
    gap:24px;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.menu a:hover{
    color:#ff2020;
}

.btn{
    display:inline-block;
    background:linear-gradient(135deg,#8b0000,#d90429);
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 0 25px rgba(255,0,0,.45);
    transition:.3s;
}

.btn:hover{
    transform:scale(1.05);
}

/* HERO */
.hero{
    min-height:100vh;
    padding:150px 20px 80px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;

    background:
        linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
        url("../assets/banner-fundo.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{
    max-width:900px;
}

.pentagrama{
    font-size:130px;
    color:#b00000;
    animation:spin 30s linear infinite;
    text-shadow:0 0 20px red,0 0 60px red;
}

.hero h1{
    font-family:Georgia,serif;
    font-size:clamp(2.8rem,7vw,6rem);
    line-height:1.1;
    margin:20px 0;
}

.hero h1 span{
    color:#d4af37;
    font-size:clamp(1.5rem,4vw,3rem);
    display:block;
}

.hero p{
    max-width:720px;
    margin:0 auto 30px;
    font-size:1.2rem;
    color:#ddd;
}

/* VELAS */
.candle{
    position:absolute;
    bottom:40px;
    width:45px;
    height:120px;
    background:linear-gradient(#300,#000);
    border-radius:10px;
    box-shadow:0 0 30px red;
}

.candle.left{left:8%;}
.candle.right{right:8%;}

.flame{
    position:absolute;
    top:-35px;
    left:50%;
    transform:translateX(-50%);
    width:24px;
    height:40px;
    background:orange;
    border-radius:50% 50% 50% 50%;
    box-shadow:0 0 30px orange,0 0 60px red;
    animation:flame .25s infinite alternate;
}

@keyframes flame{
    from{transform:translateX(-50%) scale(1);}
    to{transform:translateX(-50%) scale(1.15) rotate(4deg);}
}

/* SEÇÕES */
section{
    padding:90px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.title{
    text-align:center;
    font-family:Georgia,serif;
    font-size:clamp(2rem,4vw,3rem);
    margin-bottom:45px;
    color:#fff;
}

.title span{
    color:#c1121f;
}

/* SOBRE */
.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.about p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:18px;
}

.about-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,0,0,.3);
    padding:25px;
    border-radius:18px;
}

.about-card h3{
    color:#d4af37;
    margin-bottom:8px;
}

.photo-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.photo{
    height:170px;
    border-radius:15px;
    background:linear-gradient(135deg,#330000,#000);
    border:1px solid rgba(255,0,0,.4);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#aaa;
}

/* CARDS */
.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,0,0,.4);
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(255,0,0,.4);
}

.card-img{
    height:170px;
    background:linear-gradient(135deg,#400,#111);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:60px;
}

.card-content{
    padding:22px;
    text-align:center;
}

.card-content h3{
    color:#d4af37;
    margin-bottom:12px;
}

.card-content p{
    color:#ccc;
    line-height:1.6;
}

/* TIKTOK */

#tiktok{
    overflow:hidden;
}

.tiktok-area{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:35px;
    width:100%;
}

.tiktok-profile{
    width:100%;
    max-width:480px;
    padding:32px 25px;
    text-align:center;

    background:linear-gradient(
        180deg,
        rgba(35,0,0,.96),
        rgba(8,0,0,.96)
    );

    border:1px solid rgba(255,0,0,.42);
    border-radius:24px;

    box-shadow:
        0 0 20px rgba(255,0,0,.22),
        0 0 45px rgba(255,0,0,.10);

    backdrop-filter:blur(10px);
}

.tiktok-logo{
    width:92px;
    height:92px;
    margin:0 auto 22px;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
    background:#ffffff;
    border-radius:24px;

    box-shadow:
        0 0 18px rgba(255,0,0,.35),
        0 0 35px rgba(255,0,0,.18);
}

.tiktok-logo img{
    width:58px;
    height:58px;
    display:block;
    object-fit:contain;
}

.tiktok-logo::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:24px;

    background:linear-gradient(
        45deg,
        #00f2ea,
        #ff0050,
        #00f2ea
    );

    filter:blur(10px);
    opacity:.55;
    z-index:-1;
}

.tiktok-profile p{
    color:#eee;
    font-size:17px;
    line-height:1.5;
    margin-bottom:14px;
}

.tiktok-profile h3{
    color:#ff2020;
    font-size:24px;
    line-height:1.3;
    margin-bottom:22px;
    overflow-wrap:anywhere;

    text-shadow:0 0 12px rgba(255,0,0,.45);
}

.tiktok-profile .btn{
    width:100%;
    max-width:240px;
    text-align:center;
    padding:13px 18px;
}

/* VÍDEOS */

.video-grid{
    display:grid;
    grid-template-columns:repeat(3, 325px);
    justify-content:center;
    align-items:start;
    gap:22px;
    width:100%;
}

.tiktok-embed{
    width:325px !important;
    min-width:325px !important;
    max-width:325px !important;
    margin:0 !important;

    border-radius:18px;
    overflow:hidden;

    box-shadow:
        0 0 15px rgba(255,0,0,.30),
        0 0 35px rgba(255,0,0,.12);
}

.tiktok-embed iframe{
    width:325px !important;
    max-width:325px !important;
    border-radius:18px;
}

/* TABLET */

@media(max-width:1100px){

    .video-grid{
        grid-template-columns:repeat(2, 325px);
    }
}

/* CELULAR */

@media (max-width:700px){

    #tiktok{
        padding:55px 14px;
        overflow:hidden;
    }

    #tiktok .container{
        width:100%;
        max-width:100%;
        padding:0;
        margin:0 auto;
    }

    #tiktok .title{
        font-size:clamp(2.2rem, 11vw, 3rem);
        margin-bottom:30px;
    }

    .tiktok-area{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:30px;
    }

    .tiktok-profile{
        width:100%;
        max-width:360px;
        padding:28px 18px;
        margin:0 auto;
        border-radius:22px;
    }

    .tiktok-logo{
        width:72px;
        height:72px;
        font-size:44px;
        margin-bottom:18px;
    }

    .tiktok-profile p{
        font-size:16px;
        line-height:1.5;
        margin-bottom:15px;
    }

    .tiktok-profile h3{
        font-size:20px;
        line-height:1.3;
        margin-bottom:22px;
        overflow-wrap:anywhere;
        word-break:break-word;
    }

    .tiktok-profile .btn{
        width:100%;
        max-width:270px;
        padding:13px 15px;
        font-size:15px;
    }

    .video-grid{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:28px;
    }

    .video-grid > blockquote{
        width:100% !important;
        max-width:325px !important;
        min-width:0 !important;
        margin:0 auto !important;
    }

    .tiktok-embed{
        width:100% !important;
        max-width:325px !important;
        min-width:0 !important;
        margin:0 auto !important;
        border-radius:18px;
        overflow:hidden;
    }

    .tiktok-embed iframe{
        width:100% !important;
        max-width:325px !important;
        min-width:0 !important;
        margin:0 auto !important;
        display:block;
    }
}

/* CELULARES MENORES */
@media (max-width:380px){

    #tiktok{
        padding-left:10px;
        padding-right:10px;
    }

    .tiktok-profile{
        max-width:100%;
        padding:24px 14px;
    }

    .video-grid > blockquote,
    .tiktok-embed,
    .tiktok-embed iframe{
        max-width:calc(100vw - 24px) !important;
    }

    .tiktok-profile h3{
        font-size:18px;
    }
}


/* =========================
   GALERIA
========================= */

.gallery{
    width:100%;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:20px;
}

.gallery-item{
    position:relative;
    width:100%;
    height:320px;
    overflow:hidden;

    border-radius:18px;
    border:1px solid rgba(255,0,0,.35);

    background:#080000;

    box-shadow:
        0 0 20px rgba(255,0,0,.15);

    transition:
        transform .4s ease,
        box-shadow .4s ease;

    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:100%;
    display:block;

    object-fit:cover;
    object-position:center;

    transition:transform .6s ease;
}

.gallery-item:hover{
    transform:translateY(-8px);

    box-shadow:
        0 0 35px rgba(255,0,0,.45);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item::after{
    content:"🔍";

    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,.45);

    color:#fff;
    font-size:40px;

    opacity:0;

    transition:opacity .4s ease;

    pointer-events:none;
}

.gallery-item:hover::after{
    opacity:1;
}


/* =========================
   GALERIA — TABLET
========================= */

@media(max-width:900px){

    .gallery{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:18px;
    }

    .gallery-item{
        height:280px;
    }
}


/* =========================
   GALERIA — CELULAR
========================= */

@media (max-width:768px){

    #galeria{
        padding-left:14px;
        padding-right:14px;
    }

    #galeria .container{
        width:100%;
        max-width:100%;
        padding:0;
    }

    .gallery{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:20px;
        width:100%;
    }

    .gallery-item{
        width:100% !important;
        height:auto !important;
        min-height:0 !important;
        max-height:none !important;

        overflow:hidden;
        border-radius:16px;
        background:#080000;
    }

    .gallery-item img{
        width:100% !important;
        height:auto !important;
        min-height:0 !important;
        max-height:none !important;

        display:block;
        object-fit:contain !important;
        object-position:center !important;

        transform:none !important;
    }

    .gallery-item:hover,
    .gallery-item:active{
        transform:none !important;
    }

    .gallery-item:hover img,
    .gallery-item:active img{
        transform:none !important;
    }

    .gallery-item::after{
        display:none !important;
    }
}


/* =========================
   CELULARES PEQUENOS
========================= */

@media(max-width:420px){

    .gallery{
        gap:14px;
    }

    .gallery-item{
        border-radius:14px;
    }
}


/* ===========================
   DEPOIMENTOS
=========================== */

.testimonials{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:30px;

}

.testimonial{

    position:relative;

    padding:35px;

    border-radius:22px;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        rgba(30,0,0,.95),
        rgba(8,0,0,.95)
    );

    border:1px solid rgba(255,0,0,.35);

    transition:.4s;

    box-shadow:
        0 0 25px rgba(255,0,0,.15);

}

.testimonial:hover{

    transform:translateY(-8px);

    box-shadow:
        0 0 40px rgba(255,0,0,.40);

}

.testimonial::before{

    content:"❝";

    position:absolute;

    top:10px;

    left:18px;

    font-size:70px;

    color:rgba(255,0,0,.18);

}

.testimonial p{

    margin-top:30px;

    color:#ececec;

    line-height:1.8;

    font-size:17px;

    font-style:italic;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:25px;

}

.client img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid #d4af37;

}

.client-info h4{

    color:#fff;

    font-size:18px;

}

.client-info span{

    color:#b8b8b8;

    font-size:14px;

}

.stars{

    color:#FFD700;

    font-size:20px;

    letter-spacing:4px;

    margin-top:18px;

}

/* CONTATO */
.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.contact-box{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,0,0,.4);
    padding:25px;
    border-radius:18px;
    text-align:center;
}

.contact-box h3{
    color:#d4af37;
    margin:12px 0;
}

.contact-box p{
    color:#ccc;
}

/* RODAPÉ */
footer{
    padding:35px 20px;
    text-align:center;
    border-top:1px solid rgba(255,0,0,.3);
    background:#000;
    color:#aaa;
}

/* RESPONSIVO */
@media(max-width:1100px){

    .cards{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonials{
        grid-template-columns:repeat(2,1fr);
    }

    .tiktok-area{
        grid-template-columns:1fr;
    }

    .tiktok-profile{
        margin:auto;
    }

   .video-grid{
    grid-template-columns:repeat(2,325px);
    justify-content:center;
    gap:22px;
}
}

@media(max-width:768px){

    header{
        position:absolute;
    }

    .nav{
        flex-direction:column;
        gap:15px;
        padding:15px;
        text-align:center;
    }

    .menu{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
    }

    .menu a{
        font-size:13px;
    }

    .btn{
        padding:12px 22px;
        font-size:14px;
    }

    .hero{
        min-height:100vh;
        padding:210px 15px 70px;
        background-position:center;
    }

    .pentagrama{
        font-size:85px;
    }

    .hero h1{
        font-size:clamp(2.2rem,12vw,4rem);
    }

    .hero h1 span{
        font-size:clamp(1.3rem,7vw,2rem);
    }

    .hero p{
        font-size:1rem;
        line-height:1.6;
    }

    section{
        padding:65px 15px;
    }

    .about{
        grid-template-columns:1fr;
        gap:25px;
    }

    .photo-grid{
        grid-template-columns:1fr;
    }

    .cards,
.gallery,
.testimonials,
.contact-grid{
    grid-template-columns:1fr;
}

    .card-img,
    .photo,
    .gallery div{
        height:190px;
    }

}

@media(max-width:420px){

    .logo{
        font-size:13px;
    }

    .logo-symbol{
        font-size:28px;
    }

    .menu{
        gap:8px;
    }

    .menu a{
        font-size:12px;
    }

    .hero{
        padding-top:230px;
    }

    .title{
        margin-bottom:30px;
    }

    .about-card,
    .card-content,
    .testimonial,
    .contact-box{
        padding:20px;
    }

    .tiktok-profile p{
        font-size:15px;
    }

    footer{
        font-size:13px;
        line-height:1.6;
    }
}

@media(max-width:768px){

    .logo{

        justify-content:center;

        text-align:center;

    }

    .logo-img{

        width:50px;
        height:50px;

    }

    .logo-text strong{

        font-size:18px;

    }

    .logo-text span{

        font-size:11px;

    }

}

/* AJUSTE MOBILE PREMIUM */
@media(max-width:768px){

    header{
        position:absolute;
        background:#000;
    }

    .nav{
        padding:18px 12px;
        flex-direction:column;
        gap:14px;
    }

    .logo{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .logo-img{
        width:110px;
        height:110px;
    }

    .logo-text span{
        font-size:11px;
        letter-spacing:4px;
    }

    .logo-text strong{
        font-size:19px;
        line-height:1.1;
    }

    .menu{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px 14px;
        max-width:340px;
    }

    .menu a{
        font-size:13px;
    }

    .nav .btn{
        padding:12px 24px;
        font-size:14px;
        margin-top:4px;
    }

    .hero{
        min-height:100svh;
        padding:260px 18px 70px;
        background-position:center top;
    }

    .pentagrama{
        font-size:55px;
        margin-bottom:10px;
    }

    .hero h1{
        font-size:clamp(2.7rem, 14vw, 4rem);
        line-height:.95;
        margin:12px 0 24px;
    }

    .hero h1 span{
        font-size:clamp(1.6rem, 7vw, 2.1rem);
        margin-bottom:10px;
    }

    .hero p{
        font-size:1rem;
        line-height:1.7;
        max-width:340px;
    }

    .hero-content .btn{
        margin-top:15px;
    }

    section{
        padding:60px 16px;
    }
}

@media(max-width:420px){

    .hero{
        padding-top:245px;
    }

    .logo-text strong{
        font-size:17px;
    }

    .menu{
        gap:8px 11px;
    }

    .menu a{
        font-size:12px;
    }

    .hero h1{
        font-size:3.2rem;
    }

    .hero h1 span{
        font-size:1.6rem;
    }
}
</style>