/*
Theme Name: SEO Tarot Diário
Theme URI: https://manus.im
Author: Manus
Description: Um tema WordPress para tiragem de tarot diário focado em profissionais de SEO.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seo-tarot
*/

body {
    margin: 0;
    padding: 0;
    background: url('assets/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    overflow: hidden; /* Evita rolagem conforme solicitado */
}

#tarot-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100vh;
    padding-bottom: 50px;
    perspective: 1000px;
}

.tarot-card {
    width: 60px;
    height: 100px;
    background: #2c3e50;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    margin-left: -40px; /* Sobreposição */
    transition: transform 0.3s ease, margin 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.tarot-card:first-child {
    margin-left: 0;
}

.tarot-card:hover {
    transform: translateY(-20px) scale(1.1);
    margin-right: 20px;
    z-index: 100;
}

/* Modal/Popup Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

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

#download-btn {
    background-color: #27ae60;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

/* Form de nome */
#name-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.name-form {
    background: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.name-form input {
    padding: 10px;
    width: 200px;
    margin-bottom: 10px;
}

.name-form button {
    padding: 10px 20px;
    background: #2980b9;
    color: white;
    border: none;
    cursor: pointer;
}

/* Estilos para o Popup de Bloqueio */
.limit-content {
    border: 2px solid #f39c12;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.3);
}

.limit-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.limit-subtext {
    font-style: italic;
    color: #bdc3c7;
    font-size: 0.9em;
    margin-top: 10px;
}

.close-btn-styled {
    background-color: #f39c12;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: bold;
    transition: background 0.3s;
}

.close-btn-styled:hover {
    background-color: #e67e22;
}

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