
/* =========================================
   ESTILO VISUAL TEMAI SUSHI
   Salvar no servidor como: estilo_japones.css
   ========================================= */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('fundo_elegante12.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* O "Cartão" Central */
.container-japones {
    background-color: rgba(255, 255, 255, 0.85);
    width: 100%;
    max-width: 400px;
    padding: 35px 25px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-align: center;
    border: 1px solid #e0e0e0;
}

/* Logotipo e Título */
.logo {
    max-width: 180px;
    margin-bottom: 15px;
    height: auto;
}

h2 {
    color: #cc0000;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Estilo dos Botões de Links */
.link-btn-japones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #cc0000;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.25);
    transition: transform 0.2s, background-color 0.2s;
    box-sizing: border-box;
}

.link-btn-japones:hover {
    background-color: #a30000;
    transform: translateY(-2px);
}

.link-btn-japones i {
    font-size: 18px;
}

/* Rodapé */
footer {
    margin-top: 25px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}
