/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth; /* Adiciona scroll suave */
}

/* Efeito de fundo futurista */
.background-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 10, 10, 0.8), rgba(0, 0, 0, 1));
    z-index: -1;
    animation: glow 6s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 50px rgba(0, 191, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 100px rgba(0, 191, 255, 0.3);
    }
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 2px solid #00bfff;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo-link {
    text-decoration: none; /* Remove o sublinhado do link */
    color: inherit; /* Mantém a cor do texto */
}

.logo-link p:last-of-type {
    display: none;
    transition: opacity 0.3s;
}

.logo-link:hover p:last-of-type {
    display: block;
}


.logo-link:hover {
    text-decoration: none; /* Garante que o sublinhado não apareça ao passar o mouse */
}
.logo h1 {
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 0 0 10px #00bfff;
}

.logo p {
    font-size: 0.9rem;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.orange {
    color: #ff6811; /* Branco */
    text-shadow: 0 0 10px #ff6811; /* Brilho azul */
}

.blue {
    color: #00bfff; /* Azul */
    text-shadow: 0 0 10px #00bfff; /* Brilho azul */
}



nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00bfff;
    text-shadow: 0 0 10px #00bfff;
}

/* Seção Hero */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(0, 0, 0, 1));
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px #00bfff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.btn {
    padding: 10px 20px;
    background: #00bfff;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
}

.btn:hover {
    background: #008fcc;
    transform: scale(1.05);
}


/* Rodapé */
footer {
    padding: 20px;
    text-align: center;
    background: rgba(10, 10, 10, 0.8);
    border-top: 2px solid #00bfff;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    font-size: 0.9rem;
    color: #ffffff;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #00bfff;
    text-shadow: 0 0 10px #00bfff;
}

/* Seção Portifolio */
.portifolio {
    padding: 100px 10%;
    text-align: center;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(0, 0, 0, 1));
}

.portifolio h2 {
    font-size: 2.5rem;
    text-shadow: 0 0 20px #00bfff;
    margin-bottom: 20px;
}

.portifolio p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ffffff;
}


/* Grid dos Projetos */
.portifolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Estilos dos Cards */
.portifolio-item {
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid #00bfff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 300px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.portifolio-item.show {
    opacity: 1;
    transform: translateY(0);
}

.portifolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00bfff;
}

.portifolio-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.portifolio-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portifolio-item p {
    font-size: 1rem;
    color: #ccc;
}

/* Botão Ver Mais */
.btn-ver-mais {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: #00bfff;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

.btn-ver-mais:hover {
    background: #008fcc;
    transform: scale(1.05);
}

/* Media Queries para responsividade */
@media (max-width: 768px) {
    .portifolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .portifolio-item {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .portifolio-grid {
        grid-template-columns: 1fr;
    }

    .portifolio-item {
        max-width: 100%;
    }
}

section {
    padding: 100px 10%; /* Espaçamento interno para não ficar muito colado */
    min-height: 100vh; /* Faz cada seção ocupar a tela inteira */
}

/* Ajuste para seções para evitar que fiquem encobertas pelo header */
[id] {
    scroll-margin-top: 80px; /* Evita que o header cubra o topo das seções */
}


/* Estilo base da seção "Sobre Mim" */
.about {
    background: linear-gradient(135deg, #0a0a0a, #0d0d0d); /* Fundo escuro */
    color: #00bfff; /* Texto azul */
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #00bfff; /* Borda azul */
    position: relative;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

/* Efeito de brilho ao redor da seção */
.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.3), transparent 70%);
    animation: rotate 10s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Estilo do título */
.about h2 {
    font-size: 2.5rem;
    text-align: justify;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #ff6811; /* Título laranja */
    text-shadow: 0 0 10px #ff6811, 0 0 20px #ff6811;
}

/* Estilo do conteúdo */
.about-content {
    text-align: justify;
    position: relative;
    z-index: 1;
    line-height: 4rem;
    font-size: 2rem;
}

/* Efeito de digitação no texto */
.about-content p {
    opacity: 0;
    animation: type 0.5s forwards;
    animation-delay: calc(0.1s * var(--i));
}

@keyframes type {
    to {
        opacity: 1;
    }
}

/* Efeito de hover nos parágrafos */
.about-content p:hover {
    color: #ff6811; /* Texto laranja ao passar o mouse */
    text-shadow: 0 0 10px #ff6811, 0 0 20px #ff6811;
    transition: all 0.3s ease;
    transform: skew(-10deg);
}

/* Seção Contato */
.contact {
    padding: 100px 10%;
    text-align: center;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(0, 0, 0, 1));
}

.contact h2 {
    font-size: 2.5rem;
    text-shadow: 0 0 20px #00bfff;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ffffff;
}

/* Estilos para o link do Instagram */
.instagram-link {
    display: inline-flex; /* Exibe o link como um flex container em linha */
    align-items: center; /* Alinha os itens no centro verticalmente */
    text-decoration: none; /* Remove a sublinha do link */
    color: #ff6811; /* Define a cor do texto do link */
    font-weight: bold; /* Define o peso da fonte como negrito */
    transition: transform 0.3s, color 0.3s; /* Adiciona transições suaves para transformações e mudanças de cor */
}

.instagram-link i {
    margin-right: 8px; /* Adiciona uma margem à direita do ícone */
}

/* Estilos para o link do Instagram ao passar o mouse */
.instagram-link:hover {
    color: #008fcc; /* Muda a cor do texto ao passar o mouse */
    transform: scale(3.3); /* Aumenta o tamanho do link ao passar o mouse */
}

/* Estilo barra de rolagens*/
/* Estilo geral da barra de rolagem */
::-webkit-scrollbar {
    width: 50px; /* Largura da barra de rolagem */
}

/* Fundo da barra de rolagem (trilha) */
::-webkit-scrollbar-track {
    background: #1a1a1a; /* Cor de fundo */
    border-radius: 10px; /* Borda arredondada */
}

/* Alça da barra de rolagem (thumb) */
/* Animação de piscar na alça */


::-webkit-scrollbar-thumb {
    background: #008fcc; /* Cor da alça */
    border-radius: 10px; /* Borda arredondada */
    border: 2px solid #1a1a1a; /* Borda ao redor da alça */
    box-shadow: 0 0 10px #008fcc, 0 0 20px #008fcc; /* Efeito de brilho */
}

/* Efeito de hover na alça */
::-webkit-scrollbar-thumb:hover {
    background: #ff6811; /* Cor da alça ao passar o mouse */
    box-shadow: 0 0 10px #ff6811, 0 0 20px #ff6811; /* Efeito de brilho ao passar o mouse */
}

/* Estilo da popup de pontos */
#popup-pontos {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0a0a0a; /* Fundo escuro */
    color: #00bfff; /* Texto azul */
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00bfff; /* Sombra azul */
    z-index: 1000; /* Garante que fique acima de outros elementos */
}

/* Estilo do bichinho escondido */
/* Estilo do bichinho */
#bichinho {
    position: absolute;
    top: 100px;
    left: 50px;
    cursor: pointer;
    font-size: 24px;
    z-index: 1000;
}

/* Estilo do balão de fala */
.balao-fala {
    position: relative;
    top: -60px;
    left: 16%; /* Ajusta a posição do balão */
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #00ffcc;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    font-size: 8px; /* Tamanho da fonte */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Triângulo do balão de fala */
.balao-fala::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #1a1a1a;
}

/* Mostra o balão ao passar o mouse sobre o bichinho */
#bichinho:hover .balao-fala {
    opacity: 1;
    visibility: visible;
}

/* Estilo da seção de desafios */
#desafios {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #0a0a0a; /* Fundo escuro */
    color: #00bfff; /* Texto azul */
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00bfff; /* Sombra azul */
    z-index: 1000; /* Garante que fique acima de outros elementos */
    overflow: hidden; /* Oculta o conteúdo extra */
    transition: height 0.3s ease-in-out; /* Transição suave para a altura */
    height: 40px; /* Altura inicial para mostrar apenas o h3 */
}

#desafios:hover {
    height: auto; /* Expande para mostrar o conteúdo completo */
}

#desafios ul {
    opacity: 0;
    transition: opacity 0.3s ease-in-out; /* Transição suave para a opacidade */
    margin-top: 10px; /* Ajuste conforme necessário */
}

#desafios:hover ul {
    opacity: 1; /* Mostra a lista de desafios ao passar o mouse */
}

#desafios h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #ff6811; /* Título laranja */
}

#desafios li {
    margin: 10px 0;
    font-size: 1rem;
    color: #00bfff; /* Texto azul */
}

/* Efeito de riscado quando o desafio é completado */
.desafio-completo {
    text-decoration: line-through;
    opacity: 0.7;
}

#pontos-feedback {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001; /* Garante que fique acima de outros elementos */
    font-size: 1.5rem;
    color: #ff6811; /* Cor dos pontos */
    pointer-events: none; /* Impede a interação com o elemento */
}

.pontos-feedback-item {
    animation: fadeOut 0.5s forwards; /* Animação para desaparecer */
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Seção de Precificação e Orçamento */
.pricing {
    padding: 100px 10%;
    background: linear-gradient(135deg, #0a0a0a, #0d0d0d);
    color: #ffffff;
    position: relative;
}

.pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #ff6811;
    text-shadow: 0 0 20px #ff6811;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(0, 191, 255, 0.05);
    border: 2px solid #00bfff;
    border-radius: 15px;
}

.pricing-intro h3 {
    color: #00bfff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #00bfff;
}

.pricing-intro p {
    font-size: 1.2rem;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
}

.pricing-models {
    margin-bottom: 50px;
}

.pricing-models h3 {
    color: #ff6811;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 10px #ff6811;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: rgba(20, 20, 20, 0.9);
    border: 3px solid #00bfff;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 191, 255, 0.4);
}

.pricing-card.exclusive {
    border-color: #ff6811;
}

.pricing-card.exclusive:hover {
    box-shadow: 0 10px 40px rgba(255, 104, 17, 0.4);
}

.card-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 191, 255, 0.3);
}

.card-header h4 {
    color: #00bfff;
    font-size: 1.3rem;
    text-align: center;
}

.pricing-card.exclusive .card-header h4 {
    color: #ff6811;
}

.card-price {
    text-align: center;
    margin: 30px 0;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #00bfff;
    text-shadow: 0 0 15px #00bfff;
    margin-bottom: 10px;
}

.pricing-card.exclusive .price-value {
    color: #ff6811;
    text-shadow: 0 0 15px #ff6811;
}

.price-period {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
}

.card-content {
    font-family: 'Roboto', sans-serif;
}

.card-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.card-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.card-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #ffffff;
}

.card-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00bfff;
    font-weight: bold;
}

.pricing-card.exclusive .card-content ul li::before {
    color: #ff6811;
}

.card-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 191, 255, 0.05);
    border-left: 3px solid #00bfff;
    border-radius: 5px;
}

.pricing-card.exclusive .card-note {
    background: rgba(255, 104, 17, 0.05);
    border-left-color: #ff6811;
}

.card-note p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.pricing-differential {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(0, 191, 255, 0.05);
    border: 2px solid #00bfff;
    border-radius: 15px;
}

.pricing-differential h3 {
    color: #00bfff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 10px #00bfff;
}

.differential-grid {
    display: grid;
    gap: 20px;
}

.differential-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 10px;
    font-family: 'Roboto', sans-serif;
}

.differential-icon {
    font-size: 1.5rem;
    color: #00bfff;
    flex-shrink: 0;
}

.pricing-restrictions {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 104, 17, 0.05);
    border: 2px solid #ff6811;
    border-radius: 15px;
}

.pricing-restrictions h3 {
    color: #ff6811;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px #ff6811;
}

.pricing-restrictions ul {
    list-style: none;
    padding-left: 0;
    font-family: 'Roboto', sans-serif;
}

.pricing-restrictions ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.pricing-restrictions ul li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #ff6811;
    font-size: 1.2rem;
}

.pricing-contact {
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(255, 104, 17, 0.1));
    border: 3px solid #00bfff;
    border-radius: 15px;
    text-align: center;
}

.pricing-contact h3 {
    color: #00bfff;
    font-size: 2rem;
    margin-bottom: 25px;
    text-shadow: 0 0 10px #00bfff;
}

.contact-examples {
    margin: 30px 0;
    font-family: 'Roboto', sans-serif;
}

.contact-examples p {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 15px 0;
    padding: 15px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 10px;
    border-left: 3px solid #ff6811;
}

.contact-message {
    font-size: 1.3rem;
    color: #ff6811;
    margin: 30px 0;
    font-weight: bold;
    text-shadow: 0 0 10px #ff6811;
}

.contact-info {
    margin-top: 30px;
    font-family: 'Roboto', sans-serif;
}

.contact-info p {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #ffffff;
}

.contact-info p:first-child {
    color: #00bfff;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Responsividade para Pricing */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 5%;
    }

    .pricing h2 {
        font-size: 2rem;
    }

    .pricing-intro h3,
    .pricing-models h3,
    .pricing-differential h3,
    .pricing-restrictions h3,
    .pricing-contact h3 {
        font-size: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-value {
        font-size: 2rem;
    }

    .contact-examples p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 20px;
    }

    .card-header h4 {
        font-size: 1.1rem;
    }

    .price-value {
        font-size: 1.8rem;
    }

    .pricing-intro,
    .pricing-differential,
    .pricing-restrictions,
    .pricing-contact {
        padding: 20px;
    }
}

