* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1e3a8a; /* Azul escuro elegante */
    color: #ffffff;
    padding: 1rem;
}

.container {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 3rem 2rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease;
}

.container:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.tituloP {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f9c74f; /* Amarelo suave */
    letter-spacing: 1px;
}

h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 32px;
    color: #e2e8f0; /* Cinza claro para contraste sutil */
}

.botoes-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.botoes-links a {
    width: 100%;
    max-width: 700px;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.botoes-links a:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Cores dos botões */
.btn-white {
    background-color: #ffffff;
    color: #1e3a8a;
}

.btn-white:hover {
    background-color: #f1f5f9;
}

.btn-yellow {
    background-color: #fdb500;
    color: #1e1e1e; /* Texto escuro (quase preto) */
}


.btn-yellow:hover {
    background-color: #f8b200;
}

/* Ícone */
.arrow {
  display: flex;
  align-items: center;
  margin-left: 10px; /* seta fica espaçada para a direita */
  transition: transform 0.3s ease;
}


.botoes-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.botoes-links a:hover .arrow {
  transform: translateX(5px);
}

/* Responsividade */
@media(max-width: 768px) {
    .container {
        width: 95%;
        padding: 2rem 1.5rem;
    }

    .tituloP {
        font-size: 2rem;
    }

    h3 {
        font-size: 1rem;
    }

    .botoes-links a {
        font-size: 0.95rem;
        padding: 14px 20px;
    }
}
