/**************************************************************
 * 1. VARIÁVEIS E ESTRUTURA BASE                              *
 **************************************************************/
:root {
    --snd-color-primary: #0F7ADE;
    --snd-color-primary-hover: #0B5DA8;
    --snd-color-bg: #F8FAFC;
    --snd-color-ink: #2C3E50;
    --snd-color-muted: #737F9B;
    --snd-color-gray-1: #99ACC6;
    --snd-color-gray-2: #64748B;
    --snd-color-border: #E2E8F0;
}

.snd-plans {
    position: relative;
    padding-top: 260px;
    padding-bottom: 120px;
    background-image: url('../assets/img_planosprecos/background/backgroundprecos.png');
    background-size: cover;
    background-position: center top;
    background-color: var(--snd-color-bg);
    min-height: 100vh;
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
    overflow-x: hidden;
}

.snd-plans *, 
.snd-plans *::before, 
.snd-plans *::after {
    box-sizing: inherit;
}

.snd-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

/**************************************************************
 * 2. CABEÇALHO HERO (TÍTULO PRINCIPAL)                       *
 **************************************************************/
.plans-hero-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 150px;
    position: relative;
    z-index: 10;
}

.plans-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--snd-color-primary);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.plans-main-title {
    font-family: 'Source Serif 4', serif;
    font-size: 52px;
    color: var(--snd-color-ink);
    line-height: 1.15;
    font-weight: 400 !important;
    margin-bottom: 25px;
}

.plans-main-title strong {
    font-weight: 800 !important;
}

.plans-subtitle {
    font-size: 20px;
    color: var(--snd-color-muted);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 50px;
}

/* ============================================================
   ENQUADRAMENTO FINAL - SNDESK
============================================================ */

.plans-toggle-wrapper {
    margin-top: 130px !important; 

  
    margin-bottom: 40px !important; 


    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: center;
    gap: 20px;
    
    position: relative;
}

.pricing-card {
    margin-top: 0 !important;
}

.plans-header {
    margin-bottom: 0 !important;
}
.toggle-label {
    display: inline-block;
    min-width: 60px; 
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #64748B;
    transition: color 0.3s ease; 
}

.toggle-label.active {
    color: #1E293B;
    font-weight: 700;
    
}

.plans-switch {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 34px;
}
.plans-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.plans-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    
   
    background: #CBD5E1 !important; 
    
    border-radius: 34px;
    transition: all 0.3s ease;
   
}

.plans-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 50%;
    z-index: 2;
}


input:checked + .plans-slider {
    background: linear-gradient(135deg, #0F7ADE 0%, #50CDF9 100%) !important;
}

input:checked + .plans-slider:before {
    transform: translateX(30px);
}

/* ============================================================
   SELO DE ECONOMIA - VERSÃO CINZA ESTÁTICO (MENSAL)
============================================================ */
.plans-badge-save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    background-color: #F0F9FF;
    color: #0F7ADE;
    padding: 6px 12px;
    border-radius: 99px;
    border: 1px solid rgba(15, 122, 222, 0.2);
    font-size: 13px;
    font-weight: 800;
    margin-left: 8px;
    
   
    transform: none !important;
    backface-visibility: hidden;
    
  
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    
    animation: pulse-glow-only 2s infinite ease-in-out;
}

/* ESTADO MENSAL*/
.plans-badge-save.inactive {
    animation: none !important;
    box-shadow: none !important;
    background-color: #F1F5F9 !important;
    color: #94A3B8 !important;
    border-color: #E2E8F0 !important;
    transform: none !important; 
}

@keyframes pulse-glow-only {
    0% { background-color: #F0F9FF; box-shadow: 0 0 0 0 rgba(15, 122, 222, 0.4); }
    50% { background-color: #D6EFFF; box-shadow: 0 0 0 8px rgba(15, 122, 222, 0); }
    100% { background-color: #F0F9FF; box-shadow: 0 0 0 0 rgba(15, 122, 222, 0); }
}

/**************************************************************
 * 4. CARD PRINCIPAL (PRECIFICAÇÃO E MÓDULOS)                 *
 **************************************************************/
.plans-card-horizontal {
    background: #fff;
    border: 1.5px solid var(--snd-color-primary);
    border-radius: 24px;
    display: grid;
    max-width: 1240px;
    margin: 0 auto;
    grid-template-columns: 380px 1.9fr 730px;
    box-shadow: 0 25px 50px rgba(15, 122, 222, 0.12);
    min-height: 450px;
    overflow: hidden;
    position: relative;
}

/* Coluna 1: Preço */
.plans-col-pricing {
    position: relative;
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.plans-col-pricing::after {
    content: "";
    position: absolute;
    right: 0;
    top: 55px;
    bottom: 55px;
    width: 1.5px;
    background-color: rgba(192, 207, 226, 0.6);
}

.plans-brand-area {
    position: absolute;
    top: 1px;
    left: 35px;
    z-index: 2;
}

.plans-card-logo {
    height: 140px;
    width: auto;
    display: block;
}

.plans-badges-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    white-space: nowrap;
}

.badge-pill-outline {
    border: 1.5px solid #C0CFE2;
    color: var(--snd-color-muted);
    font-size: 14px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.badge-blue-text {
    color: var(--snd-color-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.plans-price-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 29px;
    color: var(--snd-color-ink);
    margin: 0;
    font-weight: 600;
    line-height: 1;
}

.plans-price-details {
    font-size: 18px;
    color: var(--snd-color-muted);
    font-weight: 300;
    line-height: 1.5;
    margin-top: 6px;
    white-space: nowrap;
}

.plans-cta {
    background-color: var(--snd-color-primary) !important;
    color: #fff !important;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 15.5px;
    display: block;
    width: 100%;
    white-space: nowrap;
    border: none;
    transition: all 0.2s ease;
}

.plans-cta:hover {
    background-color: var(--snd-color-primary-hover) !important;
    transform: translateY(-2px);
}

/* Coluna 2: Módulos Inclusos */
.plans-col-modules {
    padding: 50px 35px;
}

.plans-module-kicker {
    font-size: 13px;
    font-weight: 700;
    color: var(--snd-color-muted);
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.plans-module-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--snd-color-ink);
    margin-bottom: 40px;
}

.plans-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 82px);
    column-gap: 15px;
    row-gap: 25px;
    justify-content: flex-start;
}

.module-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 82px;
}

.module-icon-box {
    width: 82px;
    height: 82px;
    background: #0f7ade2f;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.module-icon-box img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.module-item span {
    font-size: 12px;
    font-weight: 500;
    color: var(--snd-color-muted);
    line-height: 1.2;
}

/* Coluna 3: Benefícios Extras */
.plans-col-features {
    padding: 55px 35px 50px 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.plans-feature-list {
    list-style: none;
    padding: 0;
    margin: 80px 0 0 0;
}

.plans-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 40px;
    color: var(--snd-color-muted);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

.check-icon {
    color: var(--snd-color-primary);
    font-weight: 900;
    font-size: 20px;
    margin-top: 3px;
}

/**************************************************************
 * 5. CABEÇALHO: EXPANSÕES EXTRAS (COM LINHA VERTICAL)        *
 **************************************************************/
.extra-section-divider {
    display: none !important;
}

.extra-modules-wrapper {
    position: relative;
    margin-top: 60px;
    margin-bottom: 0px; 
    padding-bottom: 60px; 
}


.extra-modules-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 90px;
    left: 0;
    width: 2px;
    background-color: var(--snd-color-primary);
    z-index: 0;
}

.extra-section-header {
    display: flex;
    align-items: center; 
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    padding-left: 40px; 
}


.extra-plus-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    background: #fff; 
    border-radius: 10px; 
}


.extra-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    height: 48px;
    gap: 0px; 
}

.extra-title {
    font-size: 24px;
    color: var(--snd-color-ink);
    font-weight: 700;
    margin: 0;
    line-height: 1.1; 
    margin-top: 4px; 
}

.extra-subtitle {
    font-size: 16px;
    color: var(--snd-color-muted);
    margin: 0; 
    line-height: 1.4;
}

.cta-content {
    max-width: 480px; 
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    padding-left: 0; 
}

.cta-icon {
    width: 38px;
    height: auto;
    display: block;
    margin: 0 auto 25px auto !important; 
    align-self: center !important; 
}

/**************************************************************
 * 6. CARROSSEL DE EXPANSÕES (ADDONS) - VERSÃO FINAL FIEL     *
 **************************************************************/
.addon-carousel-wrapper {
    position: relative;
    width: 100%;
}

.addon-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    padding-left: 40px; 
    scrollbar-width: none;
   
}

.addon-grid::-webkit-scrollbar {
    display: none;
}

/* --- Estrutura do Card --- */
.addon-card {
    min-width: 520px; 
    background: #fff;
    border: 1.5px solid #E2E8F0; 
    border-radius: 16px; 
    padding: 28px; 
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: none;
}

.addon-card.active {
    background-color: #E0F2FE !important; 
    border-color: #0F7ADE !important;
}

/* --- Radio Button--- */
.addon-radio {
    width: 22px;
    height: 22px;
    border: 2px solid #CBD5E1;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff; 
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.addon-card.active .addon-radio {
    border-color: #0F7ADE;
}

.addon-radio-inner {
    width: 10px;
    height: 10px;
    background-color: #0F7ADE;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.addon-card.active .addon-radio-inner {
    opacity: 1;
    transform: scale(1);
}

.addon-card-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.addon-left-col {
    border-right: none !important;
}

.addon-kicker-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.kicker-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

.addon-kicker {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11px;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;      
    margin: 0;
}

.addon-title {
    font-family: 'DM Sans', sans-serif !important; 
    font-size: 22px; 
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
    line-height: 1.2;
}

.addon-desc {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 250px;
}

/* --- Bloco de Preço (Unificado e Escuro) --- */
.addon-price-box {
    margin-top: auto; 
    display: flex;
    flex-direction: column;
    gap: 0px; 
}

.addon-price {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px;
    font-weight: 700;
    color: #64748B;
    margin: 0 !important;
}

.addon-period {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px;
    font-weight: 700;
    color: #64748B;
    margin: 0 !important;
}

/* --- Coluna da Direita (Ícones e Legendas) --- */
.addon-right-col {
    width: 270px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.addon-incl-label {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 10px;
    font-weight: 700;
    color: #94A3B8;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.addon-incl-row {
    display: flex;
    gap: 15px; 
}

.addon-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px; 
}

.addon-mini-box {
    width: 66px;
    height: 66px;
    background: #0f7ade2f; 
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.addon-card.active .addon-mini-box {
    background: #0f7ade2f; 
}

.addon-mini-box img {
    width: 52px;
    height: 52px;
}

.addon-icon-label {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11px; 
    font-weight: 400;
    color: #475569;
    text-align: center; 
    line-height: 1.2;
    max-width: 100%; 

    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    align-items: center;    
    text-align: center;
}


.addon-carousel-arrows {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    padding-left: 40px; 
}

.addon-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #CBD5E1;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBD5E1;
    transition: all 0.3s ease;
}

.addon-arrow-btn svg {
    width: 22px;
    height: 22px;
}

.addon-arrow-btn.active {
    border-color: var(--snd-color-primary);
    color: var(--snd-color-primary);
    background-color: transparent;
}

.addon-arrow-btn.active:hover {
    background-color: var(--snd-color-primary);
    color: #ffffff;
}

/**************************************************************
 * 7. SEÇÃO DE SUPORTE (TELA INTEIRA - FULL SCREEN)           *
 **************************************************************/
.support-section {
    background-color: #ffffff; 
    width: 100%;
    min-height: 100vh; 
    display: flex;
    align-items: center; 
    padding: 80px 0; 
    font-family: 'DM Sans', sans-serif; 
}

.support-section .snd-container {
    width: 100%;
}

.support-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.support-image-col {
    flex: 1;
    display: flex;
    justify-content: flex-start; 
    opacity: 0;
    transform: translateY(-60px); 
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1); 
}

.support-image-col img {
    max-width: 100%;
    height: auto;
}

.support-text-col {
    flex: 1;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    opacity: 0;
    transform: translateY(-60px);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.2s; 
}

.support-section.is-visible .support-image-col,
.support-section.is-visible .support-text-col {
    opacity: 1;
    transform: translateY(0);
}

.support-kicker {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--snd-color-gray-1);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.support-title {
    font-family: 'Source Serif 4', serif;
    font-size: 42px;
    color: var(--snd-color-ink);
    line-height: 1.25;
    font-weight: 400; 
    margin-bottom: 30px;
}

.support-title strong {
    font-weight: 700; 
}

.support-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: var(--snd-color-muted);
    line-height: 1.6;
    margin: 0;
}

/**************************************************************
 * 8. FAQ (DÚVIDAS FREQUENTES)                                *
 **************************************************************/
.faq-section {
    background-color: var(--snd-color-bg);
    padding: 140px 0;
}

.faq-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    gap: 60px;
}

.faq-text-col {
    width: 35%; 
    max-width: 420px;
}

.faq-accordion-col {
    width: 60%; 
    max-width: 750px;
}

.faq-kicker {
    font-family: 'DM Sans', sans-serif; 
    font-size: 11px;
    font-weight: 800;
    color: #99ACC6;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.faq-title {
    font-family: 'Source Serif 4', serif; 
    font-size: 48px; 
    color: #1E293B; 
    line-height: 1.1; 
    font-weight: 700;
    margin: 0;
}

.faq-item {
    border-bottom: 1.5px solid var(--snd-color-border);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 0; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px; 
    font-weight: 500;
    color: #64748B; 
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--snd-color-ink); 
    font-weight: 700;
}

.faq-chevron {
    width: 18px; 
    height: 18px;
    color: #94A3B8;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--snd-color-ink); 
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height;
}

.faq-answer p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 35px 0;
    border-left: 3px solid var(--snd-color-primary); 
    padding-left: 20px; 
}

/**************************************************************
 * 9. CALL TO ACTION FINAL                                    *
 **************************************************************/
.cta-final-section {
    position: relative;
    background-image: url('../assets/img_planosprecos/background/backgroundoportunidades.png');
    background-size: cover;
    background-position: center center;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 45%, transparent 100%);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-start; 
}

.cta-title {
    font-size: 42px; 
    color: #ffffff;
    line-height: 1.2; 
    font-weight: 600; 
    margin: 0 0 35px 0; 
}

.cta-button {
    background-color: #38BDF8;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #0284C7;
}

.cta-disclaimer {
    font-family: 'DM Sans', sans-serif; 
    font-size: 16px;
    color: #CBD5E1;
    margin-top: 15px;
    letter-spacing: 0.5px;
}


/**************************************************************
 * 11. RESPONSIVIDADE (MEDIA QUERIES)                         *
 **************************************************************/

/* Notebooks e Tablets (Landscape) */
@media (max-width: 1200px) {
    /* O Grid do card principal estouraria a tela, então empilhamos */
    .plans-card-horizontal {
        display: flex;
        flex-direction: column;
        max-width: 800px;
    }
    .plans-col-pricing::after {
        display: none; /* Esconde a linha divisória vertical */
    }
    .plans-col-pricing {
        border-bottom: 1px solid rgba(192, 207, 226, 0.6);
        align-items: center;
        text-align: center;
        padding-bottom: 40px;
    }
    .plans-brand-area {
        position: relative;
        left: 0;
        margin-bottom: 20px;
    }
    .plans-badges-row {
        justify-content: center;
    }
    .plans-col-features {
        padding: 30px 35px 50px 35px;
    }
    .plans-feature-list {
        margin-top: 25px;
    }
}

/* Tablets (Portrait) e Dispositivos Menores */
@media (max-width: 992px) {
    .snd-plans {
        padding-top: 180px;
    }
    .plans-main-title {
        font-size: 40px;
    }
    
    /* FAQ e Suporte começam a empilhar */
    .support-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .support-text-col {
        align-items: center;
        text-align: center;
    }
    .faq-container {
        flex-direction: column;
        gap: 40px;
    }
    .faq-text-col, .faq-accordion-col {
        width: 100%;
        max-width: 100%;
    }
    .faq-title {
        font-size: 38px;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    .snd-plans {
        padding-top: 140px;
    }
    .plans-main-title {
        font-size: 32px;
    }
    .plans-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .toggle-label {
        font-size: 18px;
    }

    /* Módulos grid: Deixa as colunas dinâmicas em telas pequenas */
    .plans-modules-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        justify-content: center;
    }

    /* Addons (Carrossel) */
    .addon-card {
        min-width: 85vw; /* O card vai ocupar quase a tela toda, mas vai dar para rolar para o lado */
        padding: 24px;
    }
    .addon-card-content {
        flex-direction: column; /* Empilha os textos e os ícones */
        gap: 25px;
    }
    .addon-right-col {
        width: 100%;
    }
    .addon-incl-row {
        flex-wrap: wrap; /* Permite que os ícones caiam de linha se não couberem */
    }
    .addon-desc {
        max-width: 100%;
    }

    /* Call to Action Final */
    .cta-container {
        padding: 0 20px;
    }
    .cta-content {
        margin: 0 auto;
        align-items: center !important;
        text-align: center !important;
    }
    .cta-icon {
        margin: 0 auto 20px auto !important;
        align-self: center !important;
    }
    .cta-title {
        font-size: 32px;
        text-align: center;
    }

    /* Remover linha lateral dos módulos extras */
    .extra-modules-wrapper::before {
        display: none;
    }
    .extra-section-header {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        gap: 15px;
    }
    .addon-grid, .addon-carousel-arrows {
        padding-left: 20px;
    }
}


@media (max-width: 480px) {
    .snd-container {
        padding: 0 20px;
    }
    .plans-main-title {
        font-size: 28px;
    }
    .plans-price-value {
        font-size: 24px;
    }
    .plans-price-details {
        font-size: 14px;
        white-space: normal; /* Permite quebrar a linha do "cobrado anualmente" */
    }
    .plans-col-pricing, .plans-col-modules, .plans-col-features {
        padding: 30px 20px;
    }
    .plans-badges-row {
        flex-direction: column;
        align-items: center;
    }
    .support-title {
        font-size: 32px;
    }
}