@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@800;900&display=swap');
/* Variáveis */
:root {
    --primary-color: #202D53;
    --secondary-color: #FCFAE6;
    --text-color: #333;
    --white: #fff;
    --black: #000;
}

/* Reset e Tipografia */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navbar Transparente */
.header.transparent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 220px;
}

.header__logo i {
    color: white;
    font-size: 2rem;
}

/* Itens da Navbar (Desktop) */
.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navbar-menu li {
    margin-left: 40px;
}

.navbar-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-menu li a:hover {
    color: #f0f0f0;
}

.navbar-menu li.active a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
}

/* Botão Hamburguer (Mobile) - Inicialmente oculto */
.burger-menu {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
}

.burger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    left: 0;
    transition: all 0.3s ease;
}

.burger-menu span:first-child {
    top: 0;
}

.burger-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

/* Menu Overlay (Mobile) - Inicialmente oculto */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1050;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: flex;
    opacity: 1;
}

.nav-content {
    text-align: center;
    width: 90%;
    max-width: 500px;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.nav-menu li {
    margin-bottom: 0px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.close-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    top: 50%;
    left: 0;
}

.close-menu span:first-child {
    transform: rotate(45deg);
}

.close-menu span:nth-child(2) {
    transform: rotate(-45deg);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Video Hero */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.video-hero-content {
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

.video-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.video-hero-content h4 {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Efeito de digitação */
.typing-text {
    border-right: 2px solid white;
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: white; }
}

/* Efeito de scroll */
.header.scrolled {
    background: rgb(0, 0, 0) !important;
    padding: 10px 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .navbar-menu {
        display: none;
    }
    
    .burger-menu {
        display: block;
    }
    
    .video-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .video-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .video-hero {
        height: 90vh;
    }
}

@media (max-width: 576px) {
    .video-hero-content h1 {
        font-size: 2rem;
    }
    
    .video-hero-content h4 {
        font-size: 1rem;
    }
}

.banner-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.typing-text {
    position: relative;
}

.typing-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Mini Banner */
.mini-banner {
    background-color: var(--black);
    padding: 15px 0;
    position: sticky;
    top: 90px;
    z-index: 999;
    transition: all 0.3s ease;
}

.mini-banner .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--secondary-color);
}

.mini-banner strong {
    font-weight: 800;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
}

/* Sections comuns */
section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
}

h2 {
    font-size: 3rem;
    margin-bottom: 50px;
}

h2 span {
    color: var(--primary-color);
}

/* Seção Experts */
.experts-section {
    padding: 80px 0;
}

/* Seção Serviços */
.services-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.service-item {
    margin-bottom: 30px;
    text-align: left;
}

.service-item img {
    max-width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.service-item h3 {
    color: var(--black);
    font-weight: 800;
}

.discover-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    margin-top: 30px;
}

.discover-link i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.discover-link:hover i {
    transform: translateX(5px);
}

/* Seção Diferenças */
.differences-section {
    padding: 80px 0;
}

.text-content {
    background-color: var(--white);
    border: 2px solid var(--black);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
    margin-bottom: 0;
}

.benefit-item {
    background-color: #f8f8f8;
    border-radius: 4rem;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.benefit-item img {
    max-width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.btn-dark {
    background-color: var(--black);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    margin-top: 20px;
}

/* Seção Talentos */
.talent-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.benefits-row {
    margin-top: 50px;
}

.benefit-card {
    margin-bottom: 30px;
}

.card-content {
    padding: 30px;
    height: 100%;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-top {
    margin-bottom: 40px;
}

.footer h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo i {
    font-size: 2rem;
    color: var(--white);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
    font-weight: 800;
}

.copyright {
    font-size: 0.9rem;
    font-weight: 800;
}

[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

[data-animate].animate-in {
    opacity: 1;
    transform: translate(0, 0) !important;
}

[data-animate].animate-out {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Direções específicas */
[data-animate="left"] {
    transform: translateX(-50px);
}

[data-animate="right"] {
    transform: translateX(50px);
}

[data-animate="up"] {
    transform: translateY(50px);
}

[data-animate="down"] {
    transform: translateY(-50px);
}

/* Typing Effect */
.typing-text {
    position: relative;
    display: inline-block;
}

.typing-text.typing-active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Mini-banner sticky effect */
.mini-banner {
    transition: all 0.3s ease;
}

/* Responsividade */
@media (max-width: 992px) {
    .nav-overlay {
        width: 50%;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .col-md-6.col-lg-3 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .nav-overlay {
        width: 80%;
    }
    
    .service-item img {
        max-width: 60px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .service-item a {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }
    
    .banner-hero {
        padding: 150px 0 100px;
        min-height: 60vh;
    }
    
    .banner-hero h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .mini-banner {
        top: 70px;
    }
    
    .benefit-item {
        flex: 1 1 100%;
    }
    
    .benefit-item {
        border-radius: 3rem;
        padding: 20px;
    }
    
    .services-section .row {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .service-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
        margin-bottom: 0;
    }
    
    .service-item h3 {
        margin-top: 0;
    }
    
    .talent-section .btn-dark {
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        width: fit-content;
    }
    
    .footer-top {
        text-align: center;
    }
    
    .footer-top .col-md-6:first-child {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .footer-top .col-md-6:last-child {
        text-align: center;
    }
    
    .footer-top .col-md-6:last-child p {
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 1.5rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        margin: 1.5rem 0;
    }
    
    .footer-links a {
        margin: 0.5rem 0;
    }
    
    .copyright {
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .nav-overlay {
        width: 100%;
    }
    
    .banner-hero h1 {
        font-size: 2rem;
    }
    
    .mini-banner .content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-top {
        display: flex;
        flex-direction: column;
    }
    
    .footer-top .col-md-6 {
        width: 100%;
    }
    
    .footer-top .col-md-6:first-child {
        order: 1;
    }
    
    .footer-top .col-md-6:last-child {
        order: 2;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        margin: 0.5rem 0;
    }
}

/* Additional Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from { 
        opacity: 0;
        transform: translateX(-30px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth transitions for interactive elements */
a, button, .btn-white, .btn-dark {
    transition: all 0.3s ease;
}

/* Button hover effects */
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Estilos para o mini-banner corrigido */
.mini-banner {
    position: sticky;
    top: 70px; /* Ajuste conforme a altura do header */
    z-index: 999;
    transition: all 0.3s ease;
}

.mini-banner.sticky-active {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Garante que o conteúdo não fique escondido atrás do mini-banner fixo */
section:first-of-type {
    padding-top: 60px;
}
