/* Reseta alguns estilos padrão para uniformidade */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #F0F0F5; /* Cinza Claro para o texto */
    background-color: #1D3557; /* Azul Marinho para o fundo principal */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Estilos para o cabeçalho */
header {
    background-color: #1D3557; /* Azul Marinho no cabeçalho */
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #B8860B; /* Dourado Suave no hover dos links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid #B8860B;
}

header nav ul li a:hover {
    color: #B8860B; /* Dourado mais suave */
    border-bottom: 2px solid #B8860B; /* Linha dourada no hover */
}

.logo-overlay {
    animation: fadeIn 2s ease-in-out; /* Animação de 2 segundos */
    position: absolute;
    top: 30%; /* Ajuste a posição vertical do logo */
    left: 50%; /* Centraliza o logo horizontalmente */
    transform: translate(-50%, -20%); /* Mantém o logo centralizado */
    max-width: 250px; /* Tamanho do logo */
    opacity: 0.85; /* Transparência para dar elegância */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Suave transformação */
}

.logo-overlay:hover {
    opacity: 1; /* Deixa o logo mais visível ao passar o mouse */
    transform: translate(-50%, -20%) scale(1.1); /* Aumenta levemente o logo no hover */
}

/* Banner hero com efeito parallax */
.hero-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    height: 100vh;
    background: linear-gradient(135deg, #1D3557, #2A9D8F); /* Gradiente Azul Marinho para Verde Escuro */
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFFFFF; /* Texto em branco para contraste */
}

.banner-content p {
    font-size: 1.5rem;
    color: #F0F0F5; /* Cinza Claro */
}

/* Seção do carrossel de vídeos */
.video-carousel {
    display: flex;
    overflow: hidden;
    padding: 20px;
    gap: 20px;
    scroll-behavior: smooth;
    background-color: #333; /* Fundo mais escuro */
}

.video-item {
    flex: 0 0 300px;
    position: relative;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    background-color: #2A9D8F; /* Verde Escuro nos itens do carrossel */
}

.video-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.video-item:hover {
    transform: scale(1.1); /* Zoom suave no hover */
    box-shadow: 0 8px 16px rgba(72, 61, 139, 0.4); /* Sombra com azul escuro */
}

.video-item:hover .hover-text {
    opacity: 1;
    transform: translateY(0);
}

.hover-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 1.2rem;
    color: #fff;
    opacity: 0; /* Invisível inicialmente */
    transform: translateY(20px); /* Texto deslocado */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Animação de transição */
}

.video-item::before, .video-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #B8860B; /* Dourado suave nas linhas animadas */
    transition: width 0.5s ease; /* Transição mais suave */
}

.video-item::before {
    top: 0;
    left: 0;
}

.video-item::after {
    bottom: 0;
    right: 0;
}

.video-item:hover::before, .video-item:hover::after {
    width: 100%; /* Animação para aumentar a largura da linha */
}

/* Seção de descrição */
.description {
    padding: 50px;
    text-align: center;
    background-color: #1D3557; /* Azul Marinho no fundo da descrição */
}

.description h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #F0F0F5; /* Cinza Claro para os títulos */
}

.description p {
    font-size: 1.2rem;
    color: #666;
}

/* Estilo para os Títulos do Currículo */
h2 {
    font-size: 1.3em; /* Tamanho dos títulos menor */
    margin-top: 25px; /* Espaço antes de cada título */
    color: #F0F0F5;
}

/* Estilo dos Parágrafos do Currículo */
.curriculo-content p {
    margin-bottom: 20px; /* Espaço entre os parágrafos */
}

/* Estilos para o botão */
.btn {
    display: inline-block;
    background-color: #4682B4; /* Azul suave no hover */
    color: #FFFFFF; /* Texto branco */
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    border: 2px solid #FFC857; /* Bordas Dourado Suave */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #FFC857; /* Dourado Suave no hover */
    transform: scale(1.05);
}

/* Seção de parallax */
.parallax-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    height: 100vh;
    background: linear-gradient(135deg, #1D3557, #2A9D8F); /* Azul Marinho para Verde Escuro */
    background-attachment: fixed;
    opacity: 0.8;
}

/* Estilos para os ícones de redes sociais no rodapé com microinterações */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-links a {
    margin: 0 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.social-links a:hover {
    transform: scale(1.5); /* Aumenta o tamanho ao passar o mouse */
    filter: brightness(1.5); /* Deixa o ícone mais brilhante */
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .hero {
        padding: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .description {
        padding: 20px;
    }

    header nav ul {
        flex-direction: column;
    }

    header nav ul li {
        margin-bottom: 10px;
    }
}
