


.quem-somos {
    position: relative;
    padding: 5rem 0;
    background: var(--alibra-dark-bg);
    overflow: hidden;
}


.quem-somos-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}


.text-content {
    flex: 1;
}

.text-content h2.gradient-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--alibra-blue), var(--smile-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-content .highlight {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 500;
}

.text-content .highlight span {
    color: var(--smile-blue);
    font-weight: 600;
}


.mission-box {
    display: flex;
    align-items: flex-start;
    background: rgba(26, 32, 44, 0.6);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mission-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--smile-blue), var(--alibra-blue));
    border-radius: 12px;
    margin-right: 1.5rem;
}

.mission-icon i {
    color: white;
    font-size: 1.5rem;
}

.mission-text p {
    color: #ffffff;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
}


.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tech-badge {
    display: flex;
    align-items: center;
    background: rgba(84, 175, 230, 0.15);
    border: 1px solid rgba(84, 175, 230, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge i {
    color: var(--smile-blue);
    margin-right: 0.5rem;
}

.tech-badge:hover {
    background: rgba(84, 175, 230, 0.25);
    transform: translateY(-3px);
}

.tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 500;
}

.tagline strong {
    color: var(--smile-blue);
}


.tech-circle-container {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.tech-circle {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(84, 175, 230, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tech-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(26, 32, 44, 0.8);
    border: 1px solid rgba(84, 175, 230, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.tech-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.tech-item:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.tech-item:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.tech-item:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }

.tech-item i {
    font-size: 1.5rem;
    color: var(--smile-blue);
}

.tech-core {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--alibra-blue), var(--smile-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: breathe 4s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(84, 175, 230, 0.5);
    z-index: 2;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(84, 175, 230, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 35px rgba(84, 175, 230, 0.8);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.tech-core i {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.circle-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(84, 175, 230, 0.1) 0%, transparent 70%);
    opacity: 0.7;
    z-index: -1;
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.tech-slogan {
    margin-top: 2rem;
    text-align: center;
}

.tech-slogan span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #54afe6;
    position: relative;
    padding-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(84, 175, 230, 0.4);
}

.tech-slogan span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--alibra-blue), var(--smile-blue));
    border-radius: 2px;
}


.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    color: rgba(84, 175, 230, 0.1);
    animation: float 15s ease-in-out infinite;
    opacity: 0.4;
}

.floating-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    font-size: 2rem;
    animation-duration: 20s;
}

.floating-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    font-size: 2.5rem;
    animation-duration: 23s;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    font-size: 3rem;
    animation-duration: 25s;
    animation-delay: 5s;
}

.floating-icon:nth-child(4) {
    bottom: 20%;
    right: 10%;
    font-size: 2.2rem;
    animation-duration: 22s;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 40%;
    left: 15%;
    font-size: 1.8rem;
    animation-duration: 18s;
    animation-delay: 1s;
}

.floating-icon:nth-child(6) {
    top: 60%;
    right: 20%;
    font-size: 2rem;
    animation-duration: 21s;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}


@media (max-width: 1200px) {
    .quem-somos-content {
        gap: 2rem;
    }
    
    .tech-circle {
        width: 280px;
        height: 280px;
    }
    
    .tech-core {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 992px) {
    .quem-somos {
        padding: 4rem 0;
    }
    
    .quem-somos-content {
        flex-direction: column;
        text-align: center;
    }
    
    .text-content {
        order: 1;
    }
    
    .tech-circle-container {
        order: 2;
        margin-top: 2rem;
    }
    
    .mission-box {
        flex-direction: column;
        align-items: center;
    }
    
    .mission-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .mission-text p {
        text-align: center;
    }
    
    .tech-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .quem-somos {
        padding: 3rem 0;
    }
    
    .text-content h2.gradient-text {
        font-size: 2rem;
    }
    
    .text-content .highlight {
        font-size: 1.1rem;
    }
    
    .mission-text p {
        font-size: 1rem;
    }
    
    .tech-circle {
        width: 240px;
        height: 240px;
    }
    
    .tech-item {
        width: 50px;
        height: 50px;
    }
    
    .tech-item i {
        font-size: 1.2rem;
    }
    
    .tech-core {
        width: 80px;
        height: 80px;
    }
    
    .tech-core i {
        font-size: 2rem;
    }
    
    .tech-slogan span {
        font-size: 1.1rem;
    }
    
    .floating-icon {
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .quem-somos {
        padding: 2rem 0;
    }
    
    .text-content h2.gradient-text {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .text-content .highlight {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .mission-box {
        padding: 1rem;
    }
    
    .mission-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .mission-icon i {
        font-size: 1.2rem;
    }
    
    .tech-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .tech-circle {
        width: 200px;
        height: 200px;
    }
    
    .tech-item {
        width: 40px;
        height: 40px;
    }
    
    .tech-core {
        width: 70px;
        height: 70px;
    }
    
    .tech-slogan span {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}
