/* Estilos para a seu00e7u00e3o CTA (Call to Action) da SinapseTech */

#solution-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    color: white;
}

/* Efeito de fundo com padrão de circuito */
#solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/services/circuit-pattern.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    animation: slowPulse 15s infinite alternate;
}

@keyframes slowPulse {
    0% {
        opacity: 0.05;
        transform: scale(1);
    }
    100% {
        opacity: 0.15;
        transform: scale(1.05);
    }
}

/* Container principal */
.solution-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Título da seção */
.solution-container h1,
.solution-container .section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.solution-container h1::after,
.solution-container .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: white;
    border-radius: 2px;
}

/* Texto descritivo */
.solution-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    opacity: 0.9;
}

/* Botão CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0077b6;
    background: white;
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    color: #00b4d8;
}

.cta-button::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: all 0.6s ease;
    z-index: -1;
}

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

/* Ícone do botão */
.cta-button i {
    margin-left: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Elementos decorativos */
.cta-decoration {
    position: absolute;
    z-index: 0;
}

.cta-decoration.top-left {
    top: 50px;
    left: 50px;
    width: 150px;
    height: 150px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.cta-decoration.bottom-right {
    bottom: 50px;
    right: 50px;
    width: 180px;
    height: 180px;
    opacity: 0.1;
    transform: rotate(15deg);
}

/* Responsividade */
@media (max-width: 768px) {
    #solution-section {
        padding: 80px 0;
    }
    
    .solution-container h1,
.solution-container .section-title {
        font-size: 32px;
    }
    
    .solution-container p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .cta-decoration.top-left,
    .cta-decoration.bottom-right {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    #solution-section {
        padding: 60px 0;
    }
    
    .solution-container h1,
.solution-container .section-title {
        font-size: 28px;
    }
    
    .solution-container p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .cta-decoration {
        display: none;
    }
}
