/* Fontes */
@font-face {
    font-family: 'Clear Sans Leve';
    src: url('../fonts/Clear-Sans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Balgin';
    src: url('../fonts/balgin-extralight-condensed.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: block;
}

/* Reset e Estilos Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Clear Sans Leve', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Clear Sans Leve', sans-serif;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: #000000;
    transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

a:hover {
    opacity: 1;
}

ul {
    list-style: none;
}

img {
    height: auto;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.divider {
    width: 40px;
    height: 1px;
    background-color: #333333;
    margin-bottom: 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #FFFFFF;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 60px;
}

.logo {
    display: block;
}

.logo-symbol {
    width: 40px;
    height: auto;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin: 0 20px;
}

.main-nav a {
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 14px;
    opacity: 0.8;
}

.main-nav a:hover {
    opacity: 1;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid #000000;
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn-login:hover {
    background-color: #333333;
    color: #FFFFFF;
}

.btn-conceito {
    width: 200px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 18px;
    position: relative;
}

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

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 8px;
}

.menu-toggle span:nth-child(3) {
    top: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    filter: brightness(0.8);
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.hero .subtitle {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 0.9;
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.4s forwards;
}

.hero .divider {
    background-color: #CCCCCC;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
}

.cta-scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 16px;
    opacity: 0.8;
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
}

.arrow-down {
    width: 16px;
    height: 16px;
    margin-top: 8px;
    border-right: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    transform: rotate(45deg);
}

/* Conceito Section */
.conceito {
    padding: 120px 0;
}

.conceito h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.text-main {
    width: 60%;
    margin-bottom: 60px;
}

.keywords-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.keyword {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon {
    width: 24px;
    height: 24px;
    margin-bottom: 16px;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.keyword:hover .icon {
    transform: scale(1.05);
    opacity: 1;
}

.icon::before,
.icon::after {
    content: '';
    position: absolute;
    background-color: #333333;
}

.icon-comunidade::before {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #333333;
    top: 0;
    left: 0;
}

.icon-comunidade::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #333333;
    top: 8px;
    left: 8px;
}

.icon-conexao::before {
    width: 10px;
    height: 1px;
    transform: rotate(45deg);
    top: 12px;
    left: 3px;
}

.icon-conexao::after {
    width: 10px;
    height: 1px;
    transform: rotate(-45deg);
    top: 12px;
    right: 3px;
}

.icon-compartilhamento::before {
    width: 16px;
    height: 16px;
    border: 1px solid #333333;
    top: 4px;
    left: 4px;
}

.icon-compartilhamento::after {
    width: 8px;
    height: 8px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    top: 8px;
    right: 4px;
    transform: rotate(45deg);
}

.icon-crescimento::before {
    width: 1px;
    height: 24px;
    top: 0;
    left: 12px;
}

.icon-crescimento::after {
    width: 24px;
    height: 1px;
    top: 12px;
    left: 0;
}

.keyword span {
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 20px;
}

/* Benefícios Section */
.beneficios {
    padding: 120px 0;
    background-color: #F5F5F5;
}

.beneficios h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.beneficio {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.beneficio:nth-child(2) {
    animation-delay: 0.1s;
}

.beneficio:nth-child(3) {
    animation-delay: 0.2s;
}

.numero {
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 24px;
    color: #333333;
    margin-bottom: 16px;
}

.beneficio h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.beneficio p {
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 120px 0;
}

.cta-logo {
    font-family: 'Balgin', sans-serif;
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    line-height: 1;
}

.cta-arch {
    color: #000000;
}

.cta-group {
    color: #999999;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.cta .btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid #000000;
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    max-width: 200px;
}

.btn-cta:hover {
    background-color: #333333;
    color: #FFFFFF;
}

/* Footer */
.separator {
    width: 100%;
    height: 1px;
    background-color: #EEEEEE;
    margin-bottom: 40px;
}

.footer {
    padding: 60px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hero-logo {
    font-family: 'Balgin', sans-serif;
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-top: -60px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}

.hero-logo .arch-part {
    color: #000000;
}

.hero-logo .group-part {
    color: #FFFFFF;
}

.footer-nav ul {
    display: flex;
}

.footer-nav li {
    margin: 0 20px;
}

.footer-nav a {
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 14px;
    opacity: 0.8;
}

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

.social-link {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.social-instagram::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z' fill='%23000000'/%3E%3C/svg%3E");
}

.social-linkedin::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z' fill='%23000000'/%3E%3C/svg%3E");
}

.social-whatsapp::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884-.001 2.225.651 3.891 1.746 5.634l-.999 3.648 3.742-.981zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z' fill='%23000000'/%3E%3C/svg%3E");
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #999999;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Media Queries */
@media (max-width: 1199px) {
    .container {
        width: 90%;
    }

    .header .container {
        padding: 0 40px;
    }

    .hero-logo {
        font-size: 80px;
    }

    .text-main {
        width: 80%;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .beneficio:nth-child(3) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    .container {
        width: 90%;
    }

    .header {
        height: 60px;
    }

    .header .container {
        padding: 0 20px;
    }

    .logo {
        position: relative;
        margin-right: auto;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .btn-login {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 16px;
        font-size: 12px;
    }

    .hero-logo {
        font-size: 64px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .conceito,
    .beneficios,
.cta {
    padding: 120px 0;
}

    .conceito h2,
    .beneficios h2,
    .cta h2 {
        font-size: 32px;
    }

    .text-main {
        width: 100%;
    }

    .keywords-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .beneficio:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-nav {
        margin-bottom: 20px;
    }

    .footer-nav ul {
        flex-direction: column;
    }

    .footer-nav li {
        margin: 10px 0;
    }

    .social-links {
        justify-content: center;
    }
}


















.cta-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
}


.cta .container {
    text-align: center;
}


.cta-button-wrapper {
    text-align: center;
}


.cta-button-wrapper .btn-login {
    display: inline-block; /* Permite que text-align: center funcione no pai */
    margin: 0 auto; /* Centraliza o botão se o pai tiver text-align: center */
}













.waitlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid #333333;
    background-color: #FFFFFF;
    color: #333333;
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.waitlist-btn:hover {
    background-color: #333333;
    color: #FFFFFF;
}

@media (max-width: 1199px) {
    .waitlist-btn {
        display: none;
    }
}



/* Quem Somos Section */
.quem-somos {
    padding: 120px 0 60px 0;
    background-color: #FFFFFF;
}

.quem-somos h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 30px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.team-member:nth-child(1) {
    animation-delay: 0s;
}

.team-member:nth-child(2) {
    animation-delay: 0.1s;
}

.team-member:nth-child(3) {
    animation-delay: 0.2s;
}

.team-member:nth-child(4) {
    animation-delay: 0.3s;
}

.team-member:nth-child(5) {
    animation-delay: 0.4s;
}

.team-photo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #E8E8E8;
    border: 1px solid #D0D0D0;
    margin: 0 auto 32px;
    position: relative;
    overflow: hidden;
}

.team-photo-placeholder::after {
    content: none;
}

.team-photo-placeholder::before {
    content: none;
}

.team-name {
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 8px;
    color: #000000;
}

.team-role {
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #666666;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.team-description {
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #333333;
    text-align: center;
}

/* Desktop-specific styles to ensure proper rendering */
@media (min-width: 768px) {
    .quem-somos .team-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 60px 30px;
    }
    
    .quem-somos .team-member {
        text-align: center;
    }
    
    .quem-somos .team-photo-placeholder {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background-color: #E8E8E8;
        border: 1px solid #D0D0D0;
        margin: 0 auto 32px;
        position: relative;
        overflow: hidden;
        display: block;
    }
    
    .quem-somos .team-photo-placeholder::after {
        content: none;
    }
    
    .quem-somos .team-photo-placeholder::before {
        content: none;
    }
    
    .quem-somos .team-name {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .quem-somos .team-role {
        font-size: 13px;
        margin-bottom: 0;
    }
    
    .quem-somos .team-description {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
    }
}

@media (max-width: 1199px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    
    .team-photo-placeholder {
        width: 160px;
        height: 160px;
    }
    
    .team-photo-placeholder::after {
        width: 50px;
        height: 50px;
    }
    
    .team-photo-placeholder::before {
        width: 100px;
        height: 70px;
    }
}

@media (max-width: 767px) {
    .quem-somos {
        padding: 80px 0;
    }
    
    .quem-somos h2 {
        font-size: 32px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .team-photo-placeholder {
        width: 140px;
        height: 140px;
        margin: 0 auto 24px;
    }
    
    .team-photo-placeholder::after {
        width: 45px;
        height: 45px;
    }
    
    .team-photo-placeholder::before {
        width: 90px;
        height: 60px;
    }
    
    .team-member {
        text-align: center;
    }
    
    .team-name {
        font-size: 22px;
    }
    
    .team-role {
        font-size: 13px;
    }
    
    .team-description {
        font-size: 15px;
    }
}




/* Treinamentos Section */
.treinamentos {
    padding: 120px 0;
    background-color: #FFFFFF;
}

.treinamentos h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.treinamentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.treinamento {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-fill-mode: both;
    text-align: left;
    padding: 0;
}

.treinamento:nth-child(1) {
    animation-delay: 0s;
}

.treinamento:nth-child(2) {
    animation-delay: 0.1s;
}

.treinamento:nth-child(3) {
    animation-delay: 0.2s;
}

.treinamento:nth-child(4) {
    animation-delay: 0.3s;
}

.treinamento-title {
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 8px rgba(0, 0, 0, 0.8);
}

.treinamento-title span[style*="color: #000000"] {
    text-shadow: 
        0 0 3px rgba(255, 255, 255, 0.5),
        0 0 6px rgba(255, 255, 255, 0.3);
}

.treinamento-description {
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #FFFFFF;
    margin-bottom: 32px;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 8px rgba(0, 0, 0, 0.8);
}

.btn-treinamento {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid #000000;
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Clear Sans Leve', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    text-decoration: none;
    width: fit-content;
}

.btn-treinamento:hover {
    background-color: #333333;
    color: #FFFFFF;
}

/* Tablet adjustments for Treinamentos */
@media (max-width: 1199px) and (min-width: 768px) {
    .treinamentos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Mobile adjustments for Treinamentos */
@media (max-width: 767px) {
    .treinamentos {
        padding: 80px 0;
    }

    .treinamentos h2 {
        font-size: 32px;
    }

    .treinamentos-grid {
        grid-template-columns: 1fr;
        gap: 94px;
        margin-top: 40px;
    }

    .treinamento {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .treinamento-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .treinamento-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

}



/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover {
    background-color: #000000;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #000000;
    transition: fill 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.whatsapp-float:hover svg {
    fill: #FFFFFF;
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}


/* Hide Manus Badge */
manus-content-root,
[data-manus-badge],
[class*="manus-badge"],
[id*="manus-badge"],
div[style*="manus"],
a[href*="manus.im"]:not([href*="manus-analytics"]) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}
