    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

    *{
        font-family: 'Poppins', sans-serif;
    }

    /* HERO VIDEO */
    .secao{
        position: relative;
        height: 500PX;
        overflow: hidden;
    }

    .video-bg{
        position: absolute;
        top:50%;
        left:50%;
        min-width:100%;
        min-height:100%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index:1;
    }

    .secao::after{
        content:"";
        position:absolute;
        width:100%;
        height:100%;
        background: rgba(0,0,0,0.45);
        top:0;
        left:0;
        z-index:2;
    }

    .conteudo-hero{
        position: relative;
        z-index:3;
        height:100%;
        color:white;
        text-align:center;
    }

    h1{
        font-size:80px;
        color:#dcb6ff;
        text-shadow: #000 5px 5px 20px;
    }

    .secao p{
        letter-spacing:4px;
        font-size:20px;
    }

    /* BOTÕES */
    .btn{
        color:#000;
        background-image: linear-gradient(60deg,#730a88,#c7dbfa);
        border:2px solid;
        border-image-slice:1;
        border-image-source: linear-gradient(60deg,#c7dbfa,#730a88);
    }

    .btn:hover{
        background-image: linear-gradient(60deg,#c7dbfa,#730a88);
        color:white;
    }

    /* MENU */
    /* NAVBAR NORMAL (embaixo do vídeo) */
    #navbar{
        height:70px;
        width:100%;
        z-index:999;
        transition: 0.4s;
        background:#000; /* preto sólido inicial */
    }

    /* quando gruda no topo → vira glass */
    .navbar-fixo{
        position: fixed;
        top:0;
        left:0;

        /* vidro escuro de verdade */
        background: rgba(0,0,0,0.85) !important;

        backdrop-filter: blur(18px) saturate(120%);
        -webkit-backdrop-filter: blur(18px) saturate(120%);

        box-shadow: 0 6px 25px rgba(0,0,0,0.8);
    }

    .navbar a{
        color:rgb(161, 161, 161) !important;
    }

    nav ul li{
        padding:0 15px;
        transition:.4s;
    }

    /* hover SOMENTE nos itens principais do menu */
    .navbar-nav > .nav-item:hover{
        background:#f1430d;
        border-radius:8px;
    }

    nav ul li:hover a{
        color:#fff !important;
    }

    /* ===== DROPDOWN PREMIUM ===== */

    /* container */
    .dropdown-menu{
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(22px);

    border-radius:16px;
    border:1px solid rgba(255,255,255,.08);

    padding:12px;
    min-width:240px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.6);
}

    /* remove fundo herdado dentro do dropdown */
    .dropdown-menu li:hover{
        background: transparent !important;
    }

   
    /* itens */
    .dropdown-item{
        color:#f2f2f2 !important;
        font-weight:500;
        padding:10px 14px;
        border-radius:10px;
        transition:0.25s;
    }

    .dropdown-item:hover{
        background: linear-gradient(90deg,#ff5e2b,#ff914d);
        color:#000 !important;
        transform: translateX(6px);
    }

    /* separação suave entre itens */
    .dropdown-item + .dropdown-item{
        margin-top:6px;
    }

    /* seta do menu */
    .dropdown-toggle::after{
        margin-left:6px;
        transition:.3s;
    }

    /* BARRA DE ÁUDIO */
    .audio-bar{
        background:#0b0b0b;
        border-bottom:1px solid rgba(255,255,255,0.08);
        padding:10px 0;
    }

    /* player */
    .player{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:20px;
    }

    /* botão play */
    .play-btn{
        width:45px;
        height:45px;
        border-radius:50%;
        border:none;
        font-size:18px;
        cursor:pointer;

        color:white;
        background: linear-gradient(45deg,#ff2a00,#ff7b00);
        box-shadow:0 0 15px rgba(255,60,0,.5);
        transition:.3s;
    }

    .play-btn:hover{
        transform:scale(1.1);
    }

    /* texto */
    .track-info{
        color:#aaa;
        letter-spacing:1px;
    }

    /* volume */
    #volume{
        width:120px;
        accent-color:#ff3c00;
    }

    body{
        background:#b1b1b1; /* cor do site */
        color:#fff;
    }

    /* SEÇÕES DO SITE */
    .secao-site{
        padding: 40px 0; /* antes deve estar ~80px ou 100px */
        background:#111;
    }

    .secao-site.escura{
        background:#070707;
    }

    .secao-site h2{
        font-size:48px;
        margin-bottom:20px;
    }

    /* subseções da escola */
.secao-sub{
    padding:40px 0;
    background:#0d0d0d;
    position:relative;
}

.secao-sub::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:70%;
    height:2px;

    background:linear-gradient(
        90deg,
        transparent,
        #ff5e2b,
        #ffffff,
        #ff5e2b,
        transparent
    );

    box-shadow:
        0 0 10px rgba(255,94,43,.6),
        0 0 20px rgba(255,94,43,.3);
}

#baixo::before{
    display:none;
}


    html{
        scroll-behavior:smooth;
    }

    /* ITEM DO MENU ATIVO */
    .navbar .nav-link.active,
    .navbar .show > .nav-link{
        color:#fff !important;
        background: transparent !important;
        border-bottom:2px solid #ff5e2b;
        border-radius:0;
    }

    .navbar .nav-link:focus,
    .navbar .nav-link:active,
    .navbar .nav-link.show{
        background: transparent !important;
        color:#fff !important;
        box-shadow:none !important;
    }

    .navbar .nav-link,
    .navbar .dropdown-item{
        color:#eaeaea !important;
    }

    /* item ativo (scrollspy) */
    .navbar .nav-link.active{
        color:#fff !important;
        background: transparent !important;
        border-bottom:2px solid #ff5e2b;
        border-radius:0;
    }

    /* hover só visual leve, sem “bloco azul” */
    .navbar-nav > .nav-item:hover{
        background: rgba(255,94,43,0.10);
        border-radius:10px;
    }

    /* animação suave */
    .navbar .nav-link{
        transition:0.3s;
    }

    @media(max-width:768px){

.navbar-nav .nav-link{
    padding:14px 0;
    font-size:18px;
}

}

    .escola-section{
        padding:100px 0;
        color:#fff;

        /* fundo igual padrão premium do site */
        background: radial-gradient(circle at top, #111 0%, #070707 60%, #000 100%);
        position: relative;
        overflow: hidden;
    }

    /* leve brilho decorativo (deixa mais “Spotify style”) */
    .escola-section::before{
        content:"";
        position:absolute;
        top:-200px;
        left:-200px;
        width:600px;
        height:600px;
        background: radial-gradient(circle, rgba(255,60,0,0.12), transparent 60%);
        filter: blur(40px);
        z-index:0;
    }

    .escola-section .container{
        position:relative;
        z-index:1;
    }
    .escola-section p{
        max-width:800px;
        margin:0 auto;
    }

    .img-escola{
        margin-top:60px;
        display:flex;
        justify-content:center;
        padding:0 20px; /* evita encostar nas laterais no mobile */
    }

    .img-escola img{
        width:100%;
        max-width:900px; /* 👈 ajuste principal (antes estava grande demais) */
        height:auto;

        border-radius:18px;

        box-shadow:0 20px 60px rgba(0,0,0,0.6);
        border:1px solid rgba(255,255,255,0.08);

        object-fit: cover;

        transition:0.4s ease;
    }

    .img-escola img:hover{
        transform: scale(1.02);
        box-shadow:0 30px 80px rgba(0,0,0,0.75);
    }

    .titulo-secao{
        font-size:42px;
        font-weight:700;
        margin-bottom:10px;
    }

    .subtitulo-secao{
        font-size:18px;
        opacity:0.8;
        margin-bottom:40px;
    }

    .texto-intro-escola{
        max-width:800px;
        margin:0 auto;
        font-size:16px;
        line-height:1.8;
        opacity:0.9;
    }

    .curso-item{
    display:flex;
    align-items:center;
    gap:50px;
    margin:30px 0;
}

    .curso-item.reverse{
        flex-direction:row-reverse;
    }

    .curso-texto{
        flex:1;
    }

.curso-img{
    flex: 0 0 380px;
    max-width: 380px;
}

.curso-img img{
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.curso-img img:hover{
    transform: scale(1.03);
}

@media (max-width: 992px){

    .curso-item,
    .curso-item.reverse{
        flex-direction: column;
    }

    .curso-img{
        width: 100%;
        max-width: 380px;
    }

    .curso-img img{
        height: 220px;
    }
}
 
/* ================= MIDIA E SOM ================= */

/* ===== MIDIA E SOM NOVO ===== */

.midia-estudio{
    display:flex;
    justify-content:center;
    margin-top:40px;
}

.midia-estudio img{
    width:100%;
    max-width:800px;

    border-radius:18px;

    box-shadow:0 20px 60px rgba(0,0,0,.6);

    transition:.4s;
}

.midia-estudio img:hover{
    transform:scale(1.02);
}

/* FOLDER */

.folder-destaque{
    margin-top:50px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.folder-destaque img{
    width:100%;
    max-width:500px; /* aumenta o folder */

    height:auto;
    object-fit:contain;

    border-radius:18px;

    background:#fff;
    padding:10px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.8);

    transition:.4s;
}

.folder-destaque img:hover{
    transform:translateY(-8px) scale(1.02);
}


.btn-whatsapp{
    margin-top:25px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    font-size:17px;
    font-weight:600;
    letter-spacing:.5px;

    color:#fff;

    background:linear-gradient(135deg,#25D366,#128C7E);

    box-shadow:
        0 10px 25px rgba(37,211,102,.35),
        0 0 20px rgba(37,211,102,.25);

    transition:.3s ease;
}

.btn-whatsapp:hover{
    transform:translateY(-4px) scale(1.03);

    box-shadow:
        0 15px 35px rgba(37,211,102,.45),
        0 0 30px rgba(37,211,102,.35);

    color:#fff;
}

.btn-whatsapp img{
    width:22px;
    height:22px;
    margin-right:10px;
}

@media(max-width:768px){

    .midia-item{
        width:100%;
        max-width:350px;
    }

}

/* ================= PROFISSIONAIS NOVO ================= */


.texto-profissionais{
        margin-top:80px;
    }
    
.profissionais-layout{
    display:grid;
    grid-template-columns:1fr 420px 1fr;
    gap:40px;
    align-items:center;
}


.foto-central img{
    max-width:420px;
    width:100%;
}

.foto-central img{
    width:100%;
    max-width:500px;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.6);
}

.prof-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    text-align:center;
    backdrop-filter:blur(15px);
}

.prof-card h3{
    margin-bottom:15px;
}

.prof-card .resumo{
    color:#ccc;
    line-height:1.8;
}

.btn-bio{
    display:inline-block;
    margin-top:20px;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(45deg,#ff5e2b,#ff914d);
    transition:.3s;
}

/* ================= MODAL BIO PREMIUM ================= */

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(8px);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9998;
}

.overlay.ativo{
    opacity:1;
    visibility:visible;
}

.bio-expandida{

    position:fixed;

    top:50%;
    left:50%;

    transform:translate(-50%,-40%) scale(.92);

    width:92%;
    max-width:900px;

    max-height:85vh;
    overflow-y:auto;

    background:linear-gradient(
        160deg,
        rgba(18,18,18,.98),
        rgba(8,8,8,.98)
    );

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 40px 120px rgba(0,0,0,.85);

    padding:45px;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:9999;
}

.bio-expandida.ativa{

    opacity:1;
    visibility:visible;

    transform:translate(-50%,-50%) scale(1);

}

.bio-conteudo{

    color:#d9d9d9;

    line-height:2;

    font-size:16px;

}

.bio-conteudo h4{

    color:#fff;

    font-size:34px;

    margin-bottom:8px;

    font-weight:700;

}

.bio-conteudo p{

    margin-bottom:18px;

}

.fechar-bio{

    position:absolute;

    top:18px;
    right:18px;

    width:42px;
    height:42px;

    border:none;

    border-radius:50%;

    background:#ff5e2b;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    transition:.3s;

}

.fechar-bio:hover{

    transform:rotate(90deg) scale(1.08);

    background:#ff7c50;

}

/* Scroll */

.bio-expandida::-webkit-scrollbar{

    width:8px;

}

.bio-expandida::-webkit-scrollbar-track{

    background:transparent;

}

.bio-expandida::-webkit-scrollbar-thumb{

    background:#ff5e2b;
    border-radius:20px;

}


.prof-card:hover .bio-hover{
    display:flex;
}

.bio-header{

    display:flex;

    align-items:center;

    gap:25px;

    margin-bottom:35px;

}

.bio-header img{

    width:120px;
    height:120px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #ff5e2b;

    box-shadow:0 0 35px rgba(255,94,43,.45);

}

.bio-header h4{

    margin:0;

}

.bio-header span{

    color:#ff8c65;

    font-size:15px;

    letter-spacing:1px;

}

@media(max-width:768px){

.bio-expandida{

    padding:25px;

}

.bio-header{

    flex-direction:column;

    text-align:center;

}

.bio-header img{

    width:95px;
    height:95px;

}

.bio-conteudo{

    font-size:15px;

}

.bio-conteudo h4{

    font-size:28px;

}

}



/* RESPONSIVO */

@media(max-width:1200px){

    .profissionais-layout{
        grid-template-columns:1fr;
    }

    .foto-central{
        order:-1;
    }

}


    .avaliacoes-grid{
        display:grid;
        grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
        gap:30px;
        margin-top:30px;
    }

    .review{
        background:#0b0b0b;
        padding:25px;
        border-radius:16px;
        box-shadow:0 15px 40px rgba(0,0,0,.6);
        border:1px solid rgba(255,255,255,.05);
    }

    .stars{
        color:#ff7b00;
        font-size:20px;
        margin-bottom:10px;
    }

    .review p{
        font-size:15px;
        opacity:.9;
    }

    .review span{
        display:block;
        margin-top:10px;
        opacity:.6;
        font-size:14px;
    }

.img-valores{
    margin-top:40px;
    display:flex;
    justify-content:center;
}

.img-valores{
    float:right;

    width:280px;
    height:280px;

    object-fit:cover;

    margin:10px 0 20px 30px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.5);

    border:1px solid rgba(255,255,255,.08);
}

#sobre .texto-intro-escola{
    max-width:none;
    text-align:justify;
}

@media (max-width:768px){

    .img-valores{
        float:none;
        display:block;

        width:100%;
        max-width:300px;
        height:auto;

        margin:0 auto 25px auto;
    }

}
/* ===== SEÇÃO VÍDEOS ===== */

#videos{
    background: radial-gradient(circle at top, #111 0%, #070707 60%, #000 100%);
}

.videos-grid{
    margin-top:50px;
}


/* ===== VÍDEOS ===== */

#videos{
    background: radial-gradient(circle at top, #111 0%, #070707 60%, #000 100%);
}

.videos-grid{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}

.video-card{
    position:relative;
    width:240px;
    border-radius:18px;
    overflow:hidden;
    cursor:pointer;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 60px rgba(0,0,0,.6);
    transition:.35s ease;
}

.video-card img{
    width:100%;
    display:block;
}

.video-card::after{
    content:"▶";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
    color:#fff;
    background:rgba(0,0,0,.55);
    transition:.3s;
}

.video-card:hover{
    transform:translateY(-6px) scale(1.03);
    box-shadow:0 28px 80px rgba(0,0,0,.8);
}

.video-card:hover::after{
    background:rgba(255,94,43,.85);
}


/* IMAGEM THUMB */
.video-card img{
    width:100%;
    display:block;
}



.review-topo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.review-topo img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(255,255,255,0.15);
}

.review-topo h5{
    margin:0;
    color:#fff;
    font-size:16px;
    text-align:left;
}

.stars{
    color:#fbbc04;
    font-size:16px;
    letter-spacing:2px;
}

.review p{
    margin-top:10px;
    text-align:left;
    color:#ddd;
    line-height:1.6;
}

.avaliacoes-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* responsivo */
@media (max-width: 992px){
    .avaliacoes-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px){
    .avaliacoes-grid{
        grid-template-columns: 1fr;
    }
}

.review{
    background: linear-gradient(145deg, #0f0f0f, #0a0a0a);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    text-align: left;
    position: relative;
    transition: 0.3s ease;
}

/* efeito hover premium */
.review:hover{
    transform: translateY(-6px);
    border: 1px solid rgba(255, 94, 43, 0.4);
    box-shadow: 0 25px 80px rgba(0,0,0,0.8);
}

.stars{
    color: #ffb400;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review p{
    font-size: 15px;
    line-height: 1.6;
    color: #eaeaea;
    margin-bottom: 12px;
}

.review span{
    font-size: 13px;
    color: #888;
}

/* ================= CONTATO ================= */

.contato-section{
    background: radial-gradient(circle at top, #111 0%, #070707 60%, #000 100%);
}

.contato-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.contato-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:30px;

    text-align:center;

    backdrop-filter:blur(10px);

    transition:.3s;
}

.contato-card:hover{
    transform:translateY(-5px);

    border-color:rgba(255,94,43,.5);

    box-shadow:0 20px 60px rgba(0,0,0,.5);
}

.contato-card h4{
    color:#ff5e2b;
    margin-bottom:15px;
}

.contato-card p{
    color:#ddd;
    line-height:1.8;
    margin:0;
}

/* REDES */

.redes-sociais{
    display:flex;
    justify-content:center;
    gap:25px;

    margin-top:50px;
}

.rede-social{
    width:65px;
    height:65px;

    border-radius:50%;

    background:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;
}

.rede-social:hover{
    transform:translateY(-6px) scale(1.08);

    border-color:#ff5e2b;

    box-shadow:0 15px 40px rgba(255,94,43,.25);
}

.rede-social img{
    width:34px;
    height:34px;
}

/* RESPONSIVO */

@media(max-width:900px){

    .contato-grid{
        grid-template-columns:1fr;
    }

}

    /* IMAGEM PULSANTE */
    /*.circulo{
        width:400px;
        height:400px;
        border-radius:50%;
        animation:pulse 2s infinite;
    }

    @keyframes pulse{
        0%{ box-shadow:#730a88 0 0 0 0; }
        75%{ box-shadow:#896190 0 0 0 50px; }
    }*/

    /* FOOTER */
    footer{
        background:#000000;
        height:80px;
    }

    footer p{
        color:white;
        margin:0;
    }

    @media (min-width: 992px){

    .dropdown:hover .dropdown-menu{
        display:block;
        margin-top:0;
    }

}

.navbar-collapse{
    z-index:9999;
}

@media (max-width: 768px){

    .navbar-collapse{
        background:#000;
        padding:15px;
    }

}   

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;

    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 18px;

    background:#25D366;
    color:#fff;
    text-decoration:none;

    border-radius:50px;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

    z-index:99999;

    transition:.3s;
}

.whatsapp-float:hover{
    transform:translateY(-3px);
    color:#fff;
}

.whatsapp-float img{
    width:30px;
    height:30px;
}

.whatsapp-float span{
    font-weight:600;
    white-space:nowrap;
}

@media(max-width:768px){

.whatsapp-float{
    width:55px;
    height:55px;
}

.whatsapp-float img{
    width:30px;
}

}

@media(max-width:768px){

    .whatsapp-float{
        width:60px;
        height:60px;
        padding:0;
        border-radius:50%;
        justify-content:center;
    }

    .whatsapp-float span{
        display:none;
    }

}

/* =====================================================
   RESPONSIVIDADE MOBILE
===================================================== */

@media (max-width:768px){

    /* HERO */
    .secao{
        height:250px;
    }

    h1{
        font-size:36px;
    }

    .secao p{
        font-size:15px;
        letter-spacing:1px;
    }

    /* MENU */
    #navbar{
        height:auto;
    }

    .navbar-collapse{
        background:#000;
        padding:15px;
    }

    .navbar-nav{
        text-align:center;
    }

    .navbar-nav .nav-item{
        padding:5px 0;
    }

    .dropdown-menu{
        width:100%;
        text-align:center;
    }

    /* PLAYER */

    .player{
        flex-direction:column;
        gap:12px;
    }

    #volume{
        width:100%;
        max-width:250px;
    }

    /* TÍTULOS */

    .secao-site h2,
    .escola-section h2{
        font-size:32px;
    }

    .subtitulo-secao{
        font-size:16px;
    }

    /* IMAGEM ESCOLA */

    .img-escola img{
        max-width:100%;
    }

    /* CURSOS */

    .curso-item,
    .curso-item.reverse{
        flex-direction:column;
        gap:25px;
        text-align:center;
    }

    .curso-img{
        flex:none;
        max-width:100%;
    }

    .curso-img img{
        width:100%;
        height:auto;
    }

    /* MÍDIA */

    .midia-estudio img{
        width:100%;
    }

    .folder-destaque img{
        width:100%;
    }

    /* PROFISSIONAIS */

    .profissionais-layout{
        grid-template-columns:1fr;
        gap:30px;
    }

    .foto-central{
        order:-1;
    }

    .foto-central img{
        max-width:100%;
    }

    .prof-card{
        padding:25px;
    }

    /* BIO */

    .bio-expandida{
        width:95%;
        max-height:90vh;
        padding:20px;
    }

    .bio-conteudo{
        padding:5px;
    }

    /* SOBRE */

    .img-valores{
        float:none;
        display:block;
        width:100%;
        max-width:280px;
        margin:0 auto 25px;
        height:auto;
    }

    /* VÍDEOS */

    .videos-grid{
        flex-direction:column;
        align-items:center;
    }

    .video-card{
        width:100%;
        max-width:340px;
    }

    /* AVALIAÇÕES */

    .avaliacoes-grid{
        grid-template-columns:1fr;
    }

    /* CONTATO */

    #contato .container{
        text-align:center;
    }

    /* WHATSAPP */

    .whatsapp-float{
        width:58px;
        height:58px;
        right:15px;
        bottom:15px;
    }

    .whatsapp-float img{
        width:32px;
        height:32px;
    }

}
