/* geralVars.css */
body {
    background-color: #fff;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.support-header {
    margin-bottom: 40px;
    margin-top: 40px; /* Adicionando margin-top */
}

h1 {
    text-align: left;
    color: #0c2140;
    font-size: 2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.support-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
    margin-top: 10px;
}

.support-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Duas seções por linha */
    gap: 20px;
}

.support-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.support-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.support-section h2 {
    font-size: 1.5rem;
    color: #0c2140;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.support-section p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.btn-support {
    background-color: #0c2140;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    text-decoration: none; /* Para link no botão de e-mail */
    text-align: center;
}

.btn-support:hover {
    background-color: #afa4ce;
}

.support-footer {
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
}

.support-footer a {
    color: #0c2140;
    text-decoration: none;
}

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

/* Estilos Responsivos */
@media (max-width: 768px) {
    .support-content {
        grid-template-columns: 1fr; /* Seções em uma única coluna no mobile */
    }

    h1 {
        font-size: 1.8rem;
    }

    .support-section {
        margin-bottom: 20px;
    }
}
