* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #4a6cf7;
    --secondary: #6a11cb;
    --dark: #1d2144;
    --light: #f5f7fa;
    --gray: #7c7e8d;
    --success: #2ecc71;
    --warning: #f39c12;
    --disabled: #95a5a6;
}

body {
    background: linear-gradient(135deg, var(--dark) 0%, #0f1229 100%);
    color: var(--light);
    line-height: 1.6;
    text-align: center;
    padding-bottom: 30px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 40px 0 20px;
    background: rgba(29, 33, 68, 0.8);
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.tagline {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.perfil {
    display: flex;
    justify-content: center;
    padding: 20px;
    margin: 20px 0 40px;
}

.perfil img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.perfil img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(74, 108, 247, 0.4);
}

section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 30px auto;
    max-width: 9000px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}

.sobre-mim p {
    margin-bottom: 15px;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
}

.sobre-mim a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sobre-mim a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.curriculo-content {
    text-align: left;
}

.curriculo-section {
    margin-bottom: 30px;
}

.curriculo-section h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.curriculo-section h3 i {
    font-size: 1.2rem;
}

.objetivo-detalhes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.objetivo-area {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.objetivo-area:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.objetivo-area h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.objetivo-area p {
    color: var(--gray);
    line-height: 1.6;
}

.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.timeline-content h4 {
    color: var(--light);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 8px;
}

.status-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.concluido {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
    box-shadow: 0 2px 5px rgba(46, 204, 113, 0.2);
}

.status-badge.andamento {
    background-color: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border: 1px solid #3498db;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.2);
}

.status-badge.pendente {
    background-color: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border: 1px solid #f39c12;
    box-shadow: 0 2px 5px rgba(243, 156, 18, 0.2);
}

.experiencia {
    position: relative;
}

.experiencia-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.experiencia-item:last-child {
    border-bottom: none;
}

.experiencia-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.experiencia-item h4 {
    color: var(--light);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.cargo {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.periodo {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-style: italic;
}

.experiencia-item ul {
    padding-left: 20px;
}

.experiencia-item li {
    margin-bottom: 5px;
    color: var(--light);
    position: relative;
}

.experiencia-item li::before {
    content: '▸';
    position: absolute;
    left: -15px;
    color: var(--primary);
}

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

.habilidades-categoria h4 {
    color: var(--light);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.habilidades-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.habilidade-tag {
    background: rgba(74, 108, 247, 0.2);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn {
    display: inline-block;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.4);
    text-decoration: none;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, var(--success), #27ae60);
    margin-top: 20px;
}

.btn-download:hover {
    background: linear-gradient(to right, #27ae60, #219653);
}

.btn.disabled {
    background: var(--disabled);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn.disabled:hover {
    transform: none;
    box-shadow: none;
    background: var(--disabled);
}

.tecEFer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 20px;
}

.tecEFer img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: contain;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tecEFer img:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3);
}

.projetos-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.projeto-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;

}

.projeto-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.projeto-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.projeto-card p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.projeto-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.projeto-card .tag {
    background: rgba(74, 108, 247, 0.2);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.projeto-card .btn {
    display: inline-block;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.projeto-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.4);
    text-decoration: none;
}

.contato {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contato a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contato a:hover {
    transform: translateY(-5px);
    background: var(--primary);
}

footer {
    margin-top: 50px;
    padding: 20px;
    color: var(--gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 20px;
        margin: 20px 10px;
    }

    .objetivo-detalhes {
        grid-template-columns: 1fr;
    }

    .habilidades {
        grid-template-columns: 1fr;
    }

    .tecEFer {
        gap: 15px;
    }

    .tecEFer img {
        width: 60px;
        height: 60px;
    }

    .projetos-container {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 5px;
    }

    .timeline-item {
        padding-left: 25px;
    }

    .timeline-item::before {
        left: -2px;
    }

    .status-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .status-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .experiencia-item {
        padding-left: 15px;
    }
}

.projeto-card,
.objetivo-area,
section {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

h2 {
    background: linear-gradient(90deg, var(--primary), #9d4edd, var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

.btn {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(74, 108, 247, 0.5);
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.btn:hover::after {
    left: 140%;
}

.btn-secundario {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    display: block;
    width: 100%;
}

.tecEFer img {
    transition: all 0.5s ease;
}

.tecEFer img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(106, 17, 203, 0.4);
}

.sobre-mim p,
.curriculo-section p,
.experiencia-item li {
    line-height: 1.7;
    color: rgba(245, 247, 250, 0.9);
}

@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }

    .projetos-container {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
    }
}

.projetos-container {
    display: none !important;
}

.projetos-slider {
    margin: 40px 0;
    position: relative;
}

.projetos-slider .slick-list {
    overflow: hidden;
    padding: 20px 0 40px 0 !important;
    margin: 0 -15px;
}

.projetos-slider .slick-slide {
    padding: 0 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.projetos-slider .slick-slide.slick-active {
    opacity: 1;
}

.projetos-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.projetos-slider .projeto-card {
    height: auto;
    min-height: 380px;
    display: flex !important;
    flex-direction: column;
    margin: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.projetos-slider .projeto-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(74, 108, 247, 0.25);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 50px;
    background: rgba(29, 33, 68, 0.95);
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 108, 247, 0.5);
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-prev:before {
    content: '←';
    font-size: 24px;
    font-weight: bold;
}

.slick-next:before {
    content: '→';
    font-size: 24px;
    font-weight: bold;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: white;
}
.projetos-slider .projeto-card h3 {
    min-height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
}

.projetos-slider .projeto-card p {
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    color: rgba(245, 247, 250, 0.9);
}

.projetos-slider .projeto-card .tags {
    margin-bottom: 20px;
    min-height: 40px;
}

.projetos-slider .projeto-card .btn {
    margin-top: auto;
    margin-bottom: 5px;
}

.projetos-slider .projeto-card .btn-secundario {
    margin-top: 8px;
}

@media (max-width: 1200px) {
    .slick-prev {
        left: -15px;
    }

    .slick-next {
        right: -15px;
    }
}

@media (max-width: 992px) {
    .projetos-slider .projeto-card {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .projetos-slider {
        padding: 0 30px;
    }

    .slick-prev {
        left: -5px;
    }

    .slick-next {
        right: -5px;
    }

    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 20px;
    }

    .projetos-slider .slick-list {
        padding: 15px 0 30px 0 !important;
    }

    .projetos-slider .projeto-card {
        min-height: 420px;
    }
}

@media (max-width: 576px) {
    .projetos-slider {
        padding: 0 25px;
        margin: 30px -10px;
    }

    .slick-prev,
    .slick-next {
        width: 35px;
        height: 35px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 18px;
    }
    
    .projetos-slider .slick-slide {
        padding: 0 10px;
    }

    .projetos-slider .projeto-card {
        min-height: 450px;
        padding: 15px;
    }

    .projetos-slider .projeto-card h3 {
        font-size: 1.2rem;
        min-height: 50px;
    }

    .projetos-slider .projeto-card p {
        font-size: 0.95rem;
    }
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-slide {
    float: none;
    display: inline-block;
    vertical-align: top;
}

section.projetos .projetos-container {
    display: none;
}