/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos do corpo */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #0e0316;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Altura total da tela */
    text-align: center;
}

/* Estilos do contêiner principal */
.container {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px; /* Largura máxima do contêiner */
    width: 90%; /* Largura responsiva */
}

img {
    padding: 25px;
    border-radius: 100%;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000;
}

p {
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: center;
}

/* Estilo do ícone */
.icon {
    font-size: 5rem; /* Tamanho do ícone */
    margin: 20px 0;
    color: #f39c12; /* Cor do ícone */
}

/* Estilo do botão */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background 0.3s;
    margin: 10px; /* Espaçamento entre os botões */
}

.btn:hover {
    background: #444; /* Cor do botão ao passar o mouse */
}

/* Estilos do popup */
.popup {text-align: center;
    display: none; /* Escondido por padrão */
    position: fixed; /* Fixo na tela */
    z-index: 1000; /* Fica acima de outros elementos */
    left: 0;
    top: 0;
    width: 100%; /* Largura total da tela */
    height: 100%; /* Altura total da tela */
    overflow: auto; /* Habilita scroll se necessário */
    background-color: rgba(0,0,0,0.5); /* Fundo com opacidade */
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% do topo e centraliza horizontalmente */
    padding: 20px;
    border-radius: 10px;
    width: 80%; /* Largura do conteúdo do popup */
    max-width: 400px; /* Largura máxima do conteúdo do popup */
    text-align: center;
}

.popup-content h2 {
    margin-bottom: 15px;
}

.popup-content p {
    margin: 10px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.popup-content p a {
    color: #000;
    text-decoration: none;
    margin-left: 10px;
}

.popup-content p a:hover {
    color: #4718c7; /* Cor verde do WhatsApp */
}

.popup-content p iconify-icon {
    margin-right: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

/* Seção de redes sociais */
.social-section {
    margin-top: 20px;
}

.social-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    margin: 0 10px;
    color: #333;
    font-size: 2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #f39c12; /* Cor ao passar o mouse */
}
