/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FUNDO ANIMADO GRADIENTE */
body {
    min-height: 100vh;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #0099ff, #0190f0, #0026ff, #07098d);
    background-size: 400% 400%;
    animation: gradientBG 12s ease-in-out infinite;
    color: #f8fafc;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* CABEÇALHO FLUTUANTE */
header {
    width: 100vw;
    background: rgba(0,0,0,0.45);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 24px 0 10px 0;
    backdrop-filter: blur(8px);
}

header .interface {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
}

header nav ul a {
    background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 22px;
    padding: 10px 28px;
    text-decoration: none;
    letter-spacing: 0px;
    box-shadow: 0 2px 12px 0 rgba(44, 62, 80, 0.10);
    transition: background 0.3s, color 0.3s, transform 0.2s;
    border: none;
    outline: none;
}

header nav ul a:hover {
    background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
    color: #d6d013;
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 4px 24px 0 rgba(44, 62, 80, 0.18);
}

/* LOGO ANIMADA */
header a img, .bal {
    height: 110px;
    width: 110px;
    border-radius: 50%;
    border: 1px solid #fbff00;
    box-shadow: 0 0 0 0 #e4dd11, 0 0 0 0 #8bbbc9;
    
    background: #fff;
    object-fit: cover;
}


   
    


/* TÍTULOS COM EFEITO */
h1, h2, h3 {
    text-align: center;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    margin: 30px 0 10px 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #00000044;
}

h1 {
    color: #fff700;
    font-size: 2.5rem;
    font-weight: 900;
    animation: neon 2s alternate infinite;
}

h2 {
    color: #fff700;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

@keyframes neon {
    from { text-shadow: 0 0 8px #fff700, 0 0 16px #00c6ff; }
    to   { text-shadow: 0 0 24px #fff700, 0 0 48px #00c6ff; }
}

h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
}

/* IMAGEM CENTRAL COM EFEITO */
img.mol {
    display: block;
    margin: 40px auto 20px auto;
    width: 300px;
    height: 600px;
    border: 2px solid #fff700;
    border-radius: 50px;
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.25);
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
    filter: grayscale(10%) brightness(1.1);
}

/* SEÇÃO DE DESCRIÇÃO */
.descricao {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* SEÇÃO DE DEPOIMENTOS */
.depoimentos {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.depoimentos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.depoimento-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.estrelas {
    color: #fff700;
    font-size: 24px;
    margin-bottom: 15px;
}

.depoimento-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cliente-nome {
    display: block;
    font-style: italic;
    text-align: right;
    color: #00c6ff;
}

/* SEÇÃO DE LOCALIZAÇÃO */
.localizacao {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.mapa-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* SEÇÃO DE FAQ */
.faq {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateX(10px);
}

.faq-pergunta {
    font-weight: 700;
    font-size: 18px;
    color: #fff700;
    margin-bottom: 10px;
}

.faq-resposta {
    font-size: 16px;
    line-height: 1.6;
}

/* REDES SOCIAIS CÍRCULOS FLUTUANTES */
.topo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
    gap: 22px;
}

.socialContainer {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000000 0%, #0ccaff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px 0 rgba(118, 138, 119, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    /* animation: float 6s ease-in-out infinite; */
}

@keyframes float {
    0%, 100% { transform: translateY(0);}
    50% { transform: translateY(-10px);}
}

socialContainer:hover {
    transform: scale(1.18) rotate(4deg);
    box-shadow: 0 8px 32px 0 rgba(0,198,255,0.18);
}

.socialSvg, .locationSvg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.largeIcon {
    width: 34px;
}

/* CARD DESTAQUE GLASSMORPHISM */
.card {
    width: 100%;
    max-width: 420px;
    margin: 50px auto;
    background: rgba(255,255,255,0.10);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    gap: 22px;
    position: relative;
    top: 20px;
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.25);
}

/* Splash screen */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #fff;
}

.logo {
  max-width: 260px;
  width: 40%;
  height: auto;
}

/* Controle de exibição */
#conteudo {
  display: none;
}

#conteudo.visible {
  display: block;
}

/* Transições */
.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

/* Splash screen estilo Netflix */
.logo-container {

    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.7s;
}

.logo-container.hide {
    opacity: 0;
    pointer-events: none;
}

.logo {
    width: 160px;
    height: 160px;
    object-fit: contain;
    animation: logoPop 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes logoPop {
    0% { transform: scale(0.7); opacity: 0; }
    60% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* RODAPÉ MODERNO */
footer {
    background: rgba(0,0,0,0.65);
    color: #fff700;
    text-align: center;
    padding: 28px 0 14px 0;
    font-size: 16px;
    margin-top: 40px;
    letter-spacing: 1px;
    box-shadow: 0 -2px 16px 0 rgba(44, 62, 80, 0.10);
}

footer .footer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

footer .footer-info {
    margin-bottom: 15px;
}

footer a {
    color: #00c6ff;
    text-decoration: none;
    margin: 0 10px;
    transition: text-decoration 0.2s, color 0.2s;
}

footer a:hover {
    text-decoration: underline;
    color: #fff700;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    img.mol {
        width: 80%;
        height: 400px;
    }
    
    .depoimentos-container {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    header .interface {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    img.mol {
        height: 300px;
    }
    
    .card {
        padding: 20px;
        gap: 12px;
    }
    
    .socialContainer {
        width: 46px;
        height: 46px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-pergunta {
        font-size: 16px;
    }
    
    footer {
        font-size: 14px;
    }
}