/* Existing styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, #003366, #006633, #ffcc00);
    color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.container {
    width: 70%; /* Reduced width by 25% */
    margin: 0 auto;
}

main {
    background-color: transparent;
    padding: 2em;
    text-align: center;
}

.landing-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em 0;
}

.left, .right {
    flex: 1;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}



h1 {
    background: none; /* Removed gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff; /* Set white for main text */
    font-size: 5em;
    margin: 0;
    padding: 0.5em 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Kept shadow for emphasis */
}

.hidden-h1 {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

h1 .lightning {
    background: none;
    color: #ffcc00;
    text-shadow: none;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    margin: 10px 0;
    font-size: 1.65em; /* Increased font size by 10% */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Added shadow */
}
.right a.btn-primary {
    display: inline-block;
    width: 230px; /* ajuste conforme a necessidade */
    text-align: center;
}
.btn-primary:hover {
    background-color: #0056b3;
}

section#about {
    margin-top: 2em;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 0.8em; /* Reduced height by 10% */
    text-align: center;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-top: 1em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left, .footer-right {
    flex: 1;
}

.footer-center {
    flex-basis: 100%;
    margin-top: 1em;
}

.footer-content p {
    margin: 0.5em 0;
}

.footer-content a {
    color: #ffcc00;
    text-decoration: none;
}

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

.copyright {
    font-size: 0.9em;
    margin-top: 1em;
}
/* Ajuste da tabela */
.layout-table {
    width: 100%;
    max-width: 900px;
    margin: auto;
    border-collapse: collapse;
}

/* Estilizando as colunas */
.donate-column, .sponsor-column {
    width: 50%;
    vertical-align: top;
    text-align: center;
    padding: 20px;
}

/* Ajustes no botão de doação */
.submit {
    display: inline-flex;
    align-items: center;
    background-color: #0f3b21;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.submit img {
    height: 40px;
    margin-left: 10px;
}

/* Ajustes na imagem do patrocinador */
.sponsor-column img {
    max-width: 200px;
    height: auto;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aceita-bitcoin-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 230px;
    height: 60px;
    background-color: transparent;
    margin-top: 10px;
    box-shadow: 0 8px 30px 6px rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* ESSENCIAL para igualar ao botão */
}


.aceita-bitcoin-link:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px 10px rgba(0, 0, 0, 0.5);
}

.aceita-bitcoin-img {
    max-height: 60px;
    width: auto;
}


.equal-width-block {
    width: 230px;
    box-sizing: border-box;
}


/* Styles for mobile devices */
@media (max-width: 768px) {
    .container {
        width: 95%; /* Increase container width to utilize more screen space */
        padding: 0 1em; /* Add padding to the sides */
    }

    .brln-logo {
        width: 70%;
    }

    h1 {
        font-size: 3em; /* Further reduce font-size for mobile */
    }

    .btn-primary {
        font-size: 1em; /* Further reduce button font size */
        padding: 8px 12px; /* Adjust padding to make the button smaller */
    }

    .landing-page {
        flex-direction: column; /* Stack the elements vertically on mobile */
        text-align: center; /* Center align text */
    }

    .left, .right {
        flex: unset;
        text-align: center;
        margin: 0.5em 0; /* Add some margin for spacing */
    }

    section#about {
        text-align: justify; /* Utilize more screen width */
        padding: 1em 0; /* Add some padding for spacing */
    }

    footer {
        padding: 1em; /* Adjust padding for better appearance */
    }

    .footer-content {
        flex-direction: column; /* Stack footer content vertically */
        text-align: center; /* Center align text */
    }

    .footer-left, .footer-right, .footer-center {
        flex: unset;
        margin: 0.5em 0; /* Add spacing between sections */
        width: 100%; /* Ensure full width usage */
    }

    .footer-left p, .footer-right p, .footer-center p {
        margin: 0.2em 0; /* Reduce margin to fit better in the footer */
        white-space: normal; /* Allow text to wrap within footer */
    }
    .layout-table tr {
        display: block;
    }
    .donate-column, .sponsor-column {
        width: 100%;
        display: block;
        text-align: center;
    }
}
.language-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2em;
}

.language-switcher a {
    margin-left: 10px;
    color: #ffffff;
    text-decoration: none;
}

.language-switcher a:hover {
    text-decoration: underline;
}


