
.grid {
    display: grid;
    grid-template-columns: 65% 30%;
    grid-gap: 5%;
}

.btn_pesquisar {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn_pesquisar:hover {
    background-color: #007a37;
}

form{
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

form input[type='search'] {
    border: 1px solid #ccc;
    margin-right: 5px;
    outline: none;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

form input[type='search']:focus {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(0,154,71,0.3);
}

.title-page{
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.content {
    /*background-color: white;*/
    padding: 25px;
    border-radius: 10px;
    /*box-shadow: 0 3px 10px rgba(0,0,0,0.1);*/
}

.img-container{
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.img-container img{
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.middle-img {
    width: 100%;
    margin: 30px 0;
}

.middle-img img{
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.content h2 {
    color: var(--primary-color);
    margin: 30px 0 15px 0;
    font-size: 1.8rem;
}

.content h3 {
    color: var(--dark-color);
    margin: 25px 0 15px 0;
    font-size: 1.5rem;
}

.content p {
    margin-bottom: 20px;
    color: #444;
}

.content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content li {
    margin-bottom: 10px;
}

.content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.content a:hover {
    text-decoration: underline;
    color: #007a37;
}

.content .highlight {
    background-color: #f0f9f4;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.content .promo-code {
    display: inline-block;
    background-color: #f0f9f4;
    padding: 8px 15px;
    border: 1px dashed var(--primary-color);
    font-weight: bold;
    border-radius: 5px;
    margin: 5px 0;
}

.steps-container {
    margin: 30px 0;
}

.step-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}
.step-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.deposit-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.deposit-method {
    background-color: #f0f9f4;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
}

.footer-content {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.related-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.term-tag {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #666;
}

/* Sidebar Styles */
.sidebar {
    align-self: start;
}

.sidebar-content {
    /*background-color: white;*/
    padding: 20px;
    border-radius: 10px;
    /*box-shadow: 0 3px 10px rgba(0,0,0,0.1);*/
}

.destaque h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 20px 0;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.destaque ul {
    list-style: none;
    padding: 0;
}

.destaque ul li {
    margin-top: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.destaque ul li:last-child {
    border-bottom: none;
}

.destaque ul a:first-child {
    text-decoration: none;
    font-weight: bold;
    color: #444;
    display: block;
    transition: color 0.3s ease;
}

.destaque ul a:first-child:hover {
    color: var(--primary-color);
}

.destaque ul a:last-child {
    font-size: 15px;
    text-decoration: none;
    display: block;
    margin-top: 5px;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.destaque ul a:last-child:hover {
    text-decoration: underline;
}

.sidebar-content img {
    width: 100%;
    margin-top: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.sidebar-content img:hover {
    transform: scale(1.02);
}

.sidebar-content img{
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .grid {
        grid-template-columns: 100%;
    }
}