:root {
    --bg-color: #f9f9f9;
    --text-color: #333333;

    --gray-light: #e5e5e5;
    --gray-text: #666666;

    --accent-soft: #fdf2f2;

    --primary: #A83232;
    --primary-dark: #872b2d;

    --accent: #6fa900;

    --buy: #A83232;
    --buy-dark: #872b2d;

    --header: #A83232;

    --footer: #A83232;
    --footer-line: #853434a4;

    --page: #ffffff;
    --card: #ffffff;
    --soft: #f5f5f5;
    --border: #dedee3;

    --text: #555555;
    --heading: #555555;
    --muted: #777777;

    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

.site-header {
    background: var(--header);
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .12);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1250px;
    min-height: 62px;
    margin: 0 auto;
    padding: 8px 22px;
    display: grid;
    grid-template-columns: 55px 1fr auto;
    align-items: center;
    gap: 18px;
}

.menu-button {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #fff !important;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
}

.logo img {
    display: block;
    max-width: 305px;
    width: 100%;
    height: auto;
}


.menu-button {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .08);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px 14px;
}

.mobile-menu a {
    display: block;
    padding: 11px 5px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.mobile-menu a:last-child {
    border-bottom: 0;
}

.mobile-menu a:hover {
    color: var(--primary);
}

@media (min-width: 901px) {
    .mobile-menu {
        position: absolute;
        left: 0;
        right: 0;
    }
}

.main-nav {
    display: flex;
    gap: 27px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px;
}

.breadcrumb {
    margin-top: 14px;
    font-size: 13px;
    color: #999;
}

.breadcrumb a {
    color: #888;
    text-decoration: underline;
}

h1 {
    margin: 25px 0 34px;
    text-align: center;
    color: var(--heading);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.2;
}

.voice-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 0 auto 28px;
}

.voice-tabs a {
    text-align: center;
    padding: 13px 10px;
    color: var(--primary);
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
}

.voice-tabs a:hover {
    background: var(--soft);
}

.section-title {
    margin: 0 0 28px;
    padding: 7px 15px;
    text-align: center;
    background: #e9e9eb;
    color: #555;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 700;
}


/* Player customizado baseado no modelo atual */
.grid-play {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.grid-box-play {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    border: 1px solid #e6e1ef;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #faf8fd 100%);
    box-shadow: 0 5px 18px rgba(49, 35, 76, .07);
    overflow: hidden;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.grid-box-play:hover {
    transform: translateY(-3px);
    border-color: #d8cdea;
    box-shadow: 0 12px 30px rgba(49, 35, 76, .12);
}

.grid-play-20 {
    position: relative;
    width: 100%;
}

.custom-player {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 112px;
    padding: 14px 16px;
    border-radius: 16px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(130, 104, 180, .10), transparent 35%),
        linear-gradient(135deg, #f5f1fa, #eee9f6);
    border: 1px solid #e3dced;
}

.play-btn {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    min-width: 62px;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    box-shadow: 0 7px 16px rgba(91, 70, 150, .25);
    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.play-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 9px 22px rgba(91, 70, 150, .32);
}

.play-btn:active {
    transform: scale(.98);
}

.play-btn svg {
    width: 27px;
    height: 27px;
    fill: #fff;
}

.player-track {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
}

.waveform {
    position: absolute;
    left: 0;
    right: 0;
    top: 9px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3px;
    opacity: .38;
    pointer-events: none;
}

.waveform span {
    display: block;
    width: 3px;
    min-height: 7px;
    height: 18px;
    border-radius: 4px;
    background: linear-gradient(to bottom,
            rgba(91, 70, 150, .50),
            rgba(91, 70, 150, .16));
    transform-origin: center;
}

.custom-player.is-playing .waveform span {
    animation: waveformPulse .72s ease-in-out infinite alternate;
}

.custom-player.is-playing .waveform span:nth-child(2n) {
    animation-duration: .58s;
}

.custom-player.is-playing .waveform span:nth-child(3n) {
    animation-duration: .86s;
}

.custom-player.is-playing .waveform span:nth-child(4n) {
    animation-duration: .66s;
}

.custom-player.is-playing .waveform span:nth-child(5n) {
    animation-duration: .95s;
}

@keyframes waveformPulse {
    0% {
        transform: scaleY(.35);
        opacity: .35;
    }

    50% {
        transform: scaleY(1);
        opacity: .75;
    }

    100% {
        transform: scaleY(.55);
        opacity: .48;
    }
}

.waveform span:nth-child(1),
.waveform span:nth-child(9),
.waveform span:nth-child(20),
.waveform span:nth-child(31) {
    height: 15px;
}

.waveform span:nth-child(2),
.waveform span:nth-child(7),
.waveform span:nth-child(14),
.waveform span:nth-child(26),
.waveform span:nth-child(35) {
    height: 30px;
}

.waveform span:nth-child(3),
.waveform span:nth-child(11),
.waveform span:nth-child(18),
.waveform span:nth-child(29),
.waveform span:nth-child(38) {
    height: 42px;
}

.waveform span:nth-child(4),
.waveform span:nth-child(16),
.waveform span:nth-child(23),
.waveform span:nth-child(33) {
    height: 24px;
}

.waveform span:nth-child(5),
.waveform span:nth-child(12),
.waveform span:nth-child(21),
.waveform span:nth-child(30),
.waveform span:nth-child(37) {
    height: 35px;
}

.waveform span:nth-child(6),
.waveform span:nth-child(15),
.waveform span:nth-child(25),
.waveform span:nth-child(34) {
    height: 18px;
}

.progress-bar {
    position: relative;
    z-index: 3;
    height: 5px;
    margin-top: 45px;
    border-radius: 999px;
    background: rgba(91, 70, 150, .13);
    cursor: pointer;
    overflow: visible;
}

.progress-filled {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), #a995d2);
}

.progress-filled::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary);
    transform: translateY(-50%);
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .12);
}

.time-info {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    padding: 0 2px;
    font-size: .68rem;
    color: #777;
    font-variant-numeric: tabular-nums;
}

.grid-nome-play {
    margin-top: 2px;
    color: #292532;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
    min-height: 2.7em;
}

.grid-code-play {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 2px 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #77717f;
    font-size: .82rem;
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    appearance: none;
}

.grid-code-play strong {
    color: #514a5d;
    font-weight: 800;
}

.grid-code-play:hover strong {
    color: var(--primary);
    text-decoration: underline;
}

.codigo-copiado {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 7px);
    transform: translateX(-50%) translateY(4px);
    padding: 5px 10px;
    border-radius: 7px;
    background: #303149;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 20;
}

.codigo-copiado.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.troca-fundo-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    width: 100%;
}

.btn-troca-fundo {
    flex: 1;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 12px;
    border: 0;
    border-radius: 6px;
    background: #5f9b00;
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 3px 7px rgba(95, 155, 0, .18);
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.btn-troca-fundo:hover {
    background: #4f8200;
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(95, 155, 0, .25);
}

.troca-preco {
    display: block;
    width: 100%;
    color: #6f6679;
    font-size: .82rem;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
    min-height: 20px;
}

.rating span {
    color: #e1a72c;
    font-size: .95rem;
    line-height: 1;
}

.rating small {
    margin-left: 6px;
    color: #8b8693;
    font-size: .7rem;
}

.rating .estrela-vazia {
    color: #d9d5dc;
}

.rating .estrela-vazia {
    color: #d9d5dc;
}

.rating .estrela-meia {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    color: #d9d5dc;
    line-height: 1;
}

.rating .estrela-meia>span {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    color: #e1a72c;
    line-height: 1;
}



.bonus-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #e5dfef;
    border-radius: 10px;
    background: #faf8fd;
    color: #595361;
    font-size: .82rem;
}

.bonus-box strong {
    color: #3f7f35;
    font-size: 1rem;
    white-space: nowrap;
}

.troca-preco {
    color: #6f6679;
    font-size: .76rem;
    font-weight: 700;
    white-space: nowrap;
}

.compra-info {
    color: #85808c;
    font-size: .72rem;
    line-height: 1.35;
    text-align: center;
}

.grid-bt-comprar {
    width: 100%;
}

.form-comprar {
    width: 100%;
    margin: 0;
}

.btn-comprar {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 11px;
    background: linear-gradient(135deg, #a93638, #c34a4d);
    color: #fff;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .02em;
    cursor: pointer;
    box-shadow: 0 7px 15px rgba(169, 54, 56, .20);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        filter .18s ease;
}

.btn-comprar:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 10px 20px rgba(169, 54, 56, .28);
}

.btn-comprar:active {
    transform: translateY(0);
}

.icone-comprar {
    font-size: 1rem;
}

@media (max-width: 1000px) {
    .grid-play {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .grid-play {
        grid-template-columns: 1fr;
    }

    .grid-box-play {
        padding: 15px;
    }
}

.section-title {
    scroll-margin-top: 95px;
}

.play-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.1s;
}

.play-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.015);
}

.play-btn svg {
    width: 50px;
    height: 50px;
    fill: #fff;
}

.grid-nome-play {
    font-weight: bold;
    font-size: 1.1rem;
    color: #555;
}

.grid-code-play {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.badge-bonus {
    color: #555;
    padding: 0;
    border-radius: 0;
    font-size: 0.95rem;
    display: block;
    font-weight: 500;
    border: 0;
    background: transparent;
}

.badge-bonus span {
    display: block;
    margin-top: 0;
    color: #5f9b00;
    font-size: 1.25rem;
    font-weight: bold;
}

.btn-comprar {
    background: #a93638;
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
    display: block;
    width: 200px;
    max-width: 100%;
    margin: 8px auto 0;
    font-size: 1.05rem;
}

.btn-comprar:hover {
    background: #872b2d;
}


.voice-back {
    display: inline-flex;
    align-items: center;
    margin: -8px 0 18px;
    padding: 7px 12px;
    border: 1px solid #ddd9e8;
    border-radius: 999px;
    background: #faf9fc;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background .2s, border-color .2s;
}

.voice-back:hover {
    background: #f1eef8;
    border-color: #cfc5e4;
}

.voice-intro {
    text-align: center;
    color: #777;
    font-size: .92rem;
    margin: -14px auto 24px;
    max-width: 760px;
}

.loading-text {
    text-align: center;
    color: var(--gray-text);
    padding: 30px;
}

@media (max-width: 900px) {
    .grid-play {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .grid-play {
        grid-template-columns: 1fr;
    }
}

.seo-content {
    max-width: 1120px;
    margin: 20px auto 50px;
    padding-top: 24px;
    border-top: 1px dotted #bbb;
}

.seo-content h2 {
    color: #222;
    font-size: 20px;
}

.seo-content p {
    margin: 0 0 14px;
}

.related {
    margin-top: 25px;
}

.related a {
    display: inline-block;
    margin: 4px 8px 4px 0;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.site-footer {
    background: var(--footer);
    color: #fff;
    border-top: 3px solid var(--primary);
    margin-top: 50px;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 52px 22px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.footer-title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    margin: 7px 0;
}

.footer-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.footer-list a::before {
    content: "› ";
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 28px;
}

.social a {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #34334d;
    text-decoration: none;
    font-size: 0;
    flex-shrink: 0;
}

/* Facebook */
.social-facebook::before {
    content: "f";
    color: #34334d;
    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: bold;
    line-height: 1;
    margin-top: 6px;
}

/* Twitter */
.social-twitter::before {
    content: "𝕏";
    color: #34334d;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

/* Instagram */
.social-instagram::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 9px;
    top: 9px;
    border: 3px solid #34334d;
    border-radius: 6px;
    box-sizing: border-box;
}

.social-instagram::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    left: 15px;
    top: 15px;
    border: 2px solid #34334d;
    border-radius: 50%;
    box-sizing: border-box;
}

/* Instagram - ponto superior */
.social-instagram {
    overflow: visible;
}

/* YouTube */
.social-youtube::before {
    content: "";
    position: absolute;
    width: 19px;
    height: 13px;
    background: #34334d;
    border-radius: 4px;
}

.social-youtube::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    margin-left: 2px;
}

/* RSS */
.social-rss::before,
.social-rss::after {
    content: "";
    position: absolute;
    border: 3px solid #34334d;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 100% 0 0 0;
    transform: rotate(-45deg);
}

.social-rss::before {
    width: 23px;
    height: 23px;
    left: 7px;
    top: 6px;
}

.social-rss::after {
    width: 12px;
    height: 12px;
    left: 7px;
    top: 17px;
}

/* WhatsApp */
.whatsapp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
    font-weight: 600;
}

.whatsapp>div {
    position: relative;
    width: 58px;
    height: 58px;
    margin-bottom: 12px;
    font-size: 0 !important;
    background: #fff;
    border-radius: 50%;
}

.whatsapp>div::before {
    content: "";
    position: absolute;
    width: 38px;
    height: 38px;
    left: 7px;
    top: 7px;
    border: 3px solid #34334d;
    border-radius: 50%;
}

.whatsapp>div::after {
    content: "☎";
    position: absolute;
    left: 17px;
    top: 14px;
    color: #34334d;
    font-size: 22px;
    font-weight: bold;
    transform: rotate(-25deg);
}

.payment {
    border-top: 1px solid var(--footer-line);
    margin-top: 38px;
    padding-top: 26px;
}

.payment img {
    width: 68px;
    height: auto;
    display: block;
    margin-top: 10px;
}

.footer-links {
    border-top: 1px solid var(--footer-line);
    margin-top: 30px;
    padding-top: 24px;
}

.footer-links a {
    display: inline-block;
    margin: 0 7px 7px 0;
    padding: 4px 7px;
    border-radius: 3px;
    background: rgba(0, 0, 0, .15);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.states {
    border-top: 1px solid var(--footer-line);
    margin-top: 35px;
    padding-top: 28px;
}

.states a {
    display: inline-block;
    margin: 3px 2px;
    padding: 5px 7px;
    border-radius: 3px;
    background: rgba(0, 0, 0, .16);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.copyright {
    border-top: 1px solid var(--footer-line);
    margin-top: 30px;
    padding-top: 28px;
    text-align: center;
}

.copyright strong {
    display: block;
    font-size: 25px;
    margin-bottom: 8px;
}

.copyright small {
    display: block;
    margin-top: 5px;
}

@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: 45px 1fr;
    }

    .main-nav {
        display: none;
    }

    .logo img {
        max-width: 270px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .header-inner {
        padding: 9px 14px;
    }

    .logo img {
        max-width: 220px;
    }

    .container {
        padding: 0 12px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    h1 {
        font-size: 27px;
        margin: 22px 0 25px;
    }

    .voice-tabs {
        grid-template-columns: 1fr 1fr;
    }

    .voice-tabs a {
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .card {
        padding: 20px 15px 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.links-relacionados {
    margin-top: 20px;
}

.links-relacionados a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 4px;
    border-bottom: 1px solid #eeeaf4;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
}

.links-relacionados a::before {
    content: "›";
    flex: 0 0 auto;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.links-relacionados a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}


.search-area {
    width: 100%;
    max-width: 850px;
    margin: 18px auto 22px;
    text-align: center;
}

.search-title {
    margin-bottom: 8px;
    color: var(--heading);
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

#search-form {
    display: flex;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    gap: 8px;
}

#search-input {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    color: var(--text);
    font-size: .95rem;
    outline: none;
}

#search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(91, 70, 150, .12);
}

#search-form button {
    height: 42px;
    padding: 0 20px;
    border: 0;
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

#search-form button:hover {
    background: var(--primary-dark);
}

#search-results {
    width: 100%;
    max-width: 650px;
    margin: 12px auto 0;
    text-align: left;
}

.search-result {
    display: block;
    margin: 0 0 10px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    text-decoration: none;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.search-result:last-child {
    margin-bottom: 0;
}

.search-result:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.search-result strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: .98rem;
    line-height: 1.35;
}

.search-result span {
    display: block;
    color: var(--text);
    font-size: .88rem;
    line-height: 1.45;
}

.search-no-results,
.search-minimum {
    padding: 10px 12px;
    color: var(--text);
    font-size: .9rem;
    text-align: center;
}

@media (max-width: 600px) {
    .search-area {
        padding: 0 16px;
    }

    #search-form {
        max-width: 100%;
    }
}


/* WhatsApp flutuante */
.chat-dks {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9997;
    cursor: pointer;
}

.chat-dks img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Popup de atendimento */
#popup-aviso {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(420px, calc(100vw - 40px));
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .30);
    z-index: 9999;
    box-sizing: border-box;
    text-align: center;
}

#popup-aviso h2 {
    margin: 0 0 20px;
}

#popup-message {
    display: none;
    margin: 0 0 20px;
}

#popup-aviso .button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#popup-aviso button {
    border: 0;
    border-radius: 6px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
}

#live-message,
#phone-call {
    display: block;
}

#fechar-aviso {
    display: none;
    margin-top: 10px;
}

#overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 9998;
}


/* ============================================================
   LISTA DE CATEGORIAS
   ============================================================ */

.categoria-links {
    width: min(650px, 100%);
    margin: 35px auto 50px;
}

.categoria-link {
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr 30px;
    align-items: center;
    gap: 28px;
    width: 100%;
    min-height: 130px;
    padding: 20px 8px;
    box-sizing: border-box;
    border-top: 1px solid #e5e5e5;
    color: #4f3a91;
    text-decoration: none;
    transition: background .15s ease;
}

.categoria-link:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.categoria-link:hover {
    background: #faf9fd;
}

.categoria-play {
    position: relative;
    width: 84px;
    height: 84px;
    border: 10px solid #ed1745;
    border-radius: 50%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.categoria-play::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 25px solid #ed1745;
}

.categoria-titulo {
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--primary);
}

.categoria-seta {
    font-size: 42px;
    line-height: 1;
    font-weight: 300;
    color: var(--primary);
    text-align: center;
}

@media (max-width: 700px) {
    .categoria-links {
        margin-top: 25px;
    }

    .categoria-link {
        grid-template-columns: 65px 1fr 20px;
        gap: 16px;
        min-height: 105px;
        padding: 16px 5px;
    }

    .categoria-play {
        width: 60px;
        height: 60px;
        border-width: 8px;
    }

    .categoria-play::after {
        border-top-width: 11px;
        border-bottom-width: 11px;
        border-left-width: 18px;
    }

    .categoria-titulo {
        font-size: 21px;
    }

    .categoria-seta {
        font-size: 32px;
    }
}