/* ===== NOVA SEÇÃO PUZZLE CARE - LAYOUT COM MOCKUP ===== */
.puzzlecare-section-v2 {
    position: relative;
    background: linear-gradient(135deg, #0A0F2A 0%, #0A1A2F 100%);
    color: var(--white, #FFFFFF);
    padding: 100px 0;
    overflow: hidden;
}

/* Elementos decorativos de fundo */
.puzzlecare-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 90% 70%, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.puzzlecare-section-v2 .container {
    position: relative;
    z-index: 2;
}

/* Conteúdo da esquerda */
.puzzlecare-content-left {
    max-width: 90%;
}

.puzzlecare-badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.15);
    color: #38BDF8;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.puzzlecare-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.puzzlecare-main-title .hollow-text {
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.puzzlecare-main-description {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #CBD5E1;
    margin-bottom: 1.5rem;
}

.puzzlecare-main-description strong {
    color: #38BDF8;
    font-weight: 600;
}

/* Botão CTA */
.puzzlecare-cta {
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.puzzlecare-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.5);
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
}

/* Mockup imagem */
.puzzlecare-mockup-wrapper {
    position: relative;
    text-align: center;
}

.puzzlecare-mockup-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.puzzlecare-mockup-img:hover {
    transform: scale(1.02);
}

/* Título das funcionalidades */
.funcionalities-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.funcionalities-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    border-radius: 3px;
}

/* Cards de funcionalidades */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.5);
    background: rgba(56, 189, 248, 0.08);
    box-shadow: 0 20px 35px -10px rgba(56, 189, 248, 0.2);
}

/* Efeito de brilho nos cards */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
}

.feature-icon i {
    font-size: 1.8rem;
    color: #FFFFFF;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.feature-description {
    color: #94A3B8;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.feature-list li {
    color: #CBD5E1;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.feature-list li i {
    color: #38BDF8;
    font-size: 0.8rem;
    width: 20px;
}

/* Rodapé com informações adicionais */
.puzzlecare-footer-note {
    color: #64748B;
    font-size: 0.85rem;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    padding-top: 1.5rem;
    display: inline-block;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .puzzlecare-section-v2 {
        padding: 80px 0;
    }
    
    .puzzlecare-main-title {
        font-size: 2.5rem;
    }
    
    .puzzlecare-content-left {
        max-width: 100%;
        text-align: center;
    }
    
    .puzzlecare-badge {
        margin-left: auto;
        margin-right: auto;
        display: inline-block;
    }
    
    .funcionalities-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .puzzlecare-section-v2 {
        padding: 60px 0;
    }
    
    .puzzlecare-main-title {
        font-size: 2rem;
    }
    
    .puzzlecare-main-description {
        font-size: 1rem;
    }
    
    .puzzlecare-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .funcionalities-title {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .puzzlecare-section-v2 {
        padding: 50px 0;
    }
    
    .puzzlecare-main-title {
        font-size: 1.6rem;
    }
    
    .puzzlecare-cta {
        width: 100%;
        text-align: center;
    }
    
    .funcionalities-title {
        font-size: 1.3rem;
    }
    
    .feature-list li {
        font-size: 0.8rem;
    }
}

/* Suporte para iOS (fix background-attachment) */
@supports (-webkit-touch-callout: none) {
    .puzzlecare-section-v2 {
        background-attachment: scroll;
    }
}

/* ===== MODAL PUZZLECARE - PLANOS EXCLUSIVOS ===== */
.puzzlecare-plans-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.puzzlecare-plans-modal.show {
    display: flex;
    opacity: 1;
}

.puzzlecare-plans-modal-content {
    background: linear-gradient(135deg, #0A0F2A 0%, #0A1A2F 100%);
    border-radius: 24px;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.puzzlecare-plans-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    padding-bottom: 1rem;
}

.puzzlecare-plans-modal-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.puzzlecare-plans-modal-header h2 .hollow-text {
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.puzzlecare-plans-modal-close {
    font-size: 2rem;
    color: #94A3B8;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.puzzlecare-plans-modal-close:hover {
    color: #38BDF8;
    transform: rotate(90deg);
    background: rgba(56, 189, 248, 0.2);
}

.puzzlecare-plans-modal-subtitle {
    text-align: center;
    color: #94A3B8;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.puzzlecare-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 2rem;
}

.puzzlecare-plan-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(56, 189, 248, 0.2);
    position: relative;
    text-align: center;
}

.puzzlecare-plan-card:hover {
    transform: translateY(-8px);
    border-color: #38BDF8;
    background: rgba(56, 189, 248, 0.05);
}

.puzzlecare-plan-card.popular {
    border: 2px solid #38BDF8;
    background: rgba(56, 189, 248, 0.08);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.puzzlecare-plan-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.puzzlecare-plan-icon i {
    font-size: 1.8rem;
    color: white;
}

.puzzlecare-plan-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.puzzlecare-plan-price {
    margin: 1rem 0;
}

.puzzlecare-plan-price .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #38BDF8;
    font-family: 'Poppins', sans-serif;
}

.puzzlecare-plan-price .period {
    font-size: 0.9rem;
    color: #94A3B8;
}

.puzzlecare-plan-badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.15);
    color: #38BDF8;
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.puzzlecare-plan-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    text-align: left;
}

.puzzlecare-plan-features li {
    color: #CBD5E1;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
}

.puzzlecare-plan-features li i {
    color: #38BDF8;
    font-size: 0.8rem;
    width: 18px;
}

.puzzlecare-plan-btn {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid #38BDF8;
    color: #38BDF8;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.puzzlecare-plan-btn:hover {
    background: #38BDF8;
    color: white;
    transform: translateY(-2px);
}

.puzzlecare-plan-btn.primary {
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    color: white;
    border: none;
}

.puzzlecare-plan-btn.primary:hover {
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.4);
}

.puzzlecare-plans-modal-footer {
    text-align: center;
    color: #64748B;
    font-size: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .puzzlecare-plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .puzzlecare-plan-card.popular {
        transform: scale(1);
    }
    
    .puzzlecare-plans-modal-content {
        padding: 1.5rem;
    }
    
    .puzzlecare-plans-modal-header h2 {
        font-size: 1.4rem;
    }
}