:root {
    --bg-dark: #050505;
    --bg-card: #121212;
    --text-main: #f0f0f0; 
    --text-muted-custom: #b0b0b0; 
    --gradient-main: linear-gradient(90deg, #00C6FF 0%, #BD00FF 50%, #00F260 100%);
    --accent-cyan: #00C6FF;   
    --accent-purple: #BD00FF; 
    --accent-green: #00F260;  
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
}

.text-muted {
    color: var(--text-muted-custom) !important;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(0, 198, 255, 0.3); 
}

.bg-gradient-custom {
    background: var(--gradient-main);
}

.section-padding {
    padding: 100px 0;
}

.btn-humana {
    background: var(--gradient-main);
    border: none;
    color: white; 
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(189, 0, 255, 0.4); 
}

.btn-humana:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 242, 96, 0.5); 
    color: white;
}

.navbar {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    color: #e0e0e0 !important;
    font-weight: 500;
    margin-left: 20px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-cyan) !important; /* Hover Ciano */
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-main);
    filter: blur(150px);
    opacity: 0.15; 
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-content {
    z-index: 1;
    position: relative;
}

.typing-text {
    color: var(--accent-green);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    min-height: 50px;
    display: block;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 242, 96, 0.4); 
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    background: #1a1a1a;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-list li {
    margin-bottom: 10px;
    font-size: 0.95rem; 
    color: #cccccc; 
    display: flex;
    align-items: center;
}

.service-list li i {
    margin-right: 10px;
    color: var(--accent-green);
    font-size: 0.8rem;
}

.check-grid-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.check-grid-item:hover {
    border-color: var(--accent-cyan);
}

.check-grid-item i {
    color: var(--accent-cyan);
    margin-right: 15px;
    font-size: 1.2rem;
}

.impact-phrase {
    border-left: 5px solid var(--accent-purple);
    padding-left: 30px;
    font-size: 1.5rem;
    font-style: italic;
    color: white;
    margin: 40px 0;
}

.team-img-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid transparent;
    background: linear-gradient(#121212, #121212) padding-box, var(--gradient-main) border-box;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.3s;
}

.team-card:hover .team-img {
    filter: grayscale(0%);
}

.team-card p.text-secondary {
    color: #b0b0b0 !important; 
}

.result-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    border-color: var(--accent-purple);
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; 
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

footer h5 {
    color: #ffffff !important; 
}

#lideranca p {
    color: #d1d1d1 !important;
}

@media (max-width: 768px) {
    
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 50px;
        overflow-x: hidden; 
    }

    .hero-section h1 {
        font-size: 1.8rem; 
        line-height: 1.2;
        padding: 0 10px; 
    }

    .typing-text {
        font-size: 1.2rem;
        min-height: 50px;
        margin-bottom: 10px;
    }

    .btn-humana {
        display: flex; 
        align-items: center;
        justify-content: center;
        
        width: 100%;         
        max-width: 100%;     
        box-sizing: border-box; 
        
        white-space: normal !important; 
        word-wrap: break-word;          
        
        padding: 12px 15px !important;  
        font-size: 0.8rem !important;   
        line-height: 1.3 !important;    
        border-radius: 12px;
        
        margin-top: 20px;
    }
    
    .btn-humana i {
        margin-left: 8px !important;
        flex-shrink: 0; 
    }

    .section-padding {
        padding: 50px 0;
    }

    p.lead, p.fs-5 {
        font-size: 1rem !important;
        text-align: center; 
        padding: 0 15px;
    }

    .hero-bg-accent {
        width: 300px;
        height: 300px; 
    }
}


.footer-divider {
    height: 1px;
    width: 50%;
    background-color: rgba(255, 255, 255, 0.13);
    margin: 15px auto;
}

.dev {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.dev a {
    color: var(--text-muted-custom);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dev a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(0, 198, 255, 0.6);
}