/* Estilos para a seção Hero da página Sobre Nós */

/* Seção Hero Principal */
#about-section {
    position: relative;
    min-height: 85vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #001f33 0%, #003366 100%);
    z-index: 1;
}

#about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/about/dna-pattern.svg");
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    z-index: -1;
}

/* Contêiner Principal com Glassmorphism */
.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.about-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(0, 123, 255, 0) 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

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

/* Texto Principal com Efeitos Modernos */
.about-text {
    flex: 1;
    text-align: left;
    padding-right: 40px;
    position: relative;
}

.about-text h1 {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-text h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, transparent);
    border-radius: 2px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-text strong {
    color: #00d4ff;
    font-weight: 600;
}

.about-text em {
    font-style: italic;
    color: #ffffff;
    background: rgba(0, 123, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

/* Seção de Ilustração */
.about-illustration {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-illustration img {
    width: 100%;
    max-width: 300px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Pilares Flutuantes */
.floating-pillars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.pillar-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.pillar-badge i {
    font-size: 16px;
    color: #00d4ff;
}

.badge-1 {
    top: 20%;
    left: 10%;
    animation-name: float-1;
}

.badge-2 {
    top: 50%;
    right: 5%;
    animation-name: float-2;
}

.badge-3 {
    bottom: 15%;
    left: 15%;
    animation-name: float-3;
}

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

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

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

/* Botão CTA */
.about-cta {
    display: inline-block;
    background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.about-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.4);
}

.about-cta:hover::before {
    left: 100%;
}

/* Contador de Estatísticas */
.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        padding: 40px 30px;
    }
    
    .about-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .about-text h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-illustration {
        width: 100%;
    }
    
    .stats-container {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 0 40%;
    }
}

@media (max-width: 768px) {
    #about-section {
        min-height: auto;
        padding: 60px 20px;
    }
    
    .about-text h1 {
        font-size: 36px;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    .pillar-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .stat-item {
        flex: 1 0 100%;
    }
}
