
/* 
    Created on : 21 de fev. de 2025, 13:58:39
    Author     : Fábio Medeiros
*/
/* Fonte Poppins para um design moderno */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Caixa de Destaque */
.info-box {
    background: linear-gradient(135deg, #d4d4d4, #a6a6a6, #f0f0f0); /* Gradiente prateado */
    color: white; /* Texto branco */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.25); /* Sombra sofisticada */
    text-align: center;
    font-family: 'Poppins', sans-serif;
    max-width: 700px;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Efeito ao passar o mouse */
.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}

/* Brilho animado no fundo */
.info-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(0,0,0,0) 70%);
    transform: rotate(25deg);
    transition: all 0.5s;
}

/* Efeito ao passar o mouse */
.info-box:hover::before {
    top: -40%;
    left: -40%;
}

/* Estilo do título */
.info-box h4 {
    font-size: clamp(1rem, 3.5vw, 2rem); /* Ajuste automático */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333; /* Título escuro para destacar no fundo prateado */
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    word-break: break-word; /* Permite quebra apenas se necessário */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4); /* 🔥 Sombra no título */
}

/* Reduz o tamanho em telas menores */
@media (max-width: 768px) {
    .info-box h4 {
        font-size: clamp(0.9rem, 3vw, 1.8rem);
    }
}

@media (max-width: 480px) {
    .info-box h4 {
        font-size: clamp(0.8rem, 2.5vw, 1.5rem);
    }
}

/* Estilo do texto */
.info-box p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
    color: #444; /* Texto um pouco escuro para melhor contraste */
}
