body {
    background-color: #f6f6f6;
    font-family: 'Segoe UI', sans-serif;
}

.header-main {
    background: linear-gradient(135deg, #1eb119, #16a315);
    color: white;
    padding: 1rem 0;
}

.header-logo {
    max-height: 150px;
}

.header-title {
    font-size: 2rem;
    font-weight: bold;
}

.header-subtitle {
    font-size: 1rem;
}

iframe {
    border: none;
    border-radius: 8px;
    width: 100%;
    height: 500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.footer-custom {
    background-color: #00612F;
    color: white;
    padding: 2rem 1rem;
}

.footer-custom a {
    color: #1eb119;
    text-decoration: none;
}

.footer-custom a:hover {
    text-decoration: underline;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.back-link {
    text-align: center;
    margin: 2rem 0;
}

.rodape-direitos {
    background: #00612F;
    color: #ccc;
    text-align: center;
    padding: 1rem 0;
    margin-top: -1px;
}

@media (max-width: 768px) {
    .header-title {
        font-size: 1.6rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .header-logo {
        max-height: 90px;
    }
}

/* Ajuste para centralizar o conteúdo do header */
.header-main .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-main .row {
    width: 100%;
}

.header-main .col-md-3 {
    text-align: center;
}

.header-main .col-md-9 {
    text-align: center;
}