 @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

 /* --- Variáveis de Cores --- */
        :root {
            --primary-red: #C60014;
            --cream-bg: #FCF9F4;
            --text-dark: #333333;
        }

        /* --- Reset Básico --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
             font-family: "Lato", sans-serif;
            background-color: var(--cream-bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- Header / Navegação --- */
        header {
            display: flex;
            align-items: center;
            justify-content: flex-start; 
            padding: 20px 15%;
            background-color: transparent;
            position: absolute;
            width: 100%;
            top: 0;
            z-index: 100;
        }

        .logo {
           width: 120px;
           display: block;
        }

        /* Container da navegação */
        nav {

            margin-left: 100px; 
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--primary-red);
        }

        /* --- Menu Hambúrguer (Escondido no Desktop) --- */
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            transition: all 0.3s ease-in-out;
            background-color: var(--text-dark);
        }

        /* --- Hero Section --- */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 100vh;
            padding: 0 15%; /* Aumentado de 8% para 15% para alinhar com o header */
            background-image: url('../assets/background-white.png'); 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-content {
            max-width: 50%;
        }

        .hero-name {
            font-size: 1.8rem;
            font-weight: 300;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .hero-title {
            font-family: "Bebas Neue", sans-serif;
            font-weight: 400;
            font-size: 2.8rem;
            color: var(--primary-red);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-quote {
            font-style: italic;
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 40px;
            border-left: 3px solid var(--primary-red);
            padding-left: 15px;
        }

        .btn-cta {
            display: inline-block;
            background-color: var(--primary-red);
            color: #fff;
            padding: 15px 60px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(198, 0, 20, 0.3);
            transition: transform 0.2s, background-color 0.2s;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            background-color: #a30010;
        }

        .hero-image-container {
            position: relative;
            width: 450px;
            height: 450px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 8px solid var(--primary-red);
            padding: 5px;
            background-color: white;
        }

        /* --- About Section --- */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 15%;
    /* Usa o background vermelho solicitado */
    background-image: url('../assets/background-grey.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Ajusta a cor do texto para claro (cream-bg) para contrastar com o vermelho */
    color: var(--cream-bg); 
}

.about-content {
    max-width: 50%;
}

.about-title {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 2.8rem;
    /* Título em branco/creme */
    color: var(--cream-bg); 
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-image-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    /* Borda clara para combinar com o tema vermelho */
    border: 8px solid var(--cream-bg); 
    padding: 5px;
    background-color: transparent;
}

/* --- Responsividade da Section About (Mobile) --- */
@media (max-width: 768px) {
    .about {
        flex-direction: column; /* Empilha: Imagem em cima, Texto embaixo */
        justify-content: center;
        text-align: center;
        padding: 80px 5%;
        gap: 40px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-image-container {
        width: 280px;
        height: 280px;
    }

    .about-title {
        font-size: 2rem;
    }
}

/* --- Experience Section --- */
.experience {
    padding: 80px 15%;
    min-height: 100vh;
    background-image: url('../assets/background-red.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    color: var(--cream-bg);
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 2px;
}

/* Container dos Cards */
.cards-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap; /* Permite quebrar linha se a tela for menor */
}

/* Estilo Individual do Card */
.card {
    background-color: #fff;
    flex: 1; /* Faz os cards ocuparem largura igual */
    min-width: 300px; /* Garante que não fiquem muito estreitos */
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra suave */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #6A6C6E; /* Detalhe colorido no topo */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.card:hover {
    transform: translateY(-10px); /* Sobe um pouco ao passar o mouse */
    box-shadow: 0 15px 40px rgba(198, 0, 20, 0.15);
}

/* Ícone dentro do Card */
.icon-box {
    font-size: 2.5rem;
    color: var(#6a6c6e);
    margin-bottom: 20px;
}

.card h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.card ul {
    list-style: none; /* Remove bolinhas padrão */
    padding: 0;
    width: 100%;
}

.card li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px; /* Espaço para o marcador personalizado */
}

/* Marcador personalizado (pequeno traço vermelho) antes de cada item */
.card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 2px;
    background-color: var(--primary-red);
}

/* --- Responsividade Experience (Mobile) --- */
@media (max-width: 992px) {
    .cards-container {
        flex-direction: column; /* Empilha os cards */
        align-items: center;
    }

    .card {
        width: 100%; /* Card ocupa largura total no mobile */
        max-width: 500px;
    }
    
    .experience {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
}

/* --- Project Section --- */
.project-section {
    padding: 100px 15%;
    min-height: 80vh; /* Altura um pouco menor que as outras para foco no texto */
    /* Define o fundo cinza. Fallback #f4f4f4 caso a imagem não carregue */
    background: #f4f4f4 url('../assets/background-grey.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.project-content {
    max-width: 900px; /* Limita a largura para o texto não ficar cansativo */
    background-color: rgba(255, 255, 255, 0.8); /* Fundo branco translúcido sutil para leitura */
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

#project-section-title {
    color: var(--primary-red);
}

.project-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: justify; /* Texto justificado para ar mais acadêmico/sério */
}

/* Ajuste específico para o botão nesta seção */
.btn-download {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
}

/* --- Responsividade Project Section (Mobile) --- */
@media (max-width: 768px) {
    .project-section {
        padding: 60px 5%;
    }

    .project-content {
        padding: 30px 20px;
    }

    .project-text {
        font-size: 1rem;
        text-align: left; /* No mobile, justificado pode criar buracos, left é melhor */
    }
}

/* --- Contact Section --- */
.contact {
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o conjunto na tela */
    gap: 80px; /* Espaço entre o logo e o texto */
    min-height: 80vh;
    padding: 0 15%;
    background-image: url('../assets/background-white.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-logo-container {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Joga o logo para perto do texto */
}

.contact-logo {
    max-width: 350px; /* Controla o tamanho do logo */
    width: 100%;
    height: auto;
    /* Opcional: Adiciona uma sombra suave no logo se ele for transparente */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinha o texto à esquerda */
}

.contact-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    color: var(--primary-red);
    font-size: 1.5rem;
    width: 30px; /* Garante alinhamento dos ícones */
    text-align: center;
}

.info-item a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--primary-red);
}

/* Ajuste específico para o botão do WhatsApp */
.btn-whatsapp {
    margin-top: 20px;
    align-self: flex-start; /* Garante que o botão não estique a largura toda */
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

/* --- Responsividade Contact Section (Mobile) --- */
@media (max-width: 992px) {
    .contact {
        flex-direction: column;
        text-align: center;
        padding: 80px 5%;
        gap: 40px;
    }

    .contact-logo-container {
        justify-content: center;
        order: 1; /* Garante ordem visual se necessário */
    }

    .contact-logo {
        max-width: 200px; /* Logo menor no celular */
    }

    .contact-content {
        align-items: center; /* Centraliza tudo no mobile */
        order: 2;
        width: 100%;
    }

    .info-item {
        justify-content: center; /* Centraliza ícone e texto */
        font-size: 1.1rem;
    }

    .btn-whatsapp {
        align-self: center; /* Botão centralizado no mobile */
    }
}

        /* --- Footer --- */
        footer {
            background-color: var(--primary-red);
            color: var(--cream-bg);
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
        }

        /* --- Responsividade (Mobile) --- */
        @media (max-width: 768px) {
            header {
                padding: 20px 5%; /* Reduz a borda no celular */
                justify-content: space-between; /* Volta a separar logo e menu no mobile */
            }

            /* Reseta a margem da navegação no mobile */
            nav {
                margin-left: 0; 
            }

            /* Mostra o ícone do hambúrguer */
            .hamburger {
                display: block;
                z-index: 101; /* Fica acima do menu aberto */
            }

            /* Animação do Hamburger quando ativo */
            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            /* Menu Escondido / Mobile Drawer */
            nav ul {
                position: fixed;
                left: -100%; /* Começa escondido fora da tela */
                top: 0;
                flex-direction: column;
                background-color: var(--cream-bg);
                width: 100%;
                height: 100vh; /* Altura total */
                text-align: center;
                transition: 0.3s;
                padding-top: 100px; /* Espaço para não ficar em cima do logo */
                box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            }

            /* Quando a classe 'active' é adicionada via JS, o menu entra */
            nav ul.active {
                left: 0;
            }

            nav li {
                margin: 20px 0;
            }
            
            nav a {
                font-size: 1.2rem; /* Links maiores no mobile */
            }

            /* Ajustes da Hero no Mobile */
            .hero {
                flex-direction: column-reverse;
                justify-content: center;
                text-align: center;
                padding: 120px 5% 40px 5%; /* Mais padding no topo por causa do menu fixed se necessário */
                gap: 40px;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-quote {
                border-left: none;
                padding-left: 0;
            }

            .hero-image-container {
                width: 280px;
                height: 280px;
            }
        }