@font-face {
    font-family: 'MinhaFonte';
    src: url('../assets/tpg/Comfortaa-Bold.ttf') format('woff2'),
         url('../tpg/Comfortaa-Bold.woff') format('woff'),
         url('../tpg/Comfortaa-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* General Styles */
body {
    font-family: 'MinhaFonte', sans-serif;
    line-height: 1.8; /* Increased for readability */
    color: #333;
    background-color: #f9f9f9;
    padding-top: 60px; /* Adjust to avoid content behind navbar */
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px; /* Increased gap for better spacing */
}

header nav ul li a {
    text-decoration: none;
    color: #2A0944;
    font-weight: 600;
    padding: 10px 15px; /* Increased padding for touch area */
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 5px; /* Softer look for links */
}

header nav ul li a:hover {
    color: #fff;
    background-color: #007bff;
}

/* Navbar Styles */
.navbar {
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    color: #2A0944;
}

.navbar-toggler {
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-title {
    margin-bottom: 40px;
    color: #2A0944;
    text-align: center;
    font-size: 2rem; /* Larger for emphasis */
}

.card {
    margin-bottom: 25px;
    border: 2px solid #3FA796;
    border-radius: 10px; /* Softer card edges */
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

.card-header {
    background-color: #FEC260;
    color: #2A0944;
    padding: 15px 20px; /* Increased padding for clickable area */
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px 10px 0 0; /* Rounded corners at the top */
}

.btn-link {
    color: #2A0944;
    text-decoration: none;
    font-weight: 600;
}

.btn-link:hover {
    color: #3FA796;
}

.card-body {
    background-color: #FFFFFF;
    color: #2A0944;
    padding: 20px;
}

/* Footer Styles */
footer {
    background-color: #343a40;
    color: #adb5bd;
    padding: 40px 0;
    text-align: center; /* Center-align footer content */
}

footer h5 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

footer p,
footer li,
footer a {
    font-size: 1rem; /* Increased for readability */
    color: #adb5bd;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #00bfff; /* Lighter hover effect */
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer .fab {
    font-size: 1.5rem;
}

footer .fab:hover {
    color: #00bfff;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}