/* ==================== VARIÁVEIS ==================== */
:root {
    --cor-primaria: #1e40af;
    /* Azul industrial */
    --cor-secundaria: #3b82f6;
    /* Azul claro */
    --cor-destaque: #059669;
    /* Verde (disponível) */
    --cor-texto: #1f2937;
    --cor-texto-claro: #6b7280;
    --cor-fundo: #ffffff;
    --cor-fundo-cinza: #f3f4f6;
    --cor-borda: #e5e7eb;
    --sombra: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --sombra-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.6;
    padding-bottom: 100px;
    /* Espaço para os botões flutuantes não cobrirem conteúdo */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== BOTÕES FLUTUANTES FIXOS ==================== */
/* Estes são os botões mais importantes - ficam FIXOS na tela */
.botoes-flutuantes {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 9999;
    /* Fica acima de TUDO */
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.btn-flutuante {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-flutuante i {
    font-size: 1.2rem;
}

/* Botão WhatsApp - Verde */
.btn-whatsapp {
    background-color: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Botão Currículo - Vermelho/PDF */
.btn-curriculo {
    background-color: #dc2626;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-curriculo:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* ==================== NAVEGAÇÃO ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--cor-fundo);
    box-shadow: var(--sombra);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-primaria);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--cor-texto-claro);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--cor-primaria);
}

.hamburguer {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburguer span {
    width: 25px;
    height: 3px;
    background-color: var(--cor-texto);
    transition: all 0.3s;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--cor-fundo) 0%, var(--cor-fundo-cinza) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    color: var(--cor-destaque);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--cor-destaque);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--cor-texto);
    line-height: 1.2;
}

.hero-job {
    font-size: 1.5rem;
    color: var(--cor-primaria);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--cor-texto-claro);
}

.info-item i {
    color: var(--cor-primaria);
    width: 20px;
}

.disponibilidade-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #d1fae5;
    color: var(--cor-destaque);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--cor-destaque);
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--cor-destaque);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.profile-img {
    width: 250px;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--sombra-lg);
    border: 5px solid white;
}

/* ==================== SEÇÕES ==================== */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--cor-texto);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--cor-primaria);
    border-radius: 2px;
}

/* ==================== SOBRE ==================== */
.sobre {
    background-color: var(--cor-fundo-cinza);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.sobre-texto p {
    margin-bottom: 1.5rem;
    color: var(--cor-texto-claro);
    line-height: 1.8;
    font-size: 1.05rem;
}

.destaque-box {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--sombra);
    margin-top: 2rem;
    border-left: 4px solid var(--cor-primaria);
}

.destaque-box h3 {
    color: var(--cor-primaria);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destaque-box ul {
    list-style: none;
}

.destaque-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--cor-texto-claro);
}

.destaque-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cor-destaque);
    font-weight: bold;
}

/* Dados Pessoais */
.dados-pessoais {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--sombra);
    height: fit-content;
}

.dados-pessoais h3 {
    margin-bottom: 1.5rem;
    color: var(--cor-primaria);
    font-size: 1.3rem;
}

.dado-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cor-borda);
}

.dado-item:last-child {
    border-bottom: none;
}

.dado-label {
    font-weight: 600;
    color: var(--cor-texto-claro);
}

.dado-valor {
    color: var(--cor-texto);
    text-align: right;
}

.dado-valor.destaque {
    color: var(--cor-destaque);
    font-weight: 700;
}

/* ==================== OBJETIVO ==================== */
.objetivo-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.objetivo-card {
    background-color: var(--cor-fundo-cinza);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
}

.objetivo-card:hover {
    transform: translateY(-5px);
}

.objetivo-card i {
    font-size: 2.5rem;
    color: var(--cor-primaria);
    margin-bottom: 1rem;
}

.objetivo-card h3 {
    margin-bottom: 0.5rem;
    color: var(--cor-texto);
}

.objetivo-card p {
    color: var(--cor-texto-claro);
    font-size: 0.95rem;
}

.carta-apresentacao {
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--sombra);
    border-left: 4px solid var(--cor-destaque);
}

.carta-apresentacao h3 {
    color: var(--cor-destaque);
    margin-bottom: 1rem;
}

.carta-apresentacao p {
    color: var(--cor-texto-claro);
    line-height: 1.8;
    font-style: italic;
}

/* ==================== QUALIFICAÇÕES ==================== */
.qualificacoes {
    background-color: var(--cor-fundo-cinza);
}

.qualificacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.qualificacao-categoria {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--sombra);
}

.qualificacao-categoria h3 {
    color: var(--cor-primaria);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Barras de habilidade */
.habilidade-item {
    margin-bottom: 1.5rem;
}

.habilidade-nome {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--cor-texto);
}

.habilidade-barra {
    height: 10px;
    background-color: var(--cor-fundo-cinza);
    border-radius: 5px;
    overflow: hidden;
}

.habilidade-progresso {
    height: 100%;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria));
    border-radius: 5px;
    transition: width 1s ease-out;
}

/* Tags de conhecimento */
.conhecimento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background-color: #dbeafe;
    color: var(--cor-primaria);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.cursos-complementares h4 {
    margin-bottom: 1rem;
    color: var(--cor-texto);
}

.cursos-complementares ul {
    list-style: none;
}

.cursos-complementares li {
    padding: 0.5rem 0;
    color: var(--cor-texto-claro);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cursos-complementares i {
    color: var(--cor-destaque);
}

/* Idiomas */
.idioma-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cor-borda);
}

.idioma-nome {
    font-weight: 600;
}

.idioma-nivel {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.idioma-nivel.nativo {
    background-color: #d1fae5;
    color: var(--cor-destaque);
}

.idioma-nivel.basico {
    background-color: #fef3c7;
    color: #d97706;
}

/* ==================== CONTATO ==================== */
.contato-simples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contato-card {
    background-color: var(--cor-fundo-cinza);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-lg);
}

.contato-card i {
    font-size: 2.5rem;
    color: var(--cor-primaria);
    margin-bottom: 1rem;
}

.contato-card h3 {
    margin-bottom: 0.5rem;
    color: var(--cor-texto);
}

.contato-card p {
    color: var(--cor-texto-claro);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contato-destaque {
    color: var(--cor-destaque);
    font-size: 0.85rem;
    font-weight: 700;
}

.cta-final {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    border-radius: 16px;
    color: white;
}

.cta-final h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-final p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.horario-atendimento {
    font-weight: 600;
    opacity: 1 !important;
    margin-top: 1rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--cor-texto);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.atualizacao {
    font-size: 0.9rem;
    opacity: 0.6 !important;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 100px;
    /* Acima dos botões flutuantes */
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--cor-texto-claro);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--sombra-lg);
    transition: all 0.3s;
    z-index: 9998;
}

.back-to-top:hover {
    background-color: var(--cor-secundaria);
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

/* ==================== ANIMAÇÕES ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 768px) {

    /* Ajusta botões flutuantes no mobile */
    .botoes-flutuantes {
        position: fixed;
        bottom: 20px;
        left: 49%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 9999;
        /* Fica acima de TUDO */
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 50px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
    }

    .btn-flutuante {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.80rem;
        transition: all 0.3s;
        white-space: nowrap;
    }

    .btn-flutuante i {
        font-size: 0.5rem;
    }

    /* Navegação mobile */
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--cor-fundo);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: var(--sombra);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburguer {
        display: flex;
    }

    /* Hero mobile */
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-job {
        font-size: 1.2rem;
    }

    .profile-img {
        width: 200px;
        height: 250px;
        margin: 0 auto;
    }

    /* Grid mobile */
    .sobre-content,
    .objetivo-content,
    .qualificacoes-grid,
    .contato-simples {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Ajusta padding do body para não cobrir conteúdo com botões */
    body {
        padding-bottom: 80px;
    }

    /* Ajusta botão voltar ao topo */
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}