:root {
    --primary: #0a1825; /* Azul escuro do fundo do logo */
    --secondary: #6c757d; /* Mantido para elementos secundários */
    --accent: #00d2ff; /* Turquesa brilhante do logo */
    --accent-secondary: #0086b3; /* Tom médio de azul para gradientes */
    --dark-accent: #102537; /* Versão mais escura do azul para contraste */
    --light: #f8f9fa; /* Mantido para elementos claros */
    --dark: #081018; /* Versão mais escura para textos */
    --text-light: #ffffff; /* Texto claro como no logo */
}

/* Atualizações do estilo baseado na nova paleta */
.navbar {
    padding: 1rem 1rem;
    transition: all 0.3s ease;
    background-color: rgba(10, 24, 37, 0.95) !important; /* Escuro com transparência */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-light) !important;
}

.navbar-brand span {
    color: var(--accent);
}

.nav-link {
    font-weight: 500;
    color: var(--text-light) !important;
    margin: 0 10px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link:focus {
    color: var(--accent) !important;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-secondary);
    border-color: var(--accent-secondary);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.hero {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark-accent) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/1200/600') center/cover no-repeat;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

/* Efeitos tecnológicos inspirados no logo */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(0, 210, 255, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(0, 210, 255, 0.1) 0%, transparent 20%);
    pointer-events: none;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,218.7C672,203,768,149,864,128C960,107,1056,117,1152,133.3C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 120px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(10, 24, 37, 0.05) 0%, rgba(0, 210, 255, 0.1) 100%);
    transition: all 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    height: 100%;
}

.service-card .icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, var(--accent-secondary), var(--accent));
    border-radius: 5px;
}

.feature-icon {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent) 100%);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-accent) 100%);
    color: white;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 20%, rgba(0, 210, 255, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 70% 60%, rgba(0, 210, 255, 0.1) 0%, transparent 25%);
    pointer-events: none;
}

.footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-link:hover {
    color: var(--accent);
}

.footer-social a:hover {
    color: var(--accent);
}

.copyright {
    background-color: var(--dark);
}

.login-btn {
    border: 2px solid var(--accent);
    color: var(--text-light) !important;
}

.login-btn:hover {
    background-color: var(--accent);
    color: var(--dark) !important;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

/* Estilos modernos para o logo */
.brand-text {
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.8rem;
    overflow: hidden;
}

.infinity-text {
    background: linear-gradient(45deg, #f0f3f6, #e8ecf0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.wave-text {
    background: linear-gradient(45deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transition: left 0.5s ease;
}

.hover-effect::after {
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent));
}

.hover-effect:hover {
    color: var(--accent) !important;
}

.pulse-effect:hover {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 210, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

/* Efeito de partículas inspirado no logo */
.tech-particle {
    position: absolute;
    background-color: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}


.clients-carousel-container {
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 50px; /* Espaço para os indicadores */
}

.client-slide {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    display: block;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-height: 100px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-secondary);
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--accent);
}

/* Ajustes para mobile */
@media (max-width: 767.98px) {
    .client-logo {
        height: 120px;
        padding: 15px;
    }

    .client-logo img {
        max-height: 80px;
    }

    .client-slide {
        padding: 10px;
    }
}

.contact-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 15px;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: rgba(0, 210, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card:hover .contact-icon {
    background-color: rgba(0, 210, 255, 0.2);
}

/* Estilos para o Footer */
.footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 5px;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-social a:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact i {
    margin-top: 3px;
    color: var(--accent);
    min-width: 20px;
}

hr.border-secondary {
    opacity: 0.1;
    margin: 2rem 0;
}

/* Ajustes responsivos */
@media (max-width: 991.98px) {
    .hero {
        padding: 6rem 0 0;
        margin-bottom: 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .wave-wrapper {
        height: 80px;
        bottom: -80px;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-title {
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 5rem 0 0;
        margin-bottom: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .wave-wrapper {
        height: 60px;
        bottom: -60px;
    }

    .contact-card {
        margin-bottom: 15px;
    }

    .footer-title {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-link {
        margin-bottom: 0.5rem;
    }

    .footer-social a {
        margin-right: 0.8rem;
        font-size: 1.3rem;
    }
}

/* Correção para os indicadores do carrossel de clientes */
.carousel-indicators {
    position: absolute;
    bottom: -30px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: var(--accent-secondary);
    opacity: 0.5;
    border: none;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--accent);
}

/* Ajustes para o WhatsApp flutuante para não sobrepor o footer em mobile */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}