/*
Theme Name: Instituto AdorArte
Theme URI: https://institutoadorarte.com.br
Author: Instituto AdorArte
Author URI: https://institutoadorarte.com.br
Description: Tema simples para a página inicial (modal de contato) do Instituto AdorArte. Base inicial para evolução futura em um tema WordPress completo.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adorarte
*/

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    min-height: 100vh;
    background-image: url("assets/images/bg-music.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-contato {
    width: 100%;
    max-width: 500px;
    padding: 35px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.logo {
    display: block;
    width: 100%;
    max-width: 220px;
    max-height: 140px;
    object-fit: contain;
    margin: 0 auto 30px;
}

.redes-sociais {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.redes-sociais li {
    margin-bottom: 12px;
}

.redes-sociais a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #212529;
    text-decoration: none;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: 0.2s ease;
}

.redes-sociais a:hover {
    color: #ffffff;
    background-color: #212529;
    transform: translateY(-2px);
}

.redes-sociais i {
    width: 25px;
    font-size: 1.4rem;
    text-align: center;
}

.mensagem-contato {
    margin-top: 25px;
    margin-bottom: 0;
    color: #555555;
    line-height: 1.6;
}

.mensagem-contato strong {
    color: #212529;
}

@media (max-width: 576px) {
    .modal-contato {
        padding: 25px 20px;
    }
}
