       /* ==========================================================================
           RESET E CONFIGURAÇÕES BASE
           ========================================================================== */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        *::before,
        *::after {
            box-sizing: inherit;
        }
        
        :root {
/* Cores principais atualizadas */
    --primary-gradient: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    --secondary-gradient: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);

            
            /* Cores neutras */
            --bg-primary: #0a0a0b;
            --bg-secondary: #111113;
            --bg-card: rgba(17, 17, 19, 0.8);
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
            --text-muted: #6b7280;
            
            /* Cores de destaque */
            --accent-blue: #3b82f6;
            --accent-purple: #8b5cf6;
            --accent-cyan: #06b6d4;
            
            /* Bordas e sombras */
            --border-subtle: rgba(255, 255, 255, 0.1);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
            
            /* Espaçamentos */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2rem;
            --space-xl: 3rem;
            --space-2xl: 4rem;
            
            /* Transições */
            --transition-fast: 0.15s ease;
            --transition-base: 0.3s ease;
            --transition-slow: 0.5s ease;
        }
          /* ==========================================================================
           MENU HAMBURGUER 
           ========================================================================== */
           /* Estilos básicos */
/* ================== MENU HAMBÚRGUER ================== */
.navbar {
    background: #222;
    color: #fff;
    padding: 1rem 0;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Links do menu */
.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: #00bfff;
}

/* Botão hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 20;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 3px;
}

/* Responsivo */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #222;
        flex-direction: column;
        width: 100%;
        text-align: right;
        padding: 1rem 2rem;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    /* Animação para o botão "X" */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
}

        /* ==========================================================================
           CONFIGURAÇÕES DO DOCUMENTO
           ========================================================================== */
        
        html {
            font-size: 62.5%;
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            font-size: 1.6rem;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-primary);
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
            background-attachment: fixed;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        
        /* ==========================================================================
           CONTAINER E LAYOUT
           ========================================================================== */
        
        .container {
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 var(--space-lg);
            width: 100%;
        }
        
        .section {
            padding: var(--space-2xl) 0;
            position: relative;
        }
        
        /* ==========================================================================
           NAVEGAÇÃO
           ========================================================================== */
        
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: var(--space-sm) 0;
            background: rgba(10, 10, 11, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            transform: translateY(-100%);
            animation: slideDown 0.8s ease forwards;
            animation-delay: 1s;
        }
        
        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .nav-links {
            display: flex;
            gap: var(--space-lg);
            list-style: none;
        }
        
        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition-base);
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            transition: var(--transition-base);
        }
        
        .nav-link:hover {
            color: var(--text-primary);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* ==========================================================================
           THEME TOGGLE
           ========================================================================== */
        
        .theme-toggle {
            position: fixed;
            top: var(--space-lg);
            right: var(--space-lg);
            z-index: 1001;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 50px;
            padding: var(--space-xs) var(--space-sm);
            color: var(--text-primary);
            cursor: pointer;
            transition: var(--transition-base);
            backdrop-filter: blur(20px);
            font-size: 1.4rem;
        }
        
        .theme-toggle:hover {
            background: var(--bg-secondary);
            box-shadow: var(--shadow-glow);
        }
        
        /* ==========================================================================
           HERO SECTION
           ========================================================================== */
        
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%233b82f6" stop-opacity="0.1"/><stop offset="100%" stop-color="%23000" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
            opacity: 0.3;
            z-index: -1;
        }
        
        .hero-content {
            text-align: center;
            position: relative;
            z-index: 10;
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
        }
        
        .hero-title {
            font-size: clamp(3.5rem, 6vw, 6rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: var(--space-md);
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }
        
        .hero-subtitle {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            color: var(--text-secondary);
            margin-bottom: var(--space-xl);
            font-weight: 300;
        }
        
        .hero-description {
            font-size: 1.8rem;
            color: var(--text-muted);
            margin-bottom: var(--space-2xl);
            max-width: 60rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            gap: var(--space-md);
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* ==========================================================================
           BOTÕES
           ========================================================================== */
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            padding: var(--space-sm) var(--space-lg);
            border-radius: 50px;
            font-weight: 500;
            font-size: 1.4rem;
            cursor: pointer;
            transition: all var(--transition-base);
            border: none;
            outline: none;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition-slow);
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-primary {
            background: var(--primary-gradient);
            color: white;
            box-shadow: var(--shadow-lg);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-subtle);
            backdrop-filter: blur(20px);
        }
        
        .btn-secondary:hover {
            background: var(--bg-card);
            border-color: var(--accent-blue);
            transform: translateY(-2px);
        }
        
        /* ==========================================================================
           SEÇÃO SOBRE
           ========================================================================== */
        
        .about {
            background: var(--bg-secondary);
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--accent-gradient);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: var(--space-2xl);
            align-items: center;
        }
        
        .profile-section {
            position: relative;
        }
        
        .profile-image {
            position: relative;
            width: 30rem;
            height: 30rem;
            margin: 0 auto;
        }
        
        .profile-image::before {
            content: '';
            position: absolute;
            inset: -4px;
            background: var(--primary-gradient);
            border-radius: 50%;
            z-index: -1;
            animation: rotate 20s linear infinite;
        }
        
        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid var(--bg-primary);
        }
        
        .about-text h2 {
            font-size: clamp(2.5rem, 4vw, 4rem);
            font-weight: 700;
            margin-bottom: var(--space-lg);
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .about-text p {
            font-size: 1.7rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: var(--space-md);
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
            gap: var(--space-lg);
            margin-top: var(--space-xl);
        }
        
        .stat-item {
            text-align: center;
            padding: var(--space-md);
            background: var(--bg-card);
            border-radius: 20px;
            border: 1px solid var(--border-subtle);
            backdrop-filter: blur(20px);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: block;
        }
        
        .stat-label {
            color: var(--text-muted);
            font-size: 1.3rem;
            margin-top: var(--space-xs);
        }
        
        /* ==========================================================================
           ANIMAÇÕES
           ========================================================================== */
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        
        /* ==========================================================================
           RESPONSIVIDADE
           ========================================================================== */
        
        @media (max-width: 1024px) {
            html {
                font-size: 56.25%;
            }
            
            .nav-links {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            html {
                font-size: 50%;
            }
            
            .container {
                padding: 0 var(--space-md);
            }
            
            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: var(--space-xl);
            }
            
            .profile-image {
                width: 25rem;
                height: 25rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 30rem;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 var(--space-sm);
            }
            
            .theme-toggle {
                top: var(--space-sm);
                right: var(--space-sm);
            }
            
            .stats {
                grid-template-columns: 1fr;
            }
        }
        
        /* ==========================================================================
           SCROLL REVEAL
           ========================================================================== */
        
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
/* ==========================================================================
   SEÇÃO SOBRE MIM
   ========================================================================== */

.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 58, 138, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        gap: 6rem;
    }
}

.profile-image {
    flex: 0 0 auto;
    position: relative;
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
    background: linear-gradient(135deg, #7cb7ff, #1500ff);
    border-radius: 1.5rem;
    z-index: -1;
    opacity: 0.3;
}

.profile-image img {
    width: 100%;
    max-width: 40rem;
    height: auto;
    border-radius: 1.2rem;
    box-shadow: 
        0 2.5rem 5rem -1.5rem rgba(0, 0, 0, 0.4),
        0 1rem 2rem -0.5rem rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
}

.profile-image img:hover {
    transform: scale(1.02);
}

.about-text {
    flex: 1;
    max-width: 60rem;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2.4rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 6rem;
    height: 0.3rem;
    background: linear-gradient(135deg, #60a5fa, #0a3fff);
    border-radius: 0.15rem;
}

.about-text p {
    color: #cbd5e1;
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   SEÇÃO HABILIDADES
   ========================================================================== */

.skills {
    padding: 8rem 0;
    background-color: rgba(15, 23, 42, 0.3);
    position: relative;
}

.skills h2 {
    margin-bottom: 4rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 4rem;
    margin-top: 4rem;
    max-width: 140rem;
    margin-left: auto;
    margin-right: auto;
}

.skill-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(30, 58, 138, 0.1) 100%);
    padding: 4rem 3.5rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(96, 165, 250, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 28rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-1rem);
    box-shadow: 
        0 2.5rem 5rem -1rem rgba(96, 165, 250, 0.25),
        0 1rem 2rem -0.5rem rgba(0, 0, 0, 0.4);
    border-color: rgba(96, 165, 250, 0.4);
}

.skill-card:hover::before {
    opacity: 1;
}

.skill-icon {
    color: #60a5fa;
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.skill-card:hover .skill-icon {
    transform: scale(1.15);
    color: #93c5fd;
}

.skill-card h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    position: relative;
    z-index: 1;
}

.skill-card p {
    color: #cbd5e1;
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
        gap: 3rem;
    }
    
    .skill-card {
        padding: 3.5rem 3rem;
        min-height: 25rem;
    }
    
    .skill-icon {
        font-size: 3.5rem;
    }
    
    .skill-card h3 {
        font-size: 2rem;
    }
    
    .skill-card p {
        font-size: 1.4rem;
    }
}

/* Responsividade para mobile */
@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .skill-card {
        padding: 3rem 2.5rem;
        min-height: 22rem;
    }
    
    .skill-icon {
        font-size: 3.2rem;
        margin-bottom: 1.5rem;
    }
    
    .skill-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .skill-card p {
        font-size: 1.3rem;
        line-height: 1.6;
    }
}
/* ==========================================================================
   SEÇÃO PROJETOS
   ========================================================================== */

.projects {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.projects .container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.projects h2 {
    text-align: center;
    color: #ffffff;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    margin-bottom: 4rem;
    position: relative;
}

.projects h2::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.3rem;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    border-radius: 0.15rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

/* ==========================================================================
   RESPONSIVIDADE APRIMORADA
   ========================================================================== */

@media (max-width: 768px) {
    .about,
    .skills,
    .projects {
        padding: 6rem 0;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skill-card {
        padding: 2rem;
    }
    
    .about-text p {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .about,
    .skills,
    .projects {
        padding: 4rem 0;
    }
    
    .projects .container {
        padding: 0 1rem;
    }
    
    .skill-card {
        padding: 1.5rem;
    }
    
    .about-text h2::after,
    .projects h2::after {
        width: 4rem;
    }
}

/* ==========================================================================
   ANIMAÇÕES E MICRO-INTERAÇÕES
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(3rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skill-card,
.about-text,
.profile-image {
    animation: fadeInUp 0.6s ease-out;
}

.skill-card:nth-child(2) {
    animation-delay: 0.1s;
}

.skill-card:nth-child(3) {
    animation-delay: 0.2s;
}

.skill-card:nth-child(4) {
    animation-delay: 0.3s;
}
/* Cartão de Projeto */
.project-card {
    background-color: #1e293b;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Imagem/Vídeo */
.project-image video,
.project-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Conteúdo */
.project-content {
    padding: 1.5rem;
    color: #e2e8f0;
    flex-grow: 1;
}

.project-content h3 {
    font-size: 1.4rem;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.project-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Links */
.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.project-link:hover {
    color: #3b82f6;
}

/* Swiper.js (Carrossel) */
.swiper-container {
    padding: 2rem 0;
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #f8fafc;
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    background-color: #94a3b8;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #3b82f6;
}

/* Certificados */
.certificates {
    text-align: center;
    padding: 5rem 1rem;
    background-color: #0f172a;
    color: #f1f5f9;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 600px;
    margin: auto;
}

.carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.certificate {
    width: 100%;
    display: none;
}

.certificate.active {
    display: block;
}

button {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2563eb;
}


/* Contato */
.contact {
    padding: 5rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-link {
    color: #60a5fa;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #3b82f6;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: #1f2937;
    border: 1px solid #374151;
    color: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #0f172a;
}

.quote {
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 1rem;
}

.copyright {
    color: #64748b;
    font-size: 0.875rem;
}



/* Tema claro (padrão) */
body.light-mode {
    background-color: #ffffff;
    color: #111111;
}

body.light-mode .nav-link,
body.light-mode .project-link {
    color: #111;
}

body.light-mode .navbar {
    background-color: #f1f1f1;
}

/* Tema escuro */
body.dark-mode {
    background-color: #121212;
    color: #ffffff;
}

body.dark-mode .nav-link,
body.dark-mode .project-link {
    color: #ffffff;
}

body.dark-mode .navbar {
    background-color: #1e1e1e;
}

/* Transição suave */
body {
    transition: background-color 0.3s, color 0.3s;
}

.navbar,
.nav-link,
.project-link {
    transition: background-color 0.3s, color 0.3s;
}

