:root {
    --primary-color: #2563eb; /* Um azul moderno */
    --dark-color: #1e293b;
    --light-color: #f8fafc;
}

* {
    margin:none;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 5px 5%;
    background: white;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar a {
    text-decoration:dashed;
    position:relative;
    color: var(--dark-color);
    font-weight: bold;
}
.logo {
        margin-left: 0px;
    }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}



.banner {
    background-image: url('image/Banner.png'); /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    height: 800px; /* Altura fixa para o banner */
    width: 100%; /* Largura total */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px; /* Espaço para acomodar a navbar fixa */
}

.about-section {
    padding: 100px 10%;
    background-color: #fff;
    overflow: hidden; /* Garante que os enfeites não criem barra de rolagem */
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

/* --- LADO DA IMAGEM --- */
.about-image-container {
    position: relative;
    flex: 1;
}

.main-photo {
    width: 100%;
    max-width: 390px;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

/* Adornos (Pontos e Formas) */
.dots-pattern {
    position: absolute;
    width: 120px;
    height: 120px;
    z-index: 1;
    background-image: radial-gradient(#ccc 2px, transparent 2px);
    background-size: 15px 15px;
}

.dots-red {
    top: -30px;
    left: 20%;
    background-image: radial-gradient(#e63946 2px, transparent 2px);
}

.dots-green {
    bottom: -40px;
    right: 10%;
    background-image: radial-gradient(#2a9d8f 2px, transparent 2px);
}

.shape-bg {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: #fff5f0; /* Bege bem clarinho */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
}

/* --- LADO DO TEXTO --- */
.about-text {
    flex: 1;
    position: relative;
}

.label {
    font-size: 14px;
    font-weight: bold;
    color: #888;
    letter-spacing: 2px;
}

.about-text h1 {
    font-size: 42px;
    color: #1d1d1b;
    margin: 15px 0;
    line-height: 1.2;
}

.red-text {
    color: #e63946;
}

.about-text p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Lista de Benefícios */
.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Ícone de check amarelo feito com CSS puro */
.benefit-list li::before {
    content: '✔';
    color: #ffb703;
    margin-right: 15px;
    font-size: 18px;
}

/* Círculo Amarelo */
.yellow-ring {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border: 15px solid #ffb703;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.8;
}
.skills span {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 5px;
    display: inline-block;
}

/* Grid de Projetos */
.projects {
    padding: 100px 5%;
}

.grid-projetos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background-image: url('image/Banner\ azul.png'); /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 200px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.social-link { font-size: 20px; }

  /* Estilização Geral do Rodapé */
        .footer-custom {
            background: linear-gradient(135deg, #000000 0%, #161616 100%);
            color: #ffffff;
            padding: 60px 0 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            border-top: 4px solid #ff00b3;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding: 0 20px;
        }

        /* Colunas */
        .footer-column h3 {
            color: #00d4ff;
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: #ff00b3;
            margin-top: 8px;
        }

        .footer-column p {
            line-height: 1.6;
            color: #d1d1d1;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #d1d1d1;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #00d4ff;
            padding-left: 10px;
        }

       .footer-column p {
            line-height: 1.6;
            color: #d1d1d1;
        }

        /* Estilização dos Ícones Sociais */
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap; /* Garante que os ícones quebrem linha se necessário */
        }
        .social-btn.linkedin:hover { background: #0077B5; transform: translateY(-5px); }
        .social-btn.github:hover { background: #333333; transform: translateY(-5px); }

        .social-btn {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.4s;
            color: white;
            text-decoration: none;
            font-size: 22px;
        }
        .social-btn:hover {
            background: #00d4ff;
            transform: translateY(-5px);
        }

        /* Rodapé Inferior (Direitos Autorais) */
       .footer-bottom {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #a0a0a0;
        }

        .footer-bottom b { color: #00d4ff; }
    
