/* PalavrasTêmLetras — Simple Clean Design */

/* ── HERO ── */
.ptl-hero {
    background: #1e293b;
    padding: 50px 24px;
    text-align: center;
    border-radius: 0;
}
.ptl-hero h1 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}
.ptl-hero p {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 28px;
}

/* Search bar */
.ptl-search {
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: none;
}
.ptl-search input {
    flex: 1;
    border: none !important;
    outline: none !important;
    padding: 14px 18px;
    font-size: 15px;
    color: #1e293b;
    background: transparent;
    box-shadow: none !important;
}
.ptl-search input::placeholder { color: #94a3b8; }
.ptl-search button {
    background: #1D9E75;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.ptl-search button:hover { background: #0F6E56; }

/* ── TOOL CARDS ── */
.ptl-tools {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0;
}
.ptl-tool-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.18s;
    display: block;
}
.ptl-tool-card:hover {
    border-color: #1D9E75;
    transform: translateY(-2px);
}
.ptl-tool-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}
.ptl-tool-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    display: block;
}

/* ── LETTER GRID ── */
.ptl-letters {
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    gap: 8px;
    margin: 16px 0;
}
.ptl-letter {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 4px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none !important;
    transition: all 0.15s;
    display: block;
}
.ptl-letter:hover {
    background: #1D9E75;
    color: #fff !important;
    border-color: #1D9E75;
}

/* ── WORD PILLS ── */
.palavra-pill {
    display: inline-block;
    background: #e1f5ee;
    color: #0F6E56;
    border: 1px solid #9FE1CB;
    border-radius: 20px;
    padding: 4px 14px;
    margin: 3px 3px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.15s;
}
.palavra-pill:hover {
    background: #1D9E75;
    color: #fff !important;
    border-color: #1D9E75;
}
.palavras-lista { line-height: 2.5; }

/* ── PALAVRAS TABLE ── */
.palavras-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}
.palavras-table th {
    background: #1D9E75;
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-size: 13px;
}
.palavras-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    line-height: 2.2;
}
.palavras-table tr:last-child td { border-bottom: none; }
.palavras-table tr:nth-child(even) td { background: #f8fafc; }

/* ── MOBILE ── */
@media (max-width: 600px) {
    .ptl-tools { grid-template-columns: repeat(2, 1fr); }
    .ptl-letters { grid-template-columns: repeat(7, 1fr); }
    .ptl-hero h1 { font-size: 24px; }
    .ptl-search { flex-direction: column; border-radius: 10px; }
    .ptl-search button { border-radius: 0 0 10px 10px; }
}
