/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
body { 
    margin: 0; 
    font-family: sans-serif, 'Poppins';
}

* {
    font-family: sans-serif, 'Poppins';
    -webkit-tap-highlight-color: transparent;
}

:root {
    --max-width: 1000px;
    --width: calc(100% - 20px);
}

.anchor { 
    margin-top: -100px; 
    width: 100%; 
    position: absolute; 
}

/* ===== TOPBAR ===== */
.topbar { 
    z-index: 10; 
    position: relative; 
    display: flex; 
    flex-direction: row; 
    justify-content: center; 
    padding: 8px 10px; 
    background: #111; 
    color: white; 
}

.topbar .container { 
    display: inherit; 
    column-gap: 20px; 
    row-gap: 5px; 
    flex-wrap: wrap; 
}

.topbar a { 
    display: flex; 
    text-decoration: none; 
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 
}

.topbar .icon,
.topbar .value { 
    transition: 200ms all ease; 
}

.topbar .icon { 
    width: 25px; 
    margin-right: 5px; 
    opacity: 0.5; 
    flex-shrink: 0; 
}

.topbar .value { 
    font-size: 13px; 
    font-weight: 300; 
    line-height: 13px; 
    color: #fff; 
    opacity: 0.9; 
    text-align: center; 
}

.topbar a:hover .icon { 
    opacity: 0.9; 
}

.topbar a:hover .value { 
    opacity: 1; 
}

/* ===== NAVBAR ===== */
.navbar { 
    position: sticky; 
    top: 0; 
    height: clamp(60px, 12vw, 80px); /* ✅ Altura responsiva */
    background: rgb(92, 0, 0); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    z-index: 9; 
}

.navbar .container { 
    width: var(--width); 
    max-width: var(--max-width); 
    height: 100%; 
    position: relative; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    column-gap: clamp(15px, 4vw, 30px); /* ✅ Gap responsivo */
    justify-content: space-between; 
    padding: 0 clamp(10px, 2vw, 20px); /* ✅ Padding lateral adicionado */
    box-sizing: border-box; /* ✅ Evita overflow */
}

.navbar .logo { 
    width: clamp(60px, 12vw, 90px); /* ✅ Logo responsivo */
    height: clamp(60px, 12vw, 90px);
    margin-top: clamp(8px, 3vw, 20px); /* ✅ Margem responsiva */
    display: flex; 
    border-radius: 50%; 
    transition: 200ms all ease; 
    flex-shrink: 0;
}

.navbar .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.navbar .menu { 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    column-gap: clamp(15px, 3vw, 25px); /* ✅ Gap responsivo */
    list-style: none; 
    margin: 0; 
    padding: 0; 
}

.navbar .menu a { 
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px); /* ✅ Padding responsivo */
    border-radius: 6px; 
    color: white; 
    font-size: clamp(14px, 2.5vw, 16px); /* ✅ Fonte responsiva */
    text-decoration: none; 
    font-weight: 400; 
    transition: all 0.3s ease; 
    position: relative;
}

.navbar .menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .menu a:hover::after {
    width: 70%;
}

.navbar .menu a.active { 
    background: rgba(255,255,255,0.1); 
}

.navbar .menu a:hover { 
    background: rgba(255,255,255,0.08); 
    transform: translateY(-1px);
}

.navbar .action-button { 
    color: rgb(91, 0, 0); 
    background: #fff; 
    font-size: clamp(14px, 2.5vw, 16px); /* ✅ Fonte responsiva */
    padding: clamp(8px, 2vw, 10px) clamp(16px, 3vw, 20px); /* ✅ Padding responsivo */
    font-weight: 500; 
    border-radius: 8px; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 1px solid transparent;
    flex-shrink: 0; /* ✅ Evita compressão */
}

.navbar .action-button:hover { 
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.3);
}

.navbar .action-button:active { 
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.navbar .mobile-menu-button { 
    display: none; 
}

/* User Menu */
.user-logged-menu { 
    position: relative; 
    display: inline-block; 
    flex-shrink: 0; /* ✅ Evita compressão */
}

.user-logged-btn { 
    background: rgba(255,255,255,0.1); 
    border: 1px solid rgba(255,255,255,0.2); 
    color: white; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: clamp(6px, 1.5vw, 8px); /* ✅ Gap responsivo */
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px); /* ✅ Padding responsivo */
    border-radius: 6px; 
    transition: all 0.3s ease;
    font-size: clamp(12px, 2.2vw, 14px); /* ✅ Fonte responsiva */
    white-space: nowrap; /* ✅ Evita quebra de linha */
}

.user-logged-btn:hover { 
    background: rgba(255,255,255,0.15); 
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

.user-dropdown { 
    display: none; 
    position: absolute; 
    top: 100%; 
    right: 0;
    background: white; 
    border: 1px solid #e0e0e0; 
    border-radius: 8px; 
    box-shadow: 0 8px 25px rgba(0,0,0,0.15); 
    min-width: 150px; 
    z-index: 1000; 
    margin-top: 8px; 
    overflow: hidden;
    text-align: center;
}

.user-info { 
    padding: 12px 16px; 
    border-bottom: 1px solid #f0f0f0; 
    color: #333; 
    font-weight: 500; 
    font-size: 14px; 
    background: #fafafa;
}

.user-dropdown a { 
    display: block; 
    padding: 12px 16px; 
    color: #666; 
    text-decoration: none; 
    border-bottom: 1px solid #f8f8f8; 
    transition: all 0.2s ease; 
    font-size: 14px; 
}

.user-dropdown a:hover { 
    background: #f8f8f8; 
    color: #5c0000;
    padding-left: 20px;
}

.user-dropdown a:last-child { 
    border-bottom: none; 
}

/* ===== FOOTER ===== */
.footer { 
    padding: clamp(20px, 5vw, 40px) 0; 
    background: #353535; 
}

.footer a { 
    text-decoration: none; 
}

.footer .container { 
    width: var(--width); 
    max-width: var(--max-width); 
    display: flex; 
    flex-direction: row; 
    margin: 0 auto; 
    column-gap: clamp(15px, 4vw, 30px); 
}

.footer .box { 
    width: 40%; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
}

.footer .brand { 
    row-gap: clamp(10px, 3vw, 20px); 
    align-items: center; 
}

.footer .nav { 
    width: 30%; 
}

.footer .links { 
    width: 30%; 
}

.footer .logo { 
    max-width: 70%; 
}

.footer .social-networks { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    flex-direction: row; 
    column-gap: clamp(5px, 2vw, 10px); 
    justify-content: center;
    flex-wrap: wrap;
}

.footer .social-networks li a { 
    display: flex; 
    opacity: 0.6; 
    transition: 300ms all ease; 
}

.footer .social-networks li a:hover { 
    opacity: 0.8; 
    transform: scale(1.1); 
}

.footer .social-networks img { 
    width: clamp(28px, 6vw, 38px); 
    height: clamp(28px, 6vw, 38px); 
}

.footer .brand-info { 
    color: rgba(255,255,255,0.7); 
    line-height: clamp(20px, 4vw, 28px); 
    font-weight: 300; 
    margin: 0; 
    text-align: center; 
    font-size: clamp(14px, 3vw, 16px);
}

.footer .poweredby { 
    display: inline; 
    opacity: 0.6; 
    transition: 200ms all ease; 
}

.footer .poweredby:hover { 
    opacity: 0.8; 
}

.footer .title { 
    font-size: clamp(16px, 4vw, 21px); 
    font-weight: 600; 
    color: rgba(255,255,255,1); 
    margin: 0 0 clamp(10px, 3vw, 20px) 0; 
}

.footer .menu { 
    display: flex; 
    flex-direction: column; 
    align-items: inherit; 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}

.footer .menu li { 
    padding: 0 0 0 2px; 
}

.footer .nav li { 
    margin: 0 0 clamp(6px, 2vw, 10px) 0; 
}

.footer .links li { 
    margin: 0 0 clamp(8px, 2.5vw, 15px) 0; 
}

.footer .menu li a { 
    transition: 200ms all ease; 
    color: rgba(255,255,255,0.6); 
    font-weight: 300; 
    font-size: clamp(14px, 3.5vw, 17px); 
    line-height: clamp(18px, 4vw, 21px); 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
}

.footer .menu li a:hover { 
    color: rgba(255,255,255,0.9); 
}

.footer .menu li a img { 
    width: clamp(18px, 4vw, 25px); 
    height: clamp(18px, 4vw, 25px);
    flex-shrink: 0; 
    margin-right: clamp(6px, 2vw, 10px); 
    opacity: 0.4; 
    transition: 200ms all ease; 
}

.footer .menu li a:hover img { 
    opacity: 0.8; 
}

.footer .line { 
    display: none; 
}

/* ===== FLOATING ACTION BUTTON ===== */
.floating-action-btn { 
    width: clamp(50px, 12vw, 70px); 
    height: clamp(50px, 12vw, 70px); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: fixed; 
    right: 0; 
    bottom: 0; 
    margin: clamp(15px, 4vw, 20px); 
    z-index: 1; 
    border-radius: 50%; 
    background: #25D366; 
    transition: 300ms all ease; 
    box-shadow: 0 clamp(8px, 2vw, 10px) clamp(8px, 2vw, 10px) rgba(0,0,0,0.1); 
}

.floating-action-btn img { 
    width: clamp(35px, 8vw, 50px); 
    height: clamp(35px, 8vw, 50px); 
}

.floating-action-btn:hover { 
    box-shadow: 0 clamp(12px, 3vw, 15px) clamp(8px, 2vw, 10px) rgba(0,0,0,0.1); 
    transform: translateY(-3px) scale(1.06); 
}

.floating-action-btn.hidden { 
    opacity: 0; 
    visibility: hidden; 
    margin-right: 0; 
}

/* ===== FLOATING ACTION BUTTON MOBILE ===== */
@media screen and (max-width: 1100px) and (min-width: 769px) {
    /* ✅ HORIZONTAL 844px - iPhone Pro Max landscape */
    .floating-action-btn { 
        width: clamp(40px, 8vw, 55px); 
        height: clamp(40px, 8vw, 55px); 
        margin: clamp(10px, 2.5vw, 15px); 
        box-shadow: 0 clamp(5px, 1.2vw, 7px) clamp(5px, 1.2vw, 7px) rgba(0,0,0,0.15); 
    }
    
    .floating-action-btn img { 
        width: clamp(25px, 5.5vw, 35px); 
        height: clamp(25px, 5.5vw, 35px); 
    }
    
    .floating-action-btn:hover { 
        box-shadow: 0 clamp(7px, 1.8vw, 10px) clamp(5px, 1.2vw, 7px) rgba(0,0,0,0.15); 
        transform: translateY(-2px) scale(1.03); 
    }
}

@media screen and (max-width: 768px) {
    .floating-action-btn { 
        width: clamp(45px, 10vw, 60px); 
        height: clamp(45px, 10vw, 60px); 
        margin: clamp(12px, 3vw, 18px); 
        box-shadow: 0 clamp(6px, 1.5vw, 8px) clamp(6px, 1.5vw, 8px) rgba(0,0,0,0.15); 
    }
    
    .floating-action-btn img { 
        width: clamp(30px, 7vw, 40px); 
        height: clamp(30px, 7vw, 40px); 
    }
    
    .floating-action-btn:hover { 
        box-shadow: 0 clamp(8px, 2vw, 12px) clamp(6px, 1.5vw, 8px) rgba(0,0,0,0.15); 
        transform: translateY(-2px) scale(1.04); 
    }
}

@media screen and (max-width: 480px) {
    .floating-action-btn { 
        width: clamp(40px, 9vw, 55px); 
        height: clamp(40px, 9vw, 55px); 
        margin: clamp(10px, 2.5vw, 15px); 
        box-shadow: 0 clamp(5px, 1.2vw, 7px) clamp(5px, 1.2vw, 7px) rgba(0,0,0,0.15); 
    }
    
    .floating-action-btn img { 
        width: clamp(25px, 6vw, 35px); 
        height: clamp(25px, 6vw, 35px); 
    }
    
    .floating-action-btn:hover { 
        box-shadow: 0 clamp(7px, 1.8vw, 10px) clamp(5px, 1.2vw, 7px) rgba(0,0,0,0.15); 
        transform: translateY(-1px) scale(1.02); 
    }
}

@media screen and (max-width: 320px) {
    .floating-action-btn { 
        width: clamp(35px, 8vw, 50px); 
        height: clamp(35px, 8vw, 50px); 
        margin: clamp(8px, 2vw, 12px); 
        box-shadow: 0 clamp(4px, 1vw, 6px) clamp(4px, 1vw, 6px) rgba(0,0,0,0.15); 
    }
    
    .floating-action-btn img { 
        width: clamp(22px, 5vw, 30px); 
        height: clamp(22px, 5vw, 30px); 
    }
    
    .floating-action-btn:hover { 
        box-shadow: 0 clamp(6px, 1.5vw, 8px) clamp(4px, 1vw, 6px) rgba(0,0,0,0.15); 
        transform: translateY(-1px) scale(1.01); 
    }
}

/* ===== HERO SECTION ===== */
.hero-section { 
    background: #F0F0F0 url(../img/hero-section-bg.png) repeat center; 
    padding: 80px 0; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.hero-section .container { 
    width: var(--width); 
    max-width: var(--max-width); 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: space-between; 
}

.hero-section .text { 
    width: 415px; 
    padding: 35px; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 40px; 
    background: #fff; 
    border-radius: 24px; 
    box-shadow: 0 5px 10px rgba(0,0,0,0.1); 
}

.hero-section .illus { 
    width: 470px; 
}

.hero-section h1,
.hero-section h2 { 
    margin: 0; 
}

.hero-section h1 { 
    font-family: "Playfair Display"; 
    font-size: 48px; 
    font-weight: 500; 
    color: #AC1D1D; 
}

.hero-section h1 span { 
    font-family: inherit; 
    background: #E8E8E8; 
    border-radius: 10px; 
    padding: 0 8px; 
}

.hero-section h2 { 
    font-size: 24px; 
    color: #424242; 
    font-weight: 400; 
}

.hero-section .action-button { 
    color: white; 
    background: #AC1D1D; 
    font-size: 18px; 
    padding: 10px 20px; 
    font-weight: 500; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: 200ms all ease; 
}

.hero-section .action-button:hover { 
    box-shadow: 0 0 0 4px rgba(172, 29, 29, 0.3); 
}

.hero-section .action-button:active { 
    box-shadow: 0 0 0 2px rgba(172, 29, 29, 0.3); 
}

/* ===== VIDEO SECTION ===== */
.video-section { 
    background: linear-gradient(to bottom, #2c2c2c, #1a1a1a); 
    padding: 80px 0; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.video-section .container { 
    width: var(--width); 
    max-width: var(--max-width); 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: space-between; 
}

.video-section .video { 
    width: 560px; 
    height: 315px; 
    position: relative; 
    background: #111; 
    border-radius: 20px; 
    overflow: hidden; 
}

.video-section .video-cover { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    background-position: center; 
    background-size: cover; 
    cursor: pointer; 
    display: flex; 
    transition: 400ms all ease; 
    z-index: 1; 
}

.video-section .video-cover.hidden { 
    opacity: 0; 
    visibility: hidden; 
}

.video-section #player { 
    width: 100%; 
    height: 100%; 
    position: absolute; 
}

.video-section .btn { 
    margin: auto; 
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    background: rgba(172, 29, 29, 0.75); 
    display: flex; 
    transition: 500ms all ease; 
}

.video-section .play { 
    margin: auto; 
    width: 30px; 
    padding-left: 5px; 
}

.video-section .video:hover .btn { 
    transform: scale(1.1); 
}

.video-section .text { 
    width: 400px; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 40px; 
    border-radius: 24px; 
}

.video-section h1,
.video-section h2 { 
    margin: 0; 
    color: #fff; 
}

.video-section h1 { 
    font-family: "Playfair Display"; 
    font-size: 48px; 
    font-weight: 500; 
}

.video-section h2 { 
    font-size: 20px; 
    font-weight: 300; 
}

.video-section .action-button { 
    color: white; 
    background: #AC1D1D; 
    font-size: 18px; 
    padding: 10px 20px; 
    font-weight: 500; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: 200ms all ease; 
}

.video-section .action-button:hover { 
    box-shadow: 0 0 0 4px rgba(172, 29, 29, 0.5); 
}

.video-section .action-button:active { 
    box-shadow: 0 0 0 2px rgba(172, 29, 29, 0.5); 
}

/* ===== FAQ SECTION ===== */
.faq { 
    padding: 80px 0; 
}

.faq .container { 
    width: var(--width); 
    max-width: var(--max-width); 
    margin: 0 auto; 
    display: flex; 
    flex-direction: row; 
    gap: 20px; 
}

.faq .header { 
    width: 400px; 
    flex-shrink: 0; 
}

.faq .header h1 { 
    font-family: "Playfair Display"; 
    font-size: 48px; 
    font-weight: 500; 
    margin: 0 0 30px 0; 
}

.faq .header h2 { 
    font-size: 18px; 
    font-weight: 600; 
    color: #AC1D1D; 
    margin: 0 0 10px 0; 
}

.faq .questions { 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
}

.faq .question { 
    box-shadow: 0 1px rgba(0,0,0,0.1); 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}

.faq .question.hidden { 
    display: none; 
}

.faq .question .title { 
    cursor: pointer; 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    gap: 20px; 
    padding: 10px 0; 
}

.faq .question h3 { 
    font-weight: 500; 
    flex-grow: 1; 
    margin: 0; 
    font-size: 16px; 
}

.faq .question .icon { 
    flex-shrink: 0; 
    font-size: 24px; 
    width: 30px; 
    text-align: center; 
}

.faq .question p { 
    display: none; 
    margin: 0; 
    padding-bottom: 20px; 
}

.faq .question.active h3 { 
    color: #AC1D1D; 
}

.faq .question.active p { 
    display: block; 
}

.faq .action-button { 
    color: white; 
    background: #AC1D1D; 
    padding: 10px 20px; 
    font-size: 18px; 
    font-weight: 500; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: 200ms all ease; 
}

.faq .action-button:hover { 
    box-shadow: 0 0 0 4px rgba(172, 29, 29, 0.5); 
}

.faq .action-button:active { 
    box-shadow: 0 0 0 2px rgba(172, 29, 29, 0.5); 
}

.faq .button-container { 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 
}

.faq .load-button { 
    display: inline-block; 
    color: #222; 
    box-shadow: rgba(0,0,0,0.1) 0 0 0 1px; 
    padding: 6px 14px; 
    font-size: 16px; 
    font-weight: 600; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: 200ms all ease; 
    margin: 20px; 
    cursor: pointer; 
}

.faq .load-button:hover { 
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05); 
}

.faq .load-button:active { 
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05); 
}

.faq .load-button.hidden { 
    display: none; 
}

/* ===== GENERAL PAGE ===== */
.page .container { 
    width: var(--width); 
    max-width: var(--max-width); 
    padding: 50px 0; 
    margin: 0 auto; 
}

.page .page-title { 
    max-width: 700px; 
    margin: 30px auto; 
    font-family: "Playfair Display"; 
    font-size: 36px; 
    line-height: 40px; 
    font-weight: 500; 
    color: #AC1D1D; 
    text-align: center; 
}

.page .page-subtitle { 
    max-width: 700px; 
    margin: 0 auto; 
    font-size: 18px; 
    color: rgba(0,0,0,0.8); 
    text-align: center; 
    font-weight: 400; 
}

/* ===== PLANS HOME ===== */
.plans-home { 
    background: linear-gradient(to bottom, #fff, #eee); 
    padding: 80px 0; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.plans-home .header { 
    width: var(--width); 
    max-width: 500px; 
    margin: 0 auto 70px auto; 
    flex-shrink: 0; 
    text-align: center; 
}

.plans-home .header h1 { 
    font-family: "Playfair Display"; 
    font-size: 48px; 
    font-weight: 500; 
    margin: 0; 
}

.plans-home .header h2 { 
    font-size: 18px; 
    font-weight: 400; 
    color: rgba(0,0,0,0.6); 
    margin: 30px 0 0 0; 
}

.plans-home .columns { 
    width: calc(100% - 40px); 
    margin: 0 auto; 
    display: flex; 
    flex-direction: row; 
    justify-content: center; 
    gap: 30px; 
    flex-wrap: wrap; 
}

.plans-home .plan { 
    width: 300px; 
    background: #fff; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1), 0 0 0 4px rgba(92, 0, 0, 0); 
    border-radius: 20px; 
    transition: 300ms all linear; 
    position: relative; 
    padding-bottom: 20px; 
}

.plans-home .plan:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1), 0 0 0 4px rgba(92, 0, 0, 1); 
}

.plans-home .plan-title { 
    font-size: 21px; 
    padding: 25px 0 0 0; 
    text-align: center; 
    margin: 0; 
}

.plans-home .plan-price { 
    font-weight: bold; 
    font-size: 28px; 
    line-height: 28px; 
    padding: 10px 0 0 0; 
    text-align: center; 
    color: rgb(92, 0, 0); 
    margin: 0; 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 
    gap: 5px; 
}

.plans-home .plan-price span { 
    font-size: 18px; 
    line-height: 18px; 
    color: #666; 
    font-weight: normal; 
}

.plans-home .plan-description { 
    font-size: 16px; 
    line-height: 18px; 
    padding: 15px 15px 10px 15px; 
    margin: 0; 
    text-align: center; 
    color: #888; 
}

.plans-home .plan-attribute { 
    padding: 8px 10px; 
    box-shadow: 0 -1px rgba(0,0,0,0.1); 
    text-align: center; 
}

.plans-home .plan-button { 
    width: calc(100% - 40px); 
    margin: 10px auto 20px auto; 
    display: block; 
    text-decoration: none; 
    background: rgb(92, 0, 0); 
    color: #fff; 
    line-height: 40px; 
    border-radius: 6px; 
    text-align: center; 
    border: 0; 
    font-size: 18px; 
    outline: none; 
    transition: 300ms all ease; 
}

.plans-home .plan-button:hover { 
    box-shadow: 0 0 0 3px rgba(92, 0, 0, 0.5); 
}

.plans-home .plan-badge { 
    position: absolute; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%) translateY(-50%); 
    padding: 0 10px; 
    border-radius: 12px; 
    line-height: 24px; 
    font-size: 13px; 
    background: #5B0000; 
    color: #fff; 
}

.plans-home .action-button { 
    display: inline-block; 
    color: white; 
    background: #AC1D1D; 
    font-size: 18px; 
    padding: 10px 20px; 
    margin: 40px 0 0 0; 
    font-weight: 500; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: 200ms all ease; 
}

.plans-home .action-button:hover { 
    box-shadow: 0 0 0 4px rgba(172, 29, 29, 0.5); 
}

.plans-home .action-button:active { 
    box-shadow: 0 0 0 2px rgba(172, 29, 29, 0.5); 
}

/* ===== TESTIMONIALS ===== */
.testimonials { 
    padding: 80px 0; 
    background: linear-gradient(to bottom, #eee, #fff); 
}

.testimonials .container { 
    width: calc(100% - 40px); 
    max-width: 1300px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 40px; 
}

.testimonials .header { 
    max-width: 600px; 
    width: calc(100% - 80px); 
    position: relative; 
    text-align: center; 
    padding: 40px; 
    border-radius: 10px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
    background: #fff; 
    flex-shrink: 0; 
}

.testimonials .header .icon { 
    position: absolute; 
    top: 0; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    background: #fff; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.testimonials .header .icon svg { 
    width: 50px; 
}

.testimonials .header h1 { 
    font-family: "Playfair Display"; 
    font-size: 36px; 
    line-height: 40px; 
    color: #AC1D1D; 
    font-weight: 500; 
    margin: 0 0 30px 0; 
    position: relative; 
    z-index: 1; 
}

.testimonials .header .average { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.testimonials .header .average-x { 
    display: flex; 
    flex-direction: row; 
    gap: 40px; 
    align-items: center; 
    justify-content: center; 
}

.testimonials .header .num { 
    font-size: 28px; 
    font-weight: bold; 
    color: #FCBD06; 
    margin: 0; 
}

.testimonials .header .stars { 
    display: flex; 
    flex-direction: row; 
    gap: 5px; 
    align-items: center; 
    justify-content: center; 
    padding-bottom: 6px; 
}

.testimonials .grid { 
    display: flex; 
    flex-direction: row; 
    flex-wrap: wrap; 
    gap: 30px; 
    width: 100%; 
    margin-top: 50px; 
    align-items: flex-start; 
    justify-content: center; 
}

.testimonials .item { 
    width: 260px; 
    min-height: 240px; 
    padding: 20px; 
    background: #fff; 
    border-radius: 10px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 10px; 
}

.testimonials .item .person { 
    display: flex; 
    flex-direction: row; 
    gap: 15px; 
    align-items: center; 
}

.testimonials .item .person .avatar { 
    width: 50px; 
    height: 50px; 
    background: #eee; 
    object-fit: cover; 
    border-radius: 50%; 
    flex-shrink: 0; 
}

.testimonials .item .person .info { 
    min-height: 63px; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
}

.testimonials .item .person h2 { 
    font-size: 16px; 
    line-height: 18px; 
    font-weight: bold; 
    margin: 0; 
}

.testimonials .item .person h2 a { 
    text-decoration: none; 
    color: #000; 
    transition: 200ms all ease; 
}

.testimonials .item .person h2 a:hover { 
    color: #AC1D1D; 
}

.testimonials .item .stars { 
    display: flex; 
    flex-direction: row; 
    gap: 2px; 
    align-items: center; 
    padding-bottom: 6px; 
}

.testimonials .item img { 
    width: 15px; 
}

.testimonials .item p { 
    margin: 0; 
}

.testimonials .item .date { 
    font-size: 14px; 
    color: rgba(0, 0, 0, 0.4); 
}

.testimonials .item .text { 
    font-size: 15px; 
    line-height: 20px; 
    color: rgba(0, 0, 0, 0.8); 
    max-height: 100px; 
    overflow: hidden; 
    white-space: normal; 
    text-overflow: ellipsis; 
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 5; 
    transition: max-height 500ms ease; 
}

.testimonials .item .text.expanded { 
    max-height: 600px; 
    -webkit-line-clamp: unset; 
}

.testimonials .item .read-more { 
    color: rgba(172, 29, 29, 1); 
    cursor: pointer; 
    text-decoration: underline; 
    margin-left: auto; 
}

.testimonials .hidden { 
    display: none; 
}

.testimonials .load-button { 
    display: inline-block; 
    color: #222; 
    box-shadow: rgba(0,0,0,0.1) 0 0 0 1px; 
    padding: 6px 14px; 
    font-size: 16px; 
    font-weight: 600; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: 200ms all ease; 
    margin: 20px auto 0 auto; 
    cursor: pointer; 
}

.testimonials .load-button:hover { 
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05); 
}

.testimonials .load-button:active { 
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05); 
}

.testimonials .load-button.hidden { 
    display: none; 
}

.testimonials .action-button { 
    display: inline-block; 
    color: white; 
    background: #AC1D1D; 
    font-size: 18px; 
    padding: 10px 20px; 
    margin: 0; 
    font-weight: 500; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: 200ms all ease; 
}

.testimonials .action-button:hover { 
    box-shadow: 0 0 0 4px rgba(172, 29, 29, 0.5); 
}

.testimonials .action-button:active { 
    box-shadow: 0 0 0 2px rgba(172, 29, 29, 0.5); 
}

/* ===== PLANS PAGE ===== */
.plans { 
    background: #eee; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    padding: 50px 0 80px 0; 
}

.plans .info { 
    width: var(--width); 
    max-width: 800px; 
    position: relative; 
    border-radius: 20px; 
    margin: 50px auto; 
    background: #fff; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}

.plans .p { 
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.plans .info .select { 
    position: relative; 
    z-index: 5; 
}

.plans .info .select .button { 
    display: inline-flex; 
    flex-direction: row; 
    gap: 10px; 
    align-items: center; 
    cursor: pointer; 
    user-select: none; 
    margin: 0 auto; 
    color: rgb(92, 0, 0); 
    line-height: 40px; 
    margin-bottom: 20px; 
    padding: 0 16px; 
    background: #fff; 
    border-radius: 8px; 
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1); 
    font-size: 18px; 
    font-weight: bold; 
    transition: 200ms all ease; 
}

.plans .info .select .button:hover { 
    background: rgba(0,0,0,0.05); 
}

.plans .info .select .dropdown { 
    position: absolute; 
    top: 40px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: #fff; 
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1), 0 10px 20px rgba(0,0,0,0.2); 
    border-radius: 5px; 
    width: 280px; 
    opacity: 0; 
    visibility: hidden; 
    transition: 300ms all ease; 
    overflow: hidden; 
}

.plans .info .select.active .dropdown { 
    margin-top: 10px; 
    opacity: 1; 
    visibility: visible; 
}

.plans .info .select .dropdown a { 
    color: #000; 
    text-decoration: none; 
    display: block; 
    box-shadow: 0 1px rgba(0,0,0,0.1); 
    line-height: 18px; 
    text-align: center; 
    font-weight: 500; 
    padding: 10px; 
    transition: 300ms all ease; 
}

.plans .info .select .dropdown a:hover { 
    color: rgb(92, 0, 0); 
    background: rgba(0,0,0,0.05); 
    box-shadow: 0 1px rgba(0,0,0,0.1); 
}

.plans .info iframe { 
    margin: 0 auto; 
    max-width: 100%; 
    position: relative; 
    display: block; 
    text-align: center; 
}

.plans .columns { 
    width: calc(100% - 40px); 
    margin: 0 auto; 
    display: flex; 
    flex-direction: row; 
    align-items: flex-start; 
    justify-content: center; 
    gap: 30px; 
    flex-wrap: wrap; 
}

.plans .plan { 
    width: 300px; 
    background: #fff; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1), 0 0 0 4px rgba(92, 0, 0, 0); 
    border-radius: 20px; 
    transition: 300ms all linear; 
    position: relative; 
    padding-bottom: 20px; 
}

.plans .plan:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1), 0 0 0 4px rgba(92, 0, 0, 1); 
}

.plans .plan-title { 
    font-size: 21px; 
    padding: 25px 0 0 0; 
    text-align: center; 
    margin: 0; 
}

.plans .plan-price { 
    font-weight: bold; 
    font-size: 28px; 
    line-height: 28px; 
    padding: 10px 0 0 0; 
    text-align: center; 
    color: rgb(92, 0, 0); 
    margin: 0; 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 
    gap: 5px; 
}

.plans .plan-price span { 
    font-size: 18px; 
    line-height: 18px; 
    color: #666; 
    font-weight: normal; 
}

.plans .plan-description { 
    font-size: 16px; 
    line-height: 18px; 
    padding: 15px 15px 10px 15px; 
    margin: 0; 
    text-align: center; 
    color: #888; 
}

.plans .plan-attribute { 
    padding: 8px 10px; 
    box-shadow: 0 -1px rgba(0,0,0,0.1); 
    text-align: center; 
}

.plans .plan-button { 
    width: calc(100% - 40px); 
    margin: 10px auto 20px auto; 
    display: block; 
    text-decoration: none; 
    background: rgb(92, 0, 0); 
    color: #fff; 
    line-height: 40px; 
    border-radius: 6px; 
    text-align: center; 
    border: 0; 
    font-size: 18px; 
    outline: none; 
    transition: 300ms all ease; 
}

.plans .plan-button:hover { 
    box-shadow: 0 0 0 3px rgba(92, 0, 0, 0.5); 
}

.plans .plan-badge { 
    position: absolute; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%) translateY(-50%); 
    padding: 0 10px; 
    border-radius: 12px; 
    line-height: 24px; 
    font-size: 13px; 
    background: #5B0000; 
    color: #fff; 
}

/* ===== ERROR 404 ===== */
.error-page .container { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 40px; 
}

.error-page .page-title { 
    margin-bottom: 0 !important; 
}

.error-page a { 
    border: 0; 
    cursor: pointer; 
    display: inline-block; 
    color: white; 
    background: #AC1D1D; 
    font-size: 18px; 
    padding: 10px 20px; 
    font-weight: 500; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: 200ms all ease; 
}

.error-page a:hover { 
    box-shadow: 0 0 0 4px rgba(172, 29, 29, 0.5); 
}

.error-page a:active { 
    box-shadow: 0 0 0 2px rgba(172, 29, 29, 0.5); 
}

.error-page .illustration { 
    width: 100%; 
    max-width: 300px; 
    margin: 0 auto; 
    display: block; 
}

/* ===== CONTACT PAGE ===== */
.contact .container { 
    max-width: 500px; 
}

.contact form { 
    margin: 40px auto 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.contact label { 
    font-size: 18px; 
    font-weight: 500; 
    cursor: pointer; 
    margin: 0 0 5px 0; 
    display: inline-block; 
}

.contact input[type=text],
.contact input[type=email] { 
    height: 45px; 
    padding: 0 15px; 
}

.contact textarea { 
    padding: 15px 15px; 
    height: 200px; 
}

.contact input[type=text],
.contact input[type=email],
.contact textarea { 
    width: 100%; 
    border: 0; 
    outline: none; 
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1); 
    border-radius: 6px; 
    font-size: 16px; 
    transition: 200ms all ease; 
}

.contact input[type=text]:hover,
.contact input[type=email]:hover,
.contact textarea:hover { 
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.3); 
}

.contact input[type=text]:focus,
.contact input[type=email]:focus,
.contact textarea:focus { 
    box-shadow: inset 0 0 0 2px rgba(92, 0, 0, 1), 0 0 0 3px rgba(92, 0, 0, 0.2); 
}

.contact .error { 
    font-size: 14px; 
    color: rgb(226, 36, 36); 
    margin-top: 10px; 
    display: none; 
}

.contact .error.active { 
    display: block; 
}

.contact button[type=submit] { 
    border: 0; 
    cursor: pointer; 
    display: inline-block; 
    color: white; 
    background: #AC1D1D; 
    font-size: 18px; 
    padding: 10px 20px; 
    font-weight: 500; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: 200ms all ease; 
}

.contact button[type=submit]:hover { 
    box-shadow: 0 0 0 4px rgba(172, 29, 29, 0.5); 
}

.contact button[type=submit]:active { 
    box-shadow: 0 0 0 2px rgba(172, 29, 29, 0.5); 
}

/* ===== SENT PAGE ===== */
.sent-page .container { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 40px; 
}

.sent-page .page-title { 
    margin: 0 !important; 
}

.sent-page a { 
    border: 0; 
    cursor: pointer; 
    display: inline-block; 
    color: white; 
    background: #AC1D1D; 
    font-size: 18px; 
    padding: 10px 20px; 
    font-weight: 500; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: 200ms all ease; 
}

.sent-page a:hover { 
    box-shadow: 0 0 0 4px rgba(172, 29, 29, 0.5); 
}

.sent-page a:active { 
    box-shadow: 0 0 0 2px rgba(172, 29, 29, 0.5); 
}

.sent-page .illustration { 
    width: 100%; 
    max-width: 300px; 
    margin: 0 auto; 
    display: block; 
}

/* ===== BLOG ===== */
.blog .content { 
    display: flex; 
    flex-direction: row; 
    gap: 20px; 
    padding-top: 20px; 
    align-items: flex-start; 
}

.blog .posts { 
    flex-grow: 1; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    align-content: flex-start; 
    justify-content: center; 
}

.blog .posts .item { 
    width: 320px; 
    display: flex; 
    flex-direction: column; 
    gap: 5px; 
    padding: 10px; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); 
    border-radius: 6px; 
    text-decoration: none; 
    transition: 200ms all ease; 
    text-align: center; 
}

.blog .posts .item .cover { 
    width: 320px; 
    height: calc(320px * (9 / 16)); 
    background: rgba(0,0,0,0.1); 
    object-fit: cover; 
    position: relative; 
}

.blog .posts .item .cover img { 
    object-fit: cover; 
    width: 100%; 
    height: 100%; 
    border-radius: 8px; 
}

.blog .posts .item h2.title { 
    font-size: 21px; 
    margin: 5px 0 0 0; 
    color: rgb(92, 0, 0); 
}

.blog .posts .item p.summary { 
    font-size: 15px; 
    margin: 0; 
    color: rgba(0, 0, 0, 0.6); 
}

.blog .posts .item:hover { 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    transform: translateY(-5px); 
}

.blog .sidebar { 
    width: 280px; 
    flex-shrink: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.blog .sidebar .card { 
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); 
    border-radius: 6px; 
}

.blog .sidebar .card .header { 
    font-size: 18px; 
    font-weight: 600; 
    padding: 12px; 
    box-shadow: 0 1px rgba(0,0,0,0.1); 
    text-align: center; 
}

.blog .sidebar .card .body { 
    display: flex; 
    flex-direction: column; 
    padding: 12px; 
}

.blog .sidebar .card .link-list { 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
}

.blog .sidebar .card .link-list a.item { 
    box-shadow: 0 1px rgba(0,0,0,0.1); 
    padding: 10px; 
    transition: 200ms all ease; 
    text-decoration: none; 
    color: rgb(92, 0, 0); 
}

.blog .sidebar .card .link-list a.item:hover { 
    background: rgba(0,0,0,0.05); 
}

.blog .sidebar .card .badge-list { 
    display: flex; 
    flex-direction: row; 
    gap: 5px; 
    flex-wrap: wrap; 
    align-items: center; 
    justify-content: center; 
}

.blog .sidebar .card .badge-list a.item { 
    padding: 2px 4px; 
    background: rgba(0,0,0,0.05); 
    border-radius: 5px; 
    text-decoration: none; 
    font-size: 12px; 
    color: rgb(92, 0, 0); 
    font-weight: 600; 
    transition: 200ms all ease; 
    text-align: center; 
}

.blog .sidebar .card .badge-list a.item:hover { 
    background: rgb(92, 0, 0); 
    color: #fff; 
}

/* ===== BLOG - CATEGORIAS E PAGINAÇÃO ===== */
.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 5px;
}

.category-item .item {
    flex: 1;
    text-decoration: none;
    padding: 8px 12px;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 4px;
    word-break: break-word;
}

.category-item .item:hover {
    background: #f8f9fa;
    color: #5c0000;
}

.category-item .item.active {
    color: #5c0000;
    font-weight: bold;
    background: #f8f9fa;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    color: #666;
    font-size: 0.8em;
    transition: all 0.3s ease;
    border-radius: 4px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-toggle:hover {
    color: #5c0000;
    background: #f8f9fa;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
    width: 12px;
    text-align: center;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.subcategories {
    margin-left: 15px;
    border-left: 2px solid #5c0000;
    padding-left: 10px;
    display: none;
    margin-bottom: 10px;
}

.subcategories.show {
    display: block !important;
}

.subitem {
    display: block;
    padding: 5px 10px;
    color: #666;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-bottom: 2px;
    word-break: break-word;
}

.subitem:hover {
    color: #5c0000;
    background: #f8f9fa;
}

.subitem.active {
    color: #5c0000;
    background: #f8f9fa;
    font-weight: bold;
}

/* Breadcrumb */
.breadcrumb-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 0px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f4;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item {
    color: #5c0000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #8b0000;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 600;
}

.breadcrumb-separator {
    color: #adb5bd;
    font-weight: bold;
}

.results-summary {
    display: flex;
    align-items: center;
    gap: 15px;
}

.total-posts {
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85em;
    color: #495057;
    font-weight: 500;
}

.current-page {
    color: #5c0000;
    font-size: 0.85em;
    font-weight: 600;
}

/* Paginação */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 10px;
}

.pagination {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination a:hover {
    background: #5c0000;
    color: white;
    border-color: #5c0000;
}

.pagination .current {
    background: #5c0000;
    color: white;
    border-color: #5c0000;
}

.pagination .disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f8f9fa;
}

.pagination .disabled:hover {
    background: #f8f9fa;
    color: #ccc;
    border-color: #ddd;
}

.pagination-info {
    color: #666;
    font-size: 0.9em;
    margin-left: 20px;
}

/* ===== POST ===== */
.post .page-subtitle { 
    margin-bottom: 30px; 
}

.post .attributes { 
    display: flex; 
    flex-direction: row; 
    column-gap: 16px; 
    row-gap: 5px; 
    border-radius: 5px; 
    align-items: center; 
    justify-content: center; 
    flex-wrap: wrap; 
    font-size: 13px; 
    margin: 20px 0; 
}

.post .attributes .item { 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    gap: 5px; 
    flex-wrap: wrap; 
}

.post .attributes .item .icon { 
    fill: rgb(91, 0, 0); 
    width: 16px; 
}

.post .attributes .item a { 
    color: rgb(91, 0, 0); 
    text-decoration: none; 
    font-weight: 600; 
}

.post .attributes .item a:hover { 
    text-decoration: underline; 
}

.post .keywords { 
    display: flex; 
    flex-direction: row; 
    flex-wrap: wrap; 
    gap: 5px; 
    align-items: center; 
}

.post .keywords .title { 
    flex-wrap: nowrap; 
    display: flex; 
    flex-direction: row; 
    gap: 5px; 
}

.post .keywords .item { 
    padding: 2px 4px; 
    background: rgba(0,0,0,0.05); 
    border-radius: 5px; 
    text-decoration: none; 
    font-size: 12px; 
    color: rgb(92, 0, 0); 
    font-weight: 600; 
    transition: 200ms all ease; 
}

.post .keywords .item:hover { 
    background: rgb(92, 0, 0); 
    color: #fff; 
    text-decoration: none !important; 
}

.post .content a { 
    color: rgb(92, 0, 0); 
}

.post .content iframe { 
    border: 0; 
}

.post .hasTooltip { 
    position: relative; 
}

.post .hasTooltip .button { 
    color: rgb(92, 0, 0); 
    text-decoration: underline; 
    cursor: pointer; 
}

/* ===== PLAYERS DE ÁUDIO ===== */
.player,
.player-v2 {
    font-family: sans-serif;
    padding: 0 5px;
    background: rgba(0,0,0,0.05);
    border-radius: 25px;
    font-size: 12px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    white-space: nowrap;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 280px;
    box-sizing: border-box;
    overflow: hidden;
}

.player-v2 {
    font-weight: 400;
    color: #333;
}

.player button,
.player-v2 button {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.player button:focus,
.player-v2 button:focus {
    outline: none;
}

.player-v2 button {
    width: 24px;
    height: 24px;
}

.player svg {
    height: 80%;
    width: auto;
}

.player-v2 svg {
    width: 24px;
    height: 24px;
}

.player, .player *,
.player-v2, .player-v2 * {
    user-select: none;
}

.player button,
.player a,
.player .time,
.player-v2 button,
.player-v2 a,
.player-v2 .time {
    margin: 0 3px;
}

.player .time,
.player-v2 .time {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 11px;
    min-width: 35px;
}

.player .time,
.player .speed,
.player-v2 .time,
.player-v2 .speed {
    display: flex;
    align-items: center;
    justify-content: center;
}

.player .progress,
.player-v2 .progress {
    margin: 0 3px;
    flex-grow: 1;
    min-width: 60px;
}

/* Range Inputs */
input[type=range] {
    -webkit-appearance: none;
    height: 100%;
    background: transparent;
    width: 100%;
    min-width: 0;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #590016;
    margin-top: -4px;
    cursor: pointer;
}

.player .current-progress,
.player-v2 .current-progress {
    height: 4px;
    border-radius: 3px;
    background-color: #3E3E3E;
    cursor: pointer;
    width: 100%;
}

/* Elementos Editores */
.iframe-center {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* ===== MEDIA QUERIES - RESPONSIVIDADE ===== */

/* Topbar Mobile */
@media screen and (max-width: 1100px) {
    .topbar .container { 
        width: 100%; 
        column-gap: 10px; 
        justify-content: space-around; 
    }
    
    .topbar .icon { 
        opacity: 1; 
    }
    
    .topbar .value { 
        display: none; 
    }
}

/* ===== NAVBAR MOBILE ===== */
@media screen and (max-width: 1100px) and (min-width: 769px) {
    /* ✅ HORIZONTAL 844px-1100px - Navbar compacto */
    .navbar { 
        height: clamp(50px, 8vw, 65px); /* ✅ Altura reduzida para horizontal */
        padding: 0; /* ✅ Remove padding vertical */
    }
    
    .navbar .container { 
        height: 100%; 
        flex-direction: row; /* ✅ Mantém layout horizontal */
        align-items: center; 
        justify-content: space-between; 
        column-gap: clamp(8px, 1.5vw, 15px); /* ✅ Gap reduzido */
        padding: 0 clamp(15px, 2.5vw, 20px); /* ✅ Padding lateral adequado */
        box-sizing: border-box; /* ✅ Evita overflow */
    }
    
    .navbar .logo {
        width: clamp(40px, 6vw, 55px); /* ✅ Logo menor */
        height: clamp(40px, 6vw, 55px);
        margin: 0; /* ✅ Remove margem */
        flex-shrink: 0; /* ✅ Evita compressão */
    }
    
    .navbar .menu { 
        display: flex; 
        flex-direction: row; 
        column-gap: clamp(6px, 1.2vw, 10px); /* ✅ Gap bem reduzido */
        flex-shrink: 1; /* ✅ Permite compressão controlada */
        overflow: hidden; /* ✅ Evita overflow */
    }
    
    .navbar .menu a { 
        font-size: clamp(11px, 1.8vw, 13px); /* ✅ Fonte menor */
        padding: clamp(4px, 0.8vw, 6px) clamp(6px, 1.5vw, 10px); /* ✅ Padding bem reduzido */
        white-space: nowrap; /* ✅ Evita quebra de linha */
        flex-shrink: 0; /* ✅ Mantém tamanho mínimo */
    }
    
    .navbar .action-button { 
        font-size: clamp(11px, 1.8vw, 13px); /* ✅ Fonte menor */
        padding: clamp(5px, 1vw, 7px) clamp(10px, 2vw, 14px); /* ✅ Padding bem reduzido */
        flex-shrink: 0; /* ✅ Evita compressão */
        white-space: nowrap; /* ✅ Evita quebra de linha */
    }
    
    .navbar .user-logged-btn {
        font-size: clamp(10px, 1.6vw, 12px); /* ✅ Fonte menor */
        padding: clamp(4px, 0.8vw, 6px) clamp(8px, 1.5vw, 10px); /* ✅ Padding bem reduzido */
        gap: clamp(3px, 0.8vw, 5px); /* ✅ Gap reduzido */
        flex-shrink: 0; /* ✅ Evita compressão */
        white-space: nowrap; /* ✅ Evita quebra de linha */
    }
    
    .navbar .mobile-menu-button { 
        display: none; /* ✅ Sem hamburger no horizontal */
    }
}

@media screen and (max-width: 768px) {
    /* ✅ VERTICAL - Navbar mobile compacto */
    .navbar { 
        height: auto; 
        padding: clamp(8px, 2vw, 12px) 0; /* ✅ Padding reduzido */
    }
    
    .navbar .container { 
        height: auto; 
        flex-direction: column; 
        align-items: center; 
        justify-content: center; 
        row-gap: clamp(6px, 1.5vw, 8px); /* ✅ Gap reduzido */
        padding: 0 clamp(15px, 4vw, 20px); /* ✅ Padding lateral */
        box-sizing: border-box; /* ✅ Evita overflow */
    }
    
    .navbar .mobile-top { 
        display: flex; 
        flex-direction: row; 
        align-items: center; 
        column-gap: 10px; 
        width: 100%;
        position: relative; /* ✅ Para posicionamento do hamburger */
    }
    
    .navbar .mobile-menu-button { 
        display: flex; 
        user-select: none; 
        flex-direction: column; 
        align-items: center; 
        row-gap: clamp(3px, 1vw, 4px); /* ✅ Gap reduzido */
        cursor: pointer; 
        margin: clamp(4px, 1vw, 6px) 0 0 0; /* ✅ Margem reduzida */
        position: absolute; 
        right: 0; /* ✅ Posicionamento relativo ao container */
    }
    
    .navbar .mobile-menu-button .text { 
        font-size: clamp(10px, 2vw, 12px); /* ✅ Fonte menor */
        color: #fff; 
    }
    
    .navbar .hamburger-icon { 
        width: clamp(28px, 6vw, 32px); /* ✅ Ícone menor */
        height: clamp(22px, 5vw, 25px); /* ✅ Altura reduzida */
        position: relative; 
    }
    
    .navbar .hamburger-icon span { 
        display: block; 
        position: absolute; 
        height: clamp(2px, 0.5vw, 3px); /* ✅ Linha mais fina */
        width: 100%; 
        background: #fff; 
        border-radius: 1.5px; 
        left: 0; 
        transform: rotate(0deg); 
        transition: 300ms all ease; 
    }
    
    .navbar .hamburger-icon span:nth-child(1) { 
        top: 0px; 
        transform-origin: left center; 
    } 
    
    .navbar .hamburger-icon span:nth-child(2) { 
        top: clamp(8px, 2vw, 10px); /* ✅ Posição ajustada */
        transform-origin: left center; 
    } 
    
    .navbar .hamburger-icon span:nth-child(3) { 
        top: clamp(16px, 4vw, 20px); /* ✅ Posição ajustada */
        transform-origin: left center; 
    }
    
    .navbar.open-menu .hamburger-icon span:nth-child(1) { 
        transform: rotate(45deg); 
        top: -2px; 
        left: clamp(4px, 1vw, 6px); /* ✅ Posição ajustada */
    } 
    
    .navbar.open-menu .hamburger-icon span:nth-child(2) { 
        width: 0%; 
        opacity: 0; 
    }
    
    .navbar.open-menu .hamburger-icon span:nth-child(3) { 
        transform: rotate(-45deg); 
        top: clamp(18px, 4.5vw, 22px); /* ✅ Posição ajustada */
        left: clamp(4px, 1vw, 6px); /* ✅ Posição ajustada */
    }
    
    .navbar .menu { 
        flex-direction: column; 
        row-gap: clamp(6px, 1.5vw, 8px); /* ✅ Gap reduzido */
        display: none;
    }
    
    .navbar .menu a { 
        text-align: center; 
        font-size: clamp(14px, 3vw, 16px); /* ✅ Fonte reduzida */
        padding: clamp(6px, 1.5vw, 8px) clamp(16px, 4vw, 20px); /* ✅ Padding reduzido */
    }
    
    .navbar .action-button,
    .navbar .user-logged-menu { 
        display: none; 
        font-size: clamp(14px, 3vw, 16px); /* ✅ Fonte reduzida */
        margin-bottom: clamp(10px, 2.5vw, 15px); /* ✅ Margem reduzida */
    }
    
    .navbar.open-menu .menu,
    .navbar.open-menu .action-button,
    .navbar.open-menu .user-logged-menu { 
        display: flex; 
    }
    
    .navbar .logo {
        margin: 0 auto;
        width: clamp(50px, 10vw, 70px); /* ✅ Logo reduzido */
        height: clamp(50px, 10vw, 70px);
    }
    
    .navbar .user-logged-menu { 
        display: none !important; 
        width: auto;
        min-width: 150px !important;
        margin: clamp(6px, 1.5vw, 8px) 0; /* ✅ Margem reduzida */
    }

    .navbar.open-menu .user-logged-menu { 
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: auto !important;
        min-width: 150px !important;
    }
    
    .user-logged-btn { 
        width: auto;
        min-width: 150px !important;
        justify-content: center;
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.3);
        padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 16px); /* ✅ Padding reduzido */
        font-size: clamp(13px, 2.5vw, 15px); /* ✅ Fonte reduzida */
    }
    
    .user-dropdown { 
        position: static !important;
        width: 100%;
        margin-top: clamp(6px, 1.5vw, 8px); /* ✅ Margem reduzida */
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        border: 1px solid rgba(255,255,255,0.2);
        background: rgba(255,255,255,0.95);
    }
    
    .user-info,
    .user-dropdown a {
        color: #333 !important;
        border-bottom-color: rgba(0,0,0,0.1);
    }
    
    .user-dropdown a:hover {
        background: rgba(92, 0, 0, 0.1);
        color: #5c0000 !important;
    }
    
    .user-info {
        background: #f5f5f5;
        color: #333 !important;
    }
}

@media screen and (max-width: 480px) {
    .navbar { 
        padding: clamp(6px, 1.5vw, 10px) 0; /* ✅ Padding ainda menor */
    }
    
    .navbar .container {
        row-gap: clamp(4px, 1vw, 6px); /* ✅ Gap mínimo */
        padding: 0 clamp(10px, 3vw, 15px); /* ✅ Padding lateral menor */
    }
    
    .navbar .logo {
        width: clamp(45px, 9vw, 60px); /* ✅ Logo menor */
        height: clamp(45px, 9vw, 60px);
    }
    
    .navbar .menu a {
        font-size: clamp(13px, 2.8vw, 15px); /* ✅ Fonte menor */
        padding: clamp(5px, 1.2vw, 7px) clamp(14px, 3.5vw, 18px); /* ✅ Padding menor */
    }
    
    .navbar .hamburger-icon {
        width: clamp(25px, 5vw, 30px); /* ✅ Ícone menor */
        height: clamp(20px, 4vw, 24px);
    }
}

/* ===== FOOTER MOBILE ===== */
@media screen and (max-width: 1100px) and (min-width: 769px) {
    /* ✅ LAYOUT HORIZONTAL PARA TABLETS/LANDSCAPE */
    .footer .container { 
        max-width: 100%; 
        flex-direction: row; 
        column-gap: clamp(8px, 1.5vw, 12px); /* ✅ Reduzido drasticamente */
        padding: 0 clamp(8px, 1.5vw, 12px); /* ✅ Padding mínimo */
        box-sizing: border-box; /* ✅ Garante que padding não estoure */
    }
    
    .footer .box { 
        width: 33.33%; 
        align-items: center;
        box-sizing: border-box; /* ✅ Evita overflow */
        padding: 0 clamp(2px, 0.5vw, 4px); /* ✅ Padding interno mínimo */
    }
    
    .footer .brand {
        width: 33.33%;
    }
    
    .footer .nav {
        width: 33.33%;
    }
    
    .footer .links {
        width: 33.33%;
    }
    
    .footer .title { 
        text-align: center; 
        width: 100%;
        font-size: clamp(13px, 2.8vw, 16px); /* ✅ Fonte ainda menor */
        margin: 0 0 clamp(8px, 2vw, 12px) 0; /* ✅ Margem reduzida */
    }
    
    .footer .menu {
        align-items: center;
    }
    
    .footer .menu li {
        margin: 0 0 clamp(4px, 1vw, 6px) 0; /* ✅ Margem reduzida */
    }
    
    .footer .menu li a {
        justify-content: center;
        text-align: center;
        font-size: clamp(11px, 2.2vw, 13px); /* ✅ Fonte bem menor */
        line-height: clamp(14px, 2.8vw, 16px); /* ✅ Line-height reduzido */
        padding: clamp(1px, 0.5vw, 2px) 0; /* ✅ Padding mínimo */
    }
    
    .footer .menu li a img {
        width: clamp(14px, 2.5vw, 18px); /* ✅ Ícones bem menores */
        height: clamp(14px, 2.5vw, 18px);
        margin-right: clamp(3px, 0.8vw, 5px); /* ✅ Margem mínima */
    }
    
    .footer .brand-info {
        text-align: center;
        font-size: clamp(10px, 2vw, 12px); /* ✅ Fonte bem menor */
        line-height: clamp(14px, 2.5vw, 16px);
        margin: clamp(5px, 1vw, 8px) 0 0 0; /* ✅ Margem reduzida */
    }
    
    .footer .logo { 
        margin: 0 auto; 
        max-width: clamp(45%, 8vw, 60%); /* ✅ Logo bem menor */
    }
    
    .footer .social-networks {
        column-gap: clamp(3px, 0.8vw, 5px); /* ✅ Gap mínimo */
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer .social-networks img {
        width: clamp(20px, 3.5vw, 26px); /* ✅ Ícones sociais menores */
        height: clamp(20px, 3.5vw, 26px);
    }
}

@media screen and (max-width: 768px) {
    /* ✅ LAYOUT VERTICAL PARA MOBILE */
    .footer .container { 
        max-width: 100%; /* ✅ Mudado de 400px para 100% */
        row-gap: clamp(20px, 5vw, 30px); 
        flex-direction: column-reverse; 
        padding: 0 clamp(10px, 3vw, 20px);
        box-sizing: border-box; /* ✅ Evita overflow */
    }
    
    .footer .box { 
        width: 100%; 
        align-items: center;
        box-sizing: border-box; /* ✅ Evita overflow */
    }
    
    .footer .logo { 
        margin: clamp(15px, 4vw, 20px) auto 0 auto; 
        max-width: clamp(60%, 15vw, 70%);
    }
    
    .footer .poweredby { 
        margin: 0 auto; 
    }
    
    .footer .brand-info,
    .footer .title { 
        text-align: center; 
        align-items: center; 
        width: 100%; 
    }
    
    .footer .menu {
        align-items: center;
    }
    
    .footer .menu li a {
        justify-content: center;
        text-align: center;
    }
    
    .footer .line { 
        display: block; 
        width: 100%; 
        height: 1px; 
        background: rgba(255,255,255,0.2); 
        margin: clamp(15px, 4vw, 20px) 0;
    }
}

@media screen and (max-width: 600px) {
    .footer {
        padding: clamp(15px, 4vw, 25px) 0;
    }
    
    .footer .container {
        padding: 0 clamp(15px, 4vw, 20px);
        row-gap: clamp(15px, 4vw, 25px);
        box-sizing: border-box; /* ✅ Evita overflow */
    }
    
    .footer .social-networks {
        column-gap: clamp(8px, 3vw, 12px);
        row-gap: clamp(5px, 2vw, 8px);
    }
    
    .footer .social-networks img {
        width: clamp(32px, 7vw, 40px);
        height: clamp(32px, 7vw, 40px);
    }
    
    .footer .brand-info {
        font-size: clamp(13px, 3.5vw, 15px);
        line-height: clamp(18px, 4.5vw, 24px);
    }
    
    .footer .title {
        font-size: clamp(18px, 5vw, 22px);
    }
    
    .footer .menu li a {
        font-size: clamp(15px, 4vw, 17px);
        line-height: clamp(20px, 5vw, 22px);
    }
    
    .footer .menu li a img {
        width: clamp(20px, 5vw, 24px);
        height: clamp(20px, 5vw, 24px);
        margin-right: clamp(8px, 3vw, 12px);
    }
}

@media screen and (max-width: 400px) {
    .footer .container {
        padding: 0 clamp(10px, 3vw, 15px);
        row-gap: clamp(12px, 3vw, 20px);
        box-sizing: border-box; /* ✅ Evita overflow */
    }
    
    .footer .social-networks img {
        width: clamp(28px, 8vw, 36px);
        height: clamp(28px, 8vw, 36px);
    }
    
    .footer .brand-info {
        font-size: clamp(12px, 3vw, 14px);
        line-height: clamp(16px, 4vw, 20px);
    }
    
    .footer .menu li a {
        font-size: clamp(14px, 4vw, 16px);
        line-height: clamp(18px, 4.5vw, 20px);
    }
}

/* Hero Section Mobile */
@media screen and (max-width: 1100px) {
    .hero-section .container { 
        flex-direction: column; 
        gap: 50px; 
    }
    
    .hero-section .text { 
        width: 500px; 
        text-align: center; 
        align-items: center; 
    }
}

@media screen and (max-width: 600px) {
    .hero-section { 
        padding: 50px 0; 
    }
    
    .hero-section .text { 
        width: calc(100% - 30px); 
        gap: 20px; 
        padding: 25px; 
        text-align: center; 
        align-items: center; 
    }
    
    .hero-section h1 { 
        font-size: 42px; 
    }
    
    .hero-section h2 { 
        font-size: 20px; 
    }
    
    .hero-section .illus { 
        width: 100%; 
    }
}

/* Video Section Mobile */
@media screen and (max-width: 1100px) {
    .video-section .container { 
        flex-direction: column; 
        gap: 30px; 
    }
    
    .video-section .text { 
        width: 500px; 
        text-align: center; 
        align-items: center; 
    }
}

@media screen and (max-width: 600px) {
    .video-section { 
        padding: 50px 0; 
    }
    
    .video-section .text { 
        width: calc(100% - 30px); 
        gap: 20px; 
        text-align: center; 
        align-items: center; 
    }
    
    .video-section h1 { 
        font-size: 42px; 
    }
    
    .video-section h2 { 
        font-size: 20px; 
    }
    
    .video-section .video { 
        width: 450px; 
        height: 253px; 
    }
}

@media screen and (max-width: 500px) {
    .video-section .video { 
        width: 350px; 
        height: 197px; 
    }
    
    .video-section .btn { 
        width: 70px; 
        height: 70px; 
    }
    
    .video-section .play { 
        width: 20px; 
    }
}

@media screen and (max-width: 400px) {
    .video-section .video { 
        width: 280px; 
        height: 158px; 
    }
}

/* FAQ Mobile */
@media screen and (max-width: 1100px) {
    .faq .container { 
        flex-direction: column; 
    }
    
    .faq .header { 
        width: 100%; 
        text-align: center; 
        margin-bottom: 30px; 
    }
}

@media screen and (max-width: 600px) {
    .faq .header h1 { 
        font-size: 42px; 
    }
    
    .faq .header h2 { 
        font-size: 20px; 
    }
}

/* Plans Mobile */
@media screen and (max-width: 600px) {
    .plans-home .plan,
    .plans .plan { 
        width: 100%; 
    }
    
    .plans-home .header h1 { 
        font-size: 42px; 
    }
    
    .plans-home .header h2 { 
        font-size: 20px; 
    }
}

/* Testimonials Mobile */
@media screen and (max-width: 600px) {
    .testimonials .header .average-x { 
        gap: 20px; 
    }
    
    .testimonials .header .num { 
        font-size: 21px; 
    }
    
    .testimonials .header .stars img { 
        width: 21px; 
    }
    
    .testimonials .header .logo { 
        width: 70px; 
    }
}

/* Blog Mobile */
@media screen and (max-width: 1100px) {
    .blog .content { 
        flex-direction: column; 
        align-items: center; 
        justify-content: center; 
    }
    
    .blog .posts { 
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Colunas responsivas */
        width: 100%; 
        justify-items: center; 
        gap: 20px;
        max-width: 1000px; /* Largura máxima maior para múltiplas colunas */
    }
    
    .blog .posts .item { 
        width: 100%; 
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .blog .posts .item .cover { 
        width: 100%; 
        height: 0;
        padding-bottom: 56.25%; /* Proporção 9/16 */
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }
    
    .blog .posts .item .cover img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 8px;
    }
    
    .blog .sidebar { 
        width: 100%; 
        max-width: 1000px;
        margin: 40px auto 0;
    }
}


@media screen and (max-width: 768px) {
    .blog .posts .item { 
        width: calc(100% - 20px); 
        box-sizing: border-box; /* Importante para incluir padding na largura total */
    }
    
    .blog .posts .item .cover { 
        width: 100%; 
        height: 0; /* Necessário para o padding-bottom funcionar como altura */
        padding-bottom: 56.25%; /* Proporção 9/16 (9 ÷ 16 = 0.5625 = 56.25%) */
        position: relative; /* Necessário para posicionar a imagem dentro */
        overflow: hidden; /* Evita que a imagem transborde */
        border-radius: 8px; /* Mantém o border-radius se necessário */
    }
    
    .blog .posts .item .cover img {
        position: absolute; /* Posiciona a imagem dentro do container .cover */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* Cobre o container mantendo proporção, pode cortar bordas */
        object-position: center; /* Centraliza a imagem */
        border-radius: 8px; /* Mantém border-radius na imagem também */
    }
}

@media screen and (max-width: 380px) {
    .blog .posts .item .cover { 
        width: 100%; 
    }
    
    .blog .sidebar { 
        width: 100%; 
    }
}

/* Blog Paginação e Categorias Mobile */
@media (max-width: 768px) {
    .breadcrumb-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .results-summary {
        align-self: stretch;
        justify-content: space-between;
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 35px;
        height: 35px;
        padding: 6px 10px;
        font-size: 0.9em;
    }
    
    .pagination-info {
        margin-left: 0;
        text-align: center;
    }
    
    .category-item {
        flex-wrap: nowrap;
    }
    
    .category-item .item {
        font-size: 0.9em;
        padding: 6px 8px;
    }
    
    .dropdown-toggle {
        padding: 6px 8px;
        min-width: 28px;
    }
    
    .subcategories {
        margin-left: 10px;
        padding-left: 8px;
    }
    
    .subitem {
        font-size: 0.85em;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 3px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 32px;
        height: 32px;
        padding: 4px 8px;
        font-size: 0.85em;
    }
    
    .category-item .item {
        font-size: 0.85em;
        padding: 5px 6px;
    }
    
    .dropdown-toggle {
        padding: 5px 6px;
        min-width: 24px;
    }
    
    /* Audio Players Mobile */
    .player,
    .player-v2 {
        font-size: 10px;
        padding: 0 3px;
        min-width: 250px;
    }
    
    .player button,
    .player a,
    .player .time,
    .player-v2 button,
    .player-v2 a,
    .player-v2 .time {
        margin: 0 2px;
    }
    
    .player .time,
    .player-v2 .time {
        font-size: 9px;
        min-width: 30px;
    }
    
    .player-v2 button {
        width: 20px;
        height: 20px;
    }
    
    .player-v2 svg {
        width: 20px;
        height: 20px;
    }
    
    .player .progress,
    .player-v2 .progress {
        margin: 0 2px;
        min-width: 40px;
    }
}

@media screen and (max-width: 320px) {
    .player,
    .player-v2 {
        font-size: 9px;
        padding: 0 2px;
        min-width: 220px;
    }
    
    .player .time,
    .player-v2 .time {
        font-size: 8px;
        min-width: 25px;
    }
    
    .player-v2 button {
        width: 18px;
        height: 18px;
    }
    
    .player-v2 svg {
        width: 18px;
        height: 18px;
    }
}