/* Estilos consolidados para a Tecnisys */

/* Cores e fundos */
.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-pattern {
    background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 16px 16px;
}

.banner-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
}

.text-white-80 {
    color: rgba(255,255,255,0.8);
}

/* Cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 1rem !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.team-card {
    transition: all 0.3s ease;
    border-radius: 1rem !important;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1) !important;
}

.partner-card {
    min-height: 180px;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1) !important;
}

/* Efeitos de hover */
.hover-top:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Ícones */
.icon-lg {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-md {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Elementos de divisão */
.divider {
    width: 100px;
    height: 4px;
    background: #0d6efd;
    opacity: 0.7;
}

/* Animações */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Estilos para imagens */
.card-img-top {
    height: 250px;
    object-fit: cover;
}