/* Cores oficiais do Banco Pan */
:root {
    --primary-color: #07B2FD; /* Dodger Blue */
    --secondary-color: #0D1317; /* Dark text/background */
    --text-color: #333333;
    --light-gray: #f3f4f9;
    --white: #ffffff;
    --accent-color: #FFD700; /* Um toque de amarelo para destaque, se necessário */
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--light-gray);
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    border-bottom: 5px solid var(--primary-color);
}

header .logo {
    max-width: 180px;
    margin-bottom: 10px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: var(--white);
}

nav {
    background-color: var(--primary-color);
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #0590ce; /* Um tom mais escuro do primary-color */
}

h1, h2, h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

.cta-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.cta-section h2 {
    color: var(--secondary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
}

.cta-button:hover {
    background-color: #0590ce;
    transform: translateY(-2px);
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp Green */
    color: var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-button:hover {
    background-color: #1DA851;
    transform: scale(1.05);
}

footer {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    font-size: 0.9em;
}

.breadcrumb {
    padding: 10px 0;
    font-size: 0.9em;
    color: #666;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.faq-section {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.faq-section h2 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    color: var(--secondary-color);
    padding: 15px 20px;
    background-color: #f0f0f0;
    display: block;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    display: block;
}

.table-container {
    margin-top: 30px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th,
table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #e8e8e8;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
    }

    header h1 {
        font-size: 1.8em;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li a {
        padding: 10px 15px;
        text-align: center;
    }

    .cta-button {
        display: block;
        margin: 10px auto;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }
}
