@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #222;
    color: #334155;
}

/* Seções com efeito hover */
.section {
    transition: all 0.3s ease;
}
.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}


/* Timeline vertical */
.timeline-item {
    position: relative;
    padding-left: 28px;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #25504a;
}
.timeline-item::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 24px;
    bottom: -12px;
    width: 2px;
    background-color: #25504a;
}
.timeline-item:last-child::after {
    display: none;
}

/* Botão de impressão */
.print-button:hover {
    background-color: #005f5a;
}

/* Estilos para impressão */
@media print {
    .no-print {
        display: none;
    }
    body {
        background-color: white;
    }
    .section {
        box-shadow: none !important;
        transform: none !important;
        break-inside: avoid;
    }
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

}

.btn {
    text-decoration: none;
}
.btn:hover {
    text-decoration: none;
    color: #fff;
}