/* ==========================================
   CLUB CURTA PAUSA - PÁGINA DE VENDAS
   ========================================== */

/* Variáveis locais (fallback) para evitar dependência de outros arquivos */
:root {
    --color-primary: #00FFCC;
    --color-dark: #0D3B3B;
    --color-orange: #FFA500;
    --color-cyan: #00FFCC;
    --color-teal: #40E0D0;
    --color-white: #FFFFFF;
}

/* Estilos para ícones Font Awesome */
.section-header-center h2 i {
    margin-right: 0.5rem;
    color: var(--color-cyan);
    animation: fadeInScale 0.6s ease;
}

.benefit-icon i {
    color: var(--color-cyan);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1) rotate(5deg);
}

.author-avatar i {
    color: var(--color-dark);
}

.testimonial-stars i {
    color: #fbbf24;
    margin-right: 0.25rem;
    animation: starPulse 2s ease-in-out infinite;
    animation-delay: calc(var(--star-index, 0) * 0.1s);
}

.hero-badge i,
.highlight-icon i {
    margin-right: 0.5rem;
}

.cta-guarantee i {
    color: var(--color-cyan);
    margin-right: 0.25rem;
}

.plan-badge i {
    margin-right: 0.5rem;
    animation: flame 1.5s ease-in-out infinite;
}

.hero-cta i,
.cta-button i {
    margin-right: 0.5rem;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes starPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes flame {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-2px) scale(1.05);
    }
}

/* Botão Club no Header */
.club-link {
    padding: 0.5rem 1rem;
    border-radius: 22px;
    border: 2px solid var(--color-orange);
    text-decoration: none;
    color: var(--color-white);
    background: transparent;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    margin-right: 0.5rem;
}

.club-link:hover,
.club-link.active {
    background: var(--color-orange);
    color: var(--color-dark);
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.club-hero {
    position: relative;
    background: linear-gradient(135deg, #0D3B3B 0%, #1a5555 50%, #0D3B3B 100%);
    padding: 5rem 2rem;
    overflow: hidden;
    text-align: center;
}

.club-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 165, 0, 0.2);
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #00FFCC 0%, #40E0D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 165, 0, 0.15);
    border: 2px solid var(--color-orange);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-text {
    font-size: 1.25rem;
    color: var(--color-white);
    font-weight: 400;
}

.highlight-text strong {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 1.5rem;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-orange) 0%, #ff8c00 100%);
    color: var(--color-white);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
    transition: all 0.3s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.5);
}

/* Decorações do Hero */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.1) 0%, transparent 70%);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================
   SECTIONS GERAIS
   ========================================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.section-header-center h2 strong {
    font-weight: 800;
}

.section-header-center p {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 300;
}

/* ==========================================
   BENEFÍCIOS
   ========================================== */
.benefits-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.benefits-grid .benefit-card {
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    max-width: 400px;
}

@media (max-width: 1200px) {
    .benefits-grid .benefit-card {
        flex: 0 1 calc(50% - 1rem);
    }
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 255, 204, 0.2);
    border-color: var(--color-cyan);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* ==========================================
   COMO FUNCIONA
   ========================================== */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-teal) 100%);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 255, 204, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--color-cyan);
    font-weight: 700;
}

/* ==========================================
   PLANOS
   ========================================== */
.plans-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.plans-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.plan-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2.5rem 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    flex: 0 1 350px;
    min-width: 300px;
    max-width: 400px;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    border-color: var(--color-orange);
    background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-orange) 0%, #ff8c00 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
    text-align: center;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.plan-header h3 {
    font-size: 1.75rem;
    color: var(--color-dark);
    font-weight: 700;
}

.plan-icon {
    font-size: 2.5rem;
}

.plan-price {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: var(--color-dark);
    font-weight: 600;
}

.plan-price .amount {
    font-size: 3.5rem;
    color: var(--color-dark);
    font-weight: 800;
}

.plan-price .period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.plan-savings {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Descrição dinâmica dos planos (vinda do admin) */
.plan-description {
    margin: 0.5rem 0 10px;
    color: #0f3d3e;
    font-weight: 500;
    line-height: 1.6;
    font-size: 1rem;
    text-shadow: none;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    color: #0f3d3e;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features .check {
    color: var(--color-cyan);
    font-weight: 700;
    font-size: 1.25rem;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-dark);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 255, 204, 0.3);
    text-decoration: none;
    text-align: center;
    margin-top: auto;
    margin-bottom: 0;
}

.plan-button:hover {
    background: var(--color-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 204, 0.4);
    color: var(--color-dark);
}

.plan-button.featured {
    background: var(--color-orange);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.plan-button.featured:hover {
    background: #ff8c00;
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
    color: var(--color-dark);
}

.plans-note {
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
    font-style: italic;
}

/* ==========================================
   DEPOIMENTOS
   ========================================== */
.testimonials-section {
    padding: 6rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--color-cyan);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--color-dark);
    font-weight: 700;
}

.author-info span {
    color: #64748b;
    font-size: 0.875rem;
}

/* ==========================================
   FAQ
   ========================================== */
.faq-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--color-dark);
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-cyan);
    font-weight: 700;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   CTA FINAL
   ========================================== */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a5555 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.cta-content h2 strong {
    font-weight: 800;
}

.cta-content>p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-orange) 0%, #ff8c00 100%);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.5);
}

.cta-guarantee {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.modern-footer {
    background: var(--color-dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-content p {
    margin: 0;
    opacity: 0.8;
}

/* ==========================================
   RESPONSIVIDADE
   ========================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 2rem;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .club-hero {
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-highlight {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }

    .highlight-text {
        font-size: 1rem;
    }

    .highlight-text strong {
        font-size: 1.25rem;
    }

    .section-header-center h2 {
        font-size: 1.75rem;
    }

    .section-header-center h2.nowrap-mobile {
        white-space: nowrap;
    }

    .section-header-center p {
        font-size: 1rem;
    }

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

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

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

    .cta-content h2 {
        font-size: 1.75rem;
        white-space: nowrap;
    }

    .cta-content>p {
        font-size: 1rem;
    }

    .cta-button {
        white-space: nowrap;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        white-space: nowrap;
    }

    .section-header-center h2 {
        font-size: 1.4rem;
    }

    .section-header-center h2.nowrap-mobile {
        white-space: nowrap;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .plan-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .benefit-card,
    .plan-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .section-container {
        padding: 0 1rem;
    }

    .club-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 360px) {
    .section-header-center h2 {
        font-size: 1.2rem;
    }

    .section-header-center h2.nowrap-mobile {
        font-size: 1.1rem;
        white-space: nowrap;
    }

    .section-header-center h2 i {
        font-size: 1rem;
        margin-right: 0.3rem;
    }
}

/* ==========================================
   CARDS BLOQUEADOS - PREVIEW
   ========================================== */
.blocked-preview-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
}

.blocked-preview-card:hover {
    transform: translateY(-5px);
}

.blocked-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blocked-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blocked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 59, 59, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Faixa diagonal de bloqueio (45 graus) */
.blocked-ribbon {
    position: absolute;
    left: -35%;
    right: -35%;
    top: 30%;
    height: 42px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.55), rgba(220, 38, 38, 0.5));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transform: rotate(-50deg);
    z-index: 3;
}

.blocked-ribbon span {
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Ícone de cadeado no início do texto */
.blocked-ribbon::before {
    content: "\f023";
    /* fa-lock */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
}

@media (min-width: 769px) {
    .blocked-ribbon {
        transform: rotate(-50deg);
    }
}

@media (max-width: 480px) {
    .blocked-ribbon {
        height: 34px;
        top: 32%;
    }

    .blocked-ribbon span {
        font-size: 0.85rem;
    }
}

.blocked-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #0D3B3B;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blocked-badge i {
    color: #ef4444;
}

.blocked-card-content {
    padding: 1rem;
    text-align: center;
}

.blocked-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.blocked-price-original {
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: line-through;
    white-space: nowrap;
}

.blocked-price-discount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    white-space: nowrap;
}

.blocked-price-period {
    font-size: 0.9rem;
    font-weight: 400;
    color: #64748b;
    white-space: nowrap;
}

/* Desktop: 4 cards na mesma linha */
@media (min-width: 1024px) {
    .blocked-preview-card {
        flex: 0 1 calc(25% - 0.75rem);
    }
}

/* Tablet: 3 cards por linha */
@media (min-width: 769px) and (max-width: 1023px) {
    .blocked-preview-card {
        flex: 0 1 calc(33.333% - 0.75rem);
    }
}

/* Mobile: 2 cards por linha */
@media (max-width: 768px) {
    .blocked-preview-card {
        flex: 0 1 calc(50% - 0.5rem);
        min-width: 140px;
        max-width: 180px;
    }

    .blocked-card-image {
        height: 150px;
    }

    .blocked-price-wrapper {
        flex-direction: row;
        gap: 0.35rem;
        flex-wrap: wrap;
        align-items: baseline;
    }

    .blocked-price-original {
        font-size: 0.7rem;
    }

    .blocked-price-discount {
        font-size: 1rem;
    }

    .blocked-price-period {
        font-size: 0.7rem;
    }
}

/* Telas muito pequenas: ajuste adicional */
@media (max-width: 480px) {
    .blocked-preview-card {
        flex: 0 1 calc(50% - 0.5rem);
        min-width: 130px;
        max-width: 160px;
    }

    .blocked-card-image {
        height: 130px;
    }

    .blocked-card-content {
        padding: 0.75rem 0.5rem;
    }

    .blocked-price-wrapper {
        flex-direction: row;
        gap: 0.3rem;
        flex-wrap: wrap;
        align-items: baseline;
    }

    .blocked-price-original {
        font-size: 0.65rem;
    }

    .blocked-price-discount {
        font-size: 0.95rem;
    }

    .blocked-price-period {
        font-size: 0.65rem;
    }

    .blocked-ribbon {
        height: 32px;
    }

    .blocked-ribbon span {
        font-size: 0.8rem;
    }
}

/* Adiciona cursor pointer aos cards bloqueados */
.blocked-preview-card {
    cursor: pointer;
}

/* ==========================================
   MODAL ACESSO BLOQUEADO
   ========================================== */
.blocked-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.blocked-modal-content {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    text-align: center;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.blocked-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.blocked-modal-close:hover {
    color: #0D3B3B;
}

.blocked-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.blocked-modal-icon i {
    font-size: 2.5rem;
    color: white;
}

.blocked-modal-content h2 {
    font-size: 2rem;
    color: #0D3B3B;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blocked-modal-content>p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.blocked-modal-content>p strong {
    color: var(--color-orange);
    font-weight: 700;
}

.blocked-modal-benefits {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.modal-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.modal-benefit-item:last-child {
    margin-bottom: 0;
}

.modal-benefit-item i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.modal-benefit-item span {
    color: #334155;
    font-weight: 500;
    font-size: 1rem;
}

.blocked-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.modal-btn-primary {
    background: linear-gradient(135deg, var(--color-orange) 0%, #ff8c00 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.modal-btn-secondary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.modal-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .blocked-modal {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 10vh;
    }

    .blocked-modal-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
        width: 100%;
    }

    .blocked-modal-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .blocked-modal-icon i {
        font-size: 2rem;
    }

    .blocked-modal-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .blocked-modal-content>p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .blocked-modal-benefits {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .modal-benefit-item {
        margin-bottom: 0.75rem;
    }

    .modal-benefit-item i {
        font-size: 1.1rem;
    }

    .modal-benefit-item span {
        font-size: 0.9rem;
    }

    .blocked-modal-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .modal-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .blocked-modal {
        padding: 0.75rem;
        padding-top: 8vh;
    }

    .blocked-modal-content {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }

    .blocked-modal-icon {
        width: 50px;
        height: 50px;
    }

    .blocked-modal-icon i {
        font-size: 1.75rem;
    }

    .blocked-modal-content h2 {
        font-size: 1.25rem;
    }

    .blocked-modal-content>p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .blocked-modal-benefits {
        padding: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .modal-benefit-item span {
        font-size: 0.85rem;
    }

    .modal-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}