/* ===== RESET E ESTILOS GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #f5f5f5;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
    padding: 20px 0;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

header .interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width: 150px;
    filter: brightness(1.2);
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.menu-desktop ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.menu-desktop ul li a {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s;
}

.menu-desktop ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #00d2ff, #8a2be2);
    transition: width 0.3s;
}

.menu-desktop ul li a:hover {
    color: #fff;
}

.menu-desktop ul li a:hover::after {
    width: 100%;
}

.btn-contato button {
    background: linear-gradient(45deg, #00d2ff, #8a2be2);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-contato button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

/* ===== MENU MOBILE ===== */
.btn-abrir-menu {
    display: none;
    font-size: 30px;
    color: #00d2ff;
    cursor: pointer;
}

.menu-mobile {
    display: none;
}

.overlay-menu {
    display: none;
}

@media screen and (max-width: 900px) {
    .menu-desktop, .btn-contato {
        display: none;
    }

    .btn-abrir-menu {
        display: block;
    }

    .menu-mobile {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 350px;
        height: 100vh;
        background: #111;
        border-left: 2px solid rgba(255, 255, 255, 0.05);
        z-index: 1001;
        transition: right 0.5s ease;
        padding: 40px 20px;
    }

    .menu-mobile.abrir {
        right: 0;
    }

    .menu-mobile .btn-fechar {
        text-align: right;
        font-size: 30px;
        color: #00d2ff;
        cursor: pointer;
        margin-bottom: 40px;
    }

    .menu-mobile nav ul {
        list-style: none;
    }

    .menu-mobile nav ul li {
        margin-bottom: 20px;
    }

    .menu-mobile nav ul li a {
        text-decoration: none;
        color: #f5f5f5;
        font-size: 20px;
        font-weight: 500;
        transition: color 0.3s;
    }

    .menu-mobile nav ul li a:hover {
        color: #00d2ff;
    }

    .overlay-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(3px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .overlay-menu.ativo {
        opacity: 1;
        visibility: visible;
    }
}

/* ===== SEÇÃO TOPO DO SITE ===== */
section {
    padding: 80px 0;
}

.topo-do-site {
    background: #0a0a0a;
    padding-top: 150px;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.txt-topo-site h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.txt-topo-site h1 span {
    color: #00d2ff;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}

.txt-topo-site p {
    color: #b0b0b0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.img-topo-site img {
    max-width: 400px;
    border-radius: 30px;
    animation: flutuar 3s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(0, 210, 255, 0.7)); /* brilho azul */
}

@keyframes flutuar {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@media screen and (max-width: 900px) {
    .flex {
        flex-direction: column;
        text-align: center;
    }

    .txt-topo-site h1 {
        font-size: 32px;
    }
}

/* ===== SEÇÃO ESPECIALIDADES ===== */
.especialidades {
    background: #111;
}

.titulo {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.titulo span {
    color: #00d2ff;
    background: linear-gradient(45deg, #00d2ff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.especialidades .flex {
    gap: 30px;
}

.especialidades-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(5px);
    flex: 1;
}

/* Estilização das listas nas especialidades */
.especialidades-box ul {
    list-style: none;          /* remove os marcadores padrão */
    margin-top: 15px;
    padding-left: 0;
    text-align: left;           /* alinha o texto à esquerda para melhor leitura */
}

.especialidades-box li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

/* Ícone de check usando Bootstrap Icons (requer a biblioteca carregada) */
.especialidades-box li::before {
    content: "\F26E";           /* Código Unicode do bi-check-circle-fill */
    font-family: "bootstrap-icons", sans-serif;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #00d2ff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
}

/* Efeito hover suave nos itens */
.especialidades-box li:hover {
    transform: translateX(5px);
    color: #f5f5f5;
}

.especialidades-box li:hover::before {
    transform: scale(1.1);
}

.especialidades-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.2);
    border-color: #00d2ff;
}

.especialidades-box i {
    font-size: 50px;
    color: #00d2ff;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(45deg, #00d2ff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.especialidades-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.especialidades-box p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 15px;
}

/* ===== SEÇÃO SOBRE ===== */
.sobre {
    background: #0a0a0a;
}

.img-sobre img {
    max-width: 350px;
    border-radius: 40px 10px 40px 10px;
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.3);
}

.txt-sobre h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.txt-sobre h2 span {
    color: #00d2ff;
}

.txt-sobre p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.btn-social a button {
    background: transparent;
    border: 2px solid #00d2ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    color: #00d2ff;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-social a button:hover {
    background: #00d2ff;
    color: #0a0a0a;
    transform: scale(1.1);
}

/* ===== SEÇÃO PORTFÓLIO ===== */
.portfolio {
    background: #111;
}

.portfolio .flex {
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.img-port {
    width: 320px;
    height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    cursor: pointer;
}

.img-port:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.3);
}

.img-port .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 210, 255, 0.8), rgba(138, 43, 226, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transition: opacity 0.5s;
    backdrop-filter: blur(3px);
}

.img-port:hover .overlay {
    opacity: 1;
}

/* ===== SEÇÃO FORMULÁRIO ===== */
.formulario {
    background: #0a0a0a;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form input, form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 18px 20px;
    color: #f5f5f5;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

form input:focus, form textarea:focus {
    border-color: #00d2ff;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

form textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-enviar input {
    background: linear-gradient(45deg, #00d2ff, #8a2be2);
    border: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-enviar input:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.4);
}

/* ===== FOOTER ===== */
footer {
    background: #111;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.line-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-footer img {
    max-width: 120px;
}

.line-footer.borda {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 30px;
    padding-top: 30px;
    justify-content: space-around;
}

.line-footer p {
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.line-footer p i {
    color: #00d2ff;
}

.line-footer p a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s;
}

.line-footer p a:hover {
    color: #00d2ff;
}

@media screen and (max-width: 600px) {
    .line-footer {
        flex-direction: column;
        text-align: center;
    }
}

.termos-checkbox {
    margin: 15px 0 20px;    /* Espaçamento superior/inferior */
    text-align: left;       /* Alinha o texto à esquerda */
    font-size: 0.95rem;
    line-height: 1.5;
}

.termos-checkbox label {
    display: flex;
    align-items: center;    /* Alinha verticalmente checkbox e texto */
    gap: 8px;               /* Espaço entre o checkbox e o texto */
    cursor: pointer;
}

.termos-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #00d2ff;  /* Cor personalizada para o checkbox (opcional) */
}

.termos-checkbox a {
    color: #00d2ff;          /* Cor do link (ajuste conforme seu tema) */
    text-decoration: underline;
}

.termos-checkbox a:hover {
    color: #fff;
}