* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: #fff;
    overflow-x: hidden;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


header {
    position: fixed;
    width: 100%;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 100;
}



header h1 {
    font-size: 20px;
    background: linear-gradient(90deg, #00ff88, #00c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav a {
    color: #aaa;
    text-decoration: none;
    margin-left: 25px;
    position: relative;
}

nav a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #00ff88;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    nav {
        display: none; /* depois você pode fazer menu hambúrguer */
    }
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;

    /* FUNDO IGUAL AO DA IMAGEM */
    background: radial-gradient(circle at 50% 30%, #0a1a3a, #020617 70%);
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;
    }
}


.hero-content {
    max-width: 800px;
    animation: fadeUp 1s ease forwards;
}


.hero h2 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero span {
    background: linear-gradient(90deg, #00ff88, #00c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero p {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
}


.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 40px;
    background: linear-gradient(90deg, #00ff88, #00c3ff);
    color: #000;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 0 25px rgba(0,255,136,0.5);
    transition: 0.4s;
}

.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 60px rgba(0,255,136,0.9);
}


section {
    padding: 100px 10%;
}

.title {
    display: flex;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 50px;
    animation: fadeUp 1s ease forwards;
}


.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* CARD */
.card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s;
    cursor: pointer;
    animation: fadeUp 1s ease forwards;
}

.card:hover {
    transform: translateY(-12px) scale(1.03);
    border: 1px solid #00ff88;
    box-shadow: 0 0 30px rgba(0,255,136,0.3);
}

.card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: 0.4s;
}

.card:hover img {
    transform: scale(1.05);
}


#contato p {
    opacity: 0.8;
}


footer {
    text-align: center;
    padding: 40px;
    color: #777;
}


@media(max-width: 768px) {
    .hero h2 {
        font-size: 34px;
    }
}


.carousel {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.carousel::-webkit-scrollbar {
    height: 6px;
}

.carousel::-webkit-scrollbar-thumb {
    background: #00ff88;
    border-radius: 10px;
}


.carousel video {
    min-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    scroll-snap-align: start;
    transition: 0.4s;
    opacity: 0.8;
    width: 100%;
    height: 180px;

}

@media (max-width: 768px) {
    .carousel video {
        height: 140px;
    }
}


.carousel video:hover {
    transform: scale(1.03);
    opacity: 1;
}


/* CONTAINER */
.contact-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* CONTAINER */
.contact-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* CARD PADRÃO IGUAL PRA TODOS */
.contact-card {
    width: 260px;
    height: 180px; /* 🔥 TODOS DO MESMO TAMANHO */
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border-radius: 18px;

    text-align: center;
    transition: 0.4s;
    padding: 20px;
}

/* HOVER */
.contact-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0,255,136,0.2);
}

/* ÍCONE GRANDE */
.icon {
    font-size: 32px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #00ff88, #00c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXTO */
.contact-card p {
    font-size: 14px;
    color: #ccc;
    word-break: break-word;
}

/* LINKS */
.contact-card a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

/* BOTÃO LINKEDIN */
.btn-linkedin {
    margin-top: 10px;
    padding: 10px 25px;
    border-radius: 25px;
    background: linear-gradient(90deg, #00ff88, #00c3ff);
    color: #000;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0,255,136,0.4);
}

.btn-linkedin:hover {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(0,255,136,0.8);
}

/* REMOVE ESTILO DE LINK */
.contact-card {
    text-decoration: none;
    color: inherit;
}

/* FEEDBACK DE CLIQUE */
.contact-card:active {
    transform: scale(0.97);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 90%;
        max-width: 300px;
    }
}
.linkimg
{
    width: 25%;
    margin-top: 10%
}
.linkwpp
{
    width: 35%;
    margin-top: 10%
}

.linkgmail
{
    width: 25%;
    margin-top: 10%
}
/* SECTION SOBRE */
#sobre {
    padding: 100px 10%;
}

.sobre-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* TEXTO */
.sobre-texto {
    flex: 1;
    min-width: 300px;
}

.sobre-texto h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.sobre-texto span {
    background: linear-gradient(90deg, #00ff88, #00c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sobre-texto p {
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* INFO BOX */
.sobre-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .sobre-container {
        flex-direction: column;
        text-align: center;
    }

    .sobre-info {
        justify-content: center;
    }
}

.info-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    min-width: 120px;
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    border: 1px solid #00ff88;
}

.info-box h3 {
    font-size: 28px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.info-box p {
    font-size: 13px;
    color: #aaa;
}
html {
    scroll-behavior: smooth;
}

video {
    cursor: pointer;
}