/* ================================================ */
/* ESTILOS PERSONALIZADOS (custom.css) - VERSÃO MELHORADA */
/* ================================================ */

/* ===== EFEITO PARALLAX NA SEÇÃO HERO ===== */

.hero-section-parallax {
    height: 100vh; 
    width: 100%;
    /* IMPORTANTE: Substitua pela sua imagem de fundo */
    background-image: url('../assets/images/home/fundo-futurista.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.6); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ======================================================== */
/* ===== NOVA SEÇÃO DE SOLUÇÕES (DESIGN REFINADO) ===== */
/* ======================================================== */

#solutions {
    position: relative;
    overflow: hidden; 
    border-top: 1px solid rgba(126, 34, 206, 0.2);
    border-bottom: 1px solid rgba(126, 34, 206, 0.2);
}

/* Adiciona um padrão de grelha subtil ao fundo */
#solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: -1;
}

/* Estilo dos Cartões - Efeito de vidro com borda gradiente */
.solution-card {
    position: relative;
    background-color: rgba(31, 33, 35, 0.25); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

/* Borda com gradiente */
.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0.75rem; 
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.4), rgba(126, 34, 206, 0.1)) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: all 0.3s ease;
}

/* Efeito Hover (passar o rato) */
.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.solution-card:hover::before {
    background: linear-gradient(135deg, rgba(126, 34, 206, 1), rgba(126, 34, 206, 0.3)) border-box;
}

/* Estilo do Ícone */
.solution-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a0a49, #4f1585);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(126, 34, 206, 0.3);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon-wrapper {
    background: linear-gradient(145deg, #4f1585, #7e22ce);
    box-shadow: 0 0 25px rgba(126, 34, 206, 0.5);
}

.solution-icon {
    font-size: 2.5rem;
    color: #e0d8f0;
}

/* Ajustes de tipografia dentro do cartão */
.solution-card h3 {
    color: #ffffff;
}
.solution-card p {
    color: #a7a9be;
}

/* GRADIENTE NO TEXTO */
.gradient-text {
  background: linear-gradient(90deg, #b1a0ff, #ffffff, #8570ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* BOTÃO */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 0.25rem;
    color: white;
    font-weight: 600;
    text-align: center;
}