/* Ícones para redes sociais e WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
    transform: scale(1.1);
}

/* Ícones de redes sociais no rodapé */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

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

/* Melhorias para o menu de navegação */
.header {
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
}

.logo a {
    font-weight: 700;
    letter-spacing: 1px;
}

.main-nav ul li a {
    position: relative;
    padding: 5px 0;
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover:after {
    width: 100%;
}

/* Melhorias para a seção hero */
.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.logo-large {
    max-width: 300px;
    margin: 0 auto 40px;
}

.hero-title {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-saiba-mais {
    margin-top: 40px;
    padding: 15px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Melhorias para a seção Quem Somos */
.quem-somos {
    position: relative;
}

.quem-somos:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), transparent);
}

.quem-somos .section-title {
    position: relative;
    padding-bottom: 15px;
}

.quem-somos .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.content-wrapper {
    margin-top: 40px;
}

.socia-fundadora {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.foto-socia img {
    border: 3px solid var(--primary-color);
}

.bio-socia h3 {
    color: var(--primary-color);
}

.quote {
    position: relative;
    font-style: italic;
    padding: 30px 40px;
}

.quote:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: var(--font-primary);
}

/* Melhorias para a seção Banco de Currículos */
.curriculos {
    position: relative;
}

.curriculo-form {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.curriculo-form .form-group label {
    margin-bottom: 8px;
    font-weight: 500;
}

.curriculo-form .btn-submit {
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Melhorias para a seção Newsletter */
.newsletter {
    position: relative;
}

.newsletter-form {
    position: relative;
    max-width: 500px;
}

.newsletter-form input {
    height: 50px;
    padding-right: 50px;
    font-size: 16px;
}

.newsletter-form .btn-submit {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Melhorias para o rodapé */
.footer {
    position: relative;
    padding: 40px 0 20px;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-light), transparent);
}

.endereco, .cnpj {
    max-width: 600px;
    margin: 0 auto;
}

.copyright {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}
