/* fAUCEt_DETAIL.CSS - Versão Clean & Pro */

/* Botão de Visitar - Chamada Principal */
.visit-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    font-size: 1.4em;
    font-weight: bold;
    border-radius: 12px;
    margin: 25px 0;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Grid de Detalhes (Ficha Técnica) */
.details h2 {
    margin-bottom: 20px;
    color: #333;
    border-left: 5px solid #1a73e8;
    padding-left: 10px;
}

.ficha-wrapper {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    align-items: center; /* Centraliza o banner verticalmente com o texto */
}

.details-grid {
    flex: 1; /* Faz a ficha ocupar o espaço que sobrar */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ad-slot-sidebar {
    width: 300px; /* Largura fixa do banner quadrado */
    min-width: 300px;
}

/* Magia do Mobile */
@media (max-width: 768px) {
    .ficha-wrapper {
        flex-direction: column; /* Joga o banner para baixo da ficha */
    }
    .ad-slot-sidebar {
        width: 100%;
        min-width: unset;
    }
}

.details-grid p {
    margin: 0;
    font-size: 1.05em;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.details-grid strong {
    color: #1a73e8;
}

/* Selo de Dica */
.pro-tip {
    background: #eef6ff;
    border-left: 5px solid #1a73e8;
    padding: 15px;
    margin-top: 20px;
    border-radius: 6px;
    font-size: 0.95em;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Tags de Status */
.large-tag {
    font-size: 0.9em;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Seção de Comentários - Melhorada */
.comments-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.comment-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.input-group-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.comment-form input:focus, .comment-form textarea:focus {
    border-color: #1a73e8;
}

.status-tag {
    position: relative;
}

.submit-comment-btn {
    background-color: #1a73e8;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-comment-btn:hover {
    background-color: #0d60d8;
}

/* Lista de Comentários */
.comment-item {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    position: relative;
}

.comment-item strong {
    color: #1a73e8;
    font-size: 1.1em;
}

.comment-item small {
    color: #999;
    margin-bottom: 10px;
}

/* Responsividade */
@media (max-width: 600px) {
    .input-group-row {
        flex-direction: column;
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
}
