/* Estilos para a seção atrativo-sistema */
.atrativo-sistema {
    padding: 6rem 0;
    background: var(--gradiente-primario);
    position: relative;
    overflow: hidden;
    color: white;
}

.atrativo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.atrativo-conteudo {
    flex: 1;
    animation: fadeInLeft 0.8s ease-out;
}

.atrativo-conteudo h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.destaque {
    color: var(--cor-destaque);
    position: relative;
    display: inline-block;
}

.destaque::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 64, 129, 0.3);
    z-index: -1;
    border-radius: 4px;
    transition: var(--transicao-rapida);
}

.atrativo-conteudo p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-sistema {
    display: inline-block;
    background-color: var(--cor-destaque);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--borda-arredondada-pequena);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transicao-rapida);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    margin-bottom: 3rem;
}

.btn-sistema:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: #ff1a66;
}

.btn-sistema::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: var(--transicao-media);
}

.btn-sistema:hover::before {
    left: 100%;
}

.beneficios-rapidos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.beneficios-rapidos div {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: var(--borda-arredondada-pequena);
    backdrop-filter: blur(5px);
    transition: var(--transicao-rapida);
}

.beneficios-rapidos div:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.beneficios-rapidos i {
    font-size: 1.2rem;
    color: var(--cor-destaque);
}

.beneficios-rapidos span {
    font-weight: 500;
}

.atrativo-ilustracao {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out;
}

.logo-animada {
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-animada img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.logo-animada::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.logo-animada::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* Efeitos decorativos */
.atrativo-sistema::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.atrativo-sistema::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

/* Animações */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .atrativo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .beneficios-rapidos {
        justify-content: center;
    }
    
    .logo-animada {
        width: 280px;
        height: 280px;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .atrativo-sistema {
        padding: 4rem 0;
    }
    
    .atrativo-conteudo h2 {
        font-size: 2rem;
    }
    
    .atrativo-conteudo p {
        font-size: 1rem;
    }
    
    .btn-sistema {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .beneficios-rapidos {
        flex-direction: column;
        align-items: center;
    }
    
    .beneficios-rapidos div {
        width: 100%;
        justify-content: center;
    }
    
    .logo-animada {
        width: 220px;
        height: 220px;
    }
}