/*
Theme Name: iaRe Brokers
Author: iaRe
Description: Tema simples para seleção de estados
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #042B9E;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.logo {
    margin-bottom: 40px;
}

.logo img {
    max-width: 120px;
    height: auto;
}

h1 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.3;
}

.states-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.state-button {
    background-color: #ffffff;
    color: #042B9E;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.state-button:hover {
    background-color: #e8e8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
