@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;700&display=swap');

body {
    margin: 0;
    background: linear-gradient(145deg, #000000, #1a1a1a);
    color: #c0c0c0;
    font-family: 'Roboto Mono', monospace;
    overflow-x: hidden;
}

/* Transição metálica */
.page-transition {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2), #000);
    z-index: 999;
    transform: scaleY(1);
    transform-origin: top;
    transition: transform 1s ease;
}
.page-transition.hidden {
    transform: scaleY(0);
}

.header {
    text-align: center;
    padding: 80px 20px 40px;
    animation: fadeInDown 1s ease forwards;
}

.header h1 {
    font-size: 2rem;
    color: #e6e6e6;
    letter-spacing: 1px;
}

.header p {
    color: #aaa;
    font-size: 1rem;
    margin-top: 10px;
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #888;
    text-decoration: none;
    font-size: 2rem;
    transition: color 0.3s ease;
}
.back-btn:hover {
    color: #ccc;
    cursor: pointer;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px;
    animation: fadeInUp 1.5s ease forwards;
}

.card {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    transform: perspective(600px) rotateY(0deg);
    cursor: pointer;
}
.card:hover {
    transform: perspective(600px) rotateY(5deg) translateY(-5px);
}

/* Imagem do card */
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.4s ease;
}
.card:hover img {
    opacity: 1;
}

.card h2 {
    color: #dcdcdc;
    text-align: center;
    margin: 15px 0 10px;
    font-size: 1.3rem;
}
.card p {
    text-align: center;
    color: #b0b0b0;
    padding: 0 15px 20px;
}

/* Box shadow por profissão */
.dentista:hover { box-shadow: 0 0 25px rgba(173, 216, 230, 0.6); }
.musico:hover { box-shadow: 0 0 25px rgba(255, 99, 71, 0.6); }
.advogado:hover { box-shadow: 0 0 25px rgba(255, 215, 0, 0.6); }
.fisio:hover { box-shadow: 0 0 25px rgba(144, 238, 144, 0.6); }
.autonomo:hover { box-shadow: 0 0 25px rgba(255, 140, 0, 0.6); }
.infoprodutor:hover { box-shadow: 0 0 25px rgba(138, 43, 226, 0.6); }
.empreendedor:hover { box-shadow: 0 0 25px rgba(0, 191, 255, 0.6); }
.escola:hover { box-shadow: 0 0 25px rgba(240, 128, 128, 0.6); }

/* Seção de incentivo */
.cta-section {
    text-align: center;
    margin: 60px auto;
    padding: 40px 20px;
    max-width: 800px;
    animation: fadeInUp 1.5s ease forwards;
}
.cta-text {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 30px;
    line-height: 1.7;
}
.cta-button {
   background: linear-gradient(135deg, #5461ed, #057924);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.4s ease;
}
.cta-button:hover {
    background: linear-gradient(135deg, #09e138, #2906ed);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(1, 19, 6, 0.3);
    opacity: .7;
    color: rgb(243, 248, 248);
}

.text-result {
    display: block;
    margin: 20px auto 0 auto;
    text-align: center;
    color: #00f7ff;
    opacity: .8;
    font-weight:lighter ;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 40px;
    font-size: 0.9rem;
    color: #666;
}

/* Animações */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 768px) {
    .header h1 { font-size: 1.5rem; }
    .cta-text { font-size: 1rem; }
    .cta-button { font-size: 0.9rem; padding: 12px 25px; }
}
