/* ==========================================================================
   PLANOS COMPONENT - CSS OTIMIZADO
   ========================================================================== */

/* Base Styles */
button {
    outline: none !important;
}

/* ==========================================================================
   PLANOS COMPONENT LAYOUT
   ========================================================================== */

.planos-component {
    margin: 2rem auto;
}

.swiper {
    overflow: visible !important;
}

@media (max-width: 1024px) {
    .planos-component {
        margin-top: 0;
    }

    .swiper {
        overflow: hidden !important;
    }
}

/* ==========================================================================
   TOGGLE CONTROLS
   ========================================================================== */

.planos-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    max-width: 70px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-container {
    position: relative;
    width: 70px;
    height: 35px;
    background: var(--e-global-color-primary);
    border-radius: 25px;
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-knob {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.toggle-container.anual .toggle-knob {
    transform: translateX(36px);
}

.toggle-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
}

.toggle-label {
    position: absolute;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.toggle-label.mensal {
    left: -70px;
    opacity: 1;
}

.toggle-label.anual {
    right: -70px;
    opacity: 0.7;
}

.toggle-container.anual .toggle-label.mensal {
    opacity: 0.7;
}

.toggle-container.anual .toggle-label.anual {
    opacity: 1;
}

/* ==========================================================================
   SLIDER CONTAINERS
   ========================================================================== */

.planos-slider {
    display: block;
}

.planos-slider .swiper-planos-mensal .swiper-wrapper {
    padding: 15px 5px!important;
}

.swiper-planos-anual .swiper-wrapper {
   padding: 15px 5px;
}

.swiper:not(.swiper-initialized) .swiper-slide {
    max-width: 310px;
}

.slider-container {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 400px;
}

.slider-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
    min-height: 400px;
    animation: fadeInUp 0.5s ease-out;
}

/* ==========================================================================
   PLANO CARDS - BASE STYLES
   ========================================================================== */

.plano-slide {
    padding-inline: 0.5rem;
    width: 100%;
    display: flex;
}

.plano-card {
    padding: 1.5rem 0 1rem;
    text-align: left;
    flex: 1;
    min-width: 180px;
    position: relative;
    height: inherit;
    border-radius: 5px;
    border: unset !important;
}

.plano-card>* {
    padding-inline: 0.75rem;
}

.swiper-planos-mensal .plano-card,
.swiper-planos-anual .plano-card {
    box-shadow: 0 0 10px #dadada;
}

/* ==========================================================================
   PLANO DESTACADO STYLES
   ========================================================================== */

.plano-card.plano-destacado {
    background: var(--e-global-color-primary);
    color: #fff;
}

.plano-card.plano-destacado::before {
    content: "Mais Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--e-global-color-secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 66;
    white-space: nowrap;
}

.plano-card.plano-destacado .plano-header,
.plano-card.plano-destacado .plano-header h3,
.plano-card.plano-destacado .plano-preco .moeda,
.plano-card.plano-destacado .plano-preco .valor,
.plano-card.plano-destacado .economia-info span {
    color: #fff;
}

.plano-card.plano-destacado .plano-header {
    background-color: var(--e-global-color-primary);
}

.plano-card.plano-destacado .plano-header h3 {
    background-color: #fff;
}

.plano-card.plano-destacado .plano-beneficios li {
    color: #fff;
}

.plano-card.plano-destacado .plano-beneficios li::before {
    background: #fff;
    color: #28a745;
}

.plano-card.plano-destacado .btn-cta.btn-secundario {
    color: #fff !important;
    border-color: #fff !important;
}

/* ==========================================================================
   PLANO HEADER
   ========================================================================== */

.plano-header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    z-index: 20;
    border-radius: 12px 12px 0 0;
    position: sticky;
    top: 0;
    background: #fff;
    padding-top: 1.25rem;
}

.plano-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: #212529 !important;
    margin: 0 0 1rem;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 50px;
    background-color: #FAFBFA;
}

/* ==========================================================================
   PREÇOS
   ========================================================================== */

.plano-preco {
    margin-bottom: 8px;
    display: flex;
    align-items: end;
    gap: 10px;
}

.plano-preco .moeda {
    font-size: 26px;
    color: var(--e-global-color-accent);
    font-weight: 800;
    vertical-align: top;
    line-height: 1;
    margin-bottom: 4px;
}

.plano-preco .valor {
    font-size: 42px;
    font-weight: 800;
    color: var(--e-global-color-accent);
    line-height: 1;
}

.plano-preco .periodo {
    font-size: 16px;
    color: var(--e-global-color-accent);
    font-weight: 600;
    align-self: flex-end;
    margin-bottom: 8px;
}

.plano-preco small {
    color: var(--e-global-color-accent);
}

/* ==========================================================================
   ECONOMIA INFO
   ========================================================================== */

.economia-info {
    margin-bottom: 15px !important;
}

.economia-info span {
    font-family: "Mulish", sans-serif;
    font-size: 13px;
    color: #7E8492;
}

.economia-texto {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

/* ==========================================================================
   BUTTONS (CTA)
   ========================================================================== */

.btn-cta {
    display: inline-block;
    padding: 11px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 12px;
}

.btn-cta.btn-primario {
    background: var(--e-global-color-secondary) !important;
    color: #fff !important;
    border-color: var(--e-global-color-secondary) !important;
}

.btn-cta.btn-primario:hover {
    transform: translateY(-2px);
}

.btn-cta.btn-secundario {
    background: transparent !important;
    color: #111111 !important;
    border: 1px solid #EDEDED !important;
    font-weight: 700 !important;
    width: 100%;
}

.plano-destacado .btn-cta.btn-secundario {
    color: #fff !important;
}

/* Focus states */
.toggle-btn:focus,
.btn-cta:focus {
    outline: 2px solid #4B0082;
    outline-offset: 2px;
}

/* ==========================================================================
   BENEFÍCIOS
   ========================================================================== */

.plano-beneficios ul {
    margin-top: 15px !important;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plano-beneficios li {
    padding: 6px 0;
    color: #111111;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.plano-beneficios,
.plano-beneficios-extras {
    color: #111111;
}

.beneficios-titulo,
.plano-beneficios-extras h4 {
    font-size: 0.9rem;
    margin: 0 0 1rem;
    padding-top: 0.5rem;
    font-weight: 700;
}

.plano-destacado .plano-beneficios,
.plano-destacado .plano-beneficios-extras {
    color: #fff;
}

.plano-beneficios-extras h4 {
    margin-top: 5px;
    border-top: 1px solid #eaeaea;
}

.plano-beneficios-extras ul {
    padding: 0;
}

.plano-beneficios-extras ul li {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 6px 0;
    font-size: 15px;
}

/* Icons for benefits */
.plano-card li i {
    flex-shrink: 0;
    width: 21px;
    height: 21px;
    margin-right: 8px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21" height="21" viewBox="0 0 21 21" fill="none"><g clip-path="url(%23clip0_219_456)"><path d="M11 19C15.9706 19 20 14.9706 20 10C20 5.02944 15.9706 1 11 1C6.02944 1 2 5.02944 2 10C2 14.9706 6.02944 19 11 19Z" fill="white"></path><path d="M7.5 10.1797L9.5 12.1797L13.5 8.17969M19.5 10.1797C19.5 15.1503 15.4706 19.1797 10.5 19.1797C5.52944 19.1797 1.5 15.1503 1.5 10.1797C1.5 5.20913 5.52944 1.17969 10.5 1.17969C15.4706 1.17969 19.5 5.20913 19.5 10.1797Z" stroke="%2324AA4A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></g><defs><clipPath id="clip0_219_456"><rect width="21" height="21" fill="white"></rect></clipPath></defs></svg>');
}

.plano-card li i * {
    display: none;
}

.plano-destacado.plano-card li i {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21" height="21" viewBox="0 0 21 21" fill="none"><g clip-path="url(%23clip0_219_456)"><path d="M11 19C15.9706 19 20 14.9706 20 10C20 5.02944 15.9706 1 11 1C6.02944 1 2 5.02944 2 10C2 14.9706 6.02944 19 11 19Z" fill="white"></path><path d="M7.5 10.1797L9.5 12.1797L13.5 8.17969M19.5 10.1797C19.5 15.1503 15.4706 19.1797 10.5 19.1797C5.52944 19.1797 1.5 15.1503 1.5 10.1797C1.5 5.20913 5.52944 1.17969 10.5 1.17969C15.4706 1.17969 19.5 5.20913 19.5 10.1797Z" stroke="%23F78F1E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></g><defs><clipPath id="clip0_219_456"><rect width="21" height="21" fill="white"></rect></clipPath></defs></svg>');
}

.beneficio-texto {
    width: 100%;
}

.beneficio-numerico {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--e-global-color-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 100%;
    font-weight: 700;
    margin-left: 5px;
    min-width: 20px;
    text-align: center;
    font-size: 14px;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.plano-destacado .beneficio-numerico {
    background: white;
    color: var(--e-global-color-primary);
}

/* ==========================================================================
   SWIPER PAGINATION
   ========================================================================== */

.swiper-pagination {
    bottom: -0.3rem !important;
    position: relative;
}

.swiper-pagination-bullet {
    background: #dee2e6;
    border: none;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #4B0082;
    transform: scale(1.2);
}

.swiper-pagination-bullet:hover {
    background: #adb5bd;
}

.swiper-slide {
    height: auto !important;
    display: flex !important;
}

/* ==========================================================================
   TABELA DE BENEFÍCIOS - DESKTOP
   ========================================================================== */

.beneficios-table-component {
    width: 100%;
}

.beneficios-table-desktop {
    display: block;
}

.beneficios-table-mobile {
    display: none;
}

.beneficios-table {
    width: 100%;
    background: white;
    min-width: 1000px;
    display: flex;
    flex-direction: column;
}

.planos-cards-container {
    display: flex;
    padding-left: 340px;
    position: relative;
    margin-bottom: 0.25rem;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    padding-top: 1.75rem;
}

.planos-cards-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 340px;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.plano-card .plano-info h4 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--e-global-color-accent);
}

.plano-destacado .plano-info h4,
.plano-destacado .plano-preco,
.plano-destacado .plano-preco small {
    color: #fff !important;
}

.table-header {
    display: flex;
    background: var(--e-global-color-primary);
    overflow: hidden;
    margin-bottom: 0.5rem;
    border-radius: 8px;
}

.table-body {
    display: flex;
    flex-direction: column;
    padding-bottom: 3.25rem;
    position: relative;
}

.funcionalidade-row {
    display: flex;
    border-bottom: 1px solid #727272;
}

.funcionalidade-row:last-child {
    border-bottom: none;
}

.funcionalidades-header {
    background: var(--e-global-color-primary) !important;
    color: white;
    text-align: left;
    min-width: 340px;
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 600;
}

.funcionalidades-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.plano-column {
    flex: 1;
    min-width: 180px;
    height: 1px;
}

.plano-column:last-child {
    border-right: none;
}

.beneficios-table .plano-header {
    position: relative;
    flex: 1;
    min-width: 180px;
    padding: 1.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.beneficios-table .plano-header.plano-destacado,
.beneficios-table .plano-header.plano-destacado .plano-preco {
    background: var(--e-global-color-primary) !important;
    color: white;
    position: relative;
}

.beneficios-table .plano-header:last-child {
    border-top-right-radius: 12px;
}

.beneficios-table .plano-header.plano-destacado::before {
    content: "Mais Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--e-global-color-secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 9999 !important;
}

.beneficios-table .plano-info h4 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.beneficios-table .plano-preco {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    color: var(--e-global-color-primary);
}

.beneficios-table .btn-cta {
    display: inline-block;
    background: var(--e-global-color-primary);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.beneficios-table .btn-cta:hover {
    background: #5da89a;
    transform: translateY(-1px);
}

.beneficios-table .plano-destacado .btn-cta {
    background: white;
    color: var(--e-global-color-primary) !important;
}

.beneficios-table .plano-destacado .btn-cta:hover {
    background: #f8f9fa;
}

.beneficios-table td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    vertical-align: middle;
    text-align: center;
}

.beneficios-table td:last-child {
    border-right: none;
}

.funcionalidade-name {
    width: 340px;
    min-width: 340px;
    flex-shrink: 0;
    text-align: left !important;
    font-weight: 500;
    padding: 0.75rem 0.5rem 0.75rem 1.5rem !important;
    display: flex;
    align-items: center;
}

.func-name-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    width: 100%;
}

.func-name {
    font-weight: 600;
    color: #111111;
}

.funcionalidade-status {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 0.75rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.status-disponivel {
    color: #10b981;
}

.status-indisponivel {
    color: #ef4444;
}

/* ==========================================================================
   SHOW MORE BUTTONS
   ========================================================================== */

.show-more-row {
    display: flex;
    justify-content: center;
    background: #f9fafb;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
}

.show-more-btn {
    background: var(--e-global-color-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.show-more-btn:focus {
    background: var(--e-global-color-primary);
}

.show-more-btn:hover {
    background: #5da89a;
}

.show-more-btn .hide-text {
    display: none;
}

.show-more-btn.expanded .show-text {
    display: none;
}

.show-more-btn.expanded .hide-text {
    display: inline;
}

.show-more-btn.expanded .chevron-icon {
    transform: rotate(180deg);
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.funcionalidade-hidden {
    display: none;
}

.funcionalidade-hidden.show {
    display: flex !important;
}

.funcionalidade-hidden .funcionalidade-name {
    width: 340px;
    min-width: 340px;
    flex-shrink: 0;
}

.funcionalidade-hidden .funcionalidade-status {
    flex: 1;
    min-width: 180px;
}

/* ==========================================================================
   TOOLTIPS
   ========================================================================== */

.tooltip-trigger,
.tooltip-trigger-mobile {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    z-index: 1;
}

.tooltip-trigger:hover,
.tooltip-trigger:focus,
.tooltip-trigger-mobile:hover,
.tooltip-trigger-mobile:focus {
    opacity: 1;
}

.tooltip-trigger svg,
.tooltip-trigger-mobile svg {
    width: 16px;
    height: 16px;
}

.tooltip-content,
.tooltip-content-mobile {
    position: absolute;
    min-width: 150px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    max-width: 250px;
    white-space: normal;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100000;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tooltip-content::after,
.tooltip-content-mobile::after {
    content: '';
    position: absolute;
    z-index: 100000;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
}

.tooltip-trigger:hover .tooltip-content,
.tooltip-trigger:focus .tooltip-content,
.tooltip-trigger-mobile:hover .tooltip-content-mobile,
.tooltip-trigger-mobile:focus .tooltip-content-mobile,
.tooltip-trigger-mobile.active .tooltip-content-mobile {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   BENEFÍCIOS SECTIONS
   ========================================================================== */

.beneficios-section {
    margin-bottom: 2rem;
    position: relative;
}

.beneficios-section:last-child {
    margin-bottom: 0;
}

.beneficios-section .table-header {
    margin-bottom: 1rem;
    position: sticky;
    top: 202.5px;
    z-index: 5;
}

.beneficios-section .table-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.show-more-btn[data-section="beneficios"] .show-text,
.show-more-btn[data-section="extras"] .show-text {
    display: inline;
}

.show-more-btn[data-section="beneficios"] .hide-text,
.show-more-btn[data-section="extras"] .hide-text {
    display: none;
}

.show-more-btn.expanded .show-text {
    display: none;
}

.show-more-btn.expanded .hide-text {
    display: inline;
}

.show-more-row {
    display: table-row !important;
    visibility: visible !important;
}

/* ==========================================================================
   LOADING STATES
   ========================================================================== */

.planos-component.loading {
    opacity: 0.7;
    pointer-events: none;
}

.planos-component.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4B0082;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.plano-card-desktop {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==========================================================================
   ACCORDION STYLES
   ========================================================================== */

.recursos-accordion .e-n-accordion {
    counter-reset: number;
}

.recursos-accordion .e-n-accordion summary {
    counter-increment: number;
}

.recursos-accordion .e-n-accordion summary .e-n-accordion-item-title-header::before {
    content: counter(number, decimal-leading-zero) "";
    font-weight: bold;
    color: var(--e-global-color-primary);
    background-color: #F0F9FB;
    border-radius: 32px;
    margin-right: 5px;
    padding: 0 5px;
}

/* ==========================================================================
   RESPONSIVE DESIGN - TABLET
   ========================================================================== */

@media (max-width: 1200px) {
    .beneficios-table {
        min-width: 900px;
    }

    .beneficios-table .plano-header {
        min-width: 160px;
    }

    .beneficios-table .btn-cta {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .beneficios-table .plano-preco {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE
   ========================================================================== */

@media (max-width: 1024px) {
    .plano-card {
        padding: 1.25rem;
        margin: 0;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid #e5e7eb;
        height: auto;
        min-height: 400px;
        display: flex;
        flex-direction: column;
    }

    .plano-card.header-fixed {
        padding-top: 120px;
    }

    .plano-beneficios {
        flex: 1;
    }

    .planos-slider .swiper {
        margin: 0 -1rem;
        padding: 0 0.5rem;
        width: 100%;
        height: auto;
    }

    .planos-slider .swiper-wrapper {
        padding: 15px 5px;
        align-items: stretch;
        height: auto;
    }

    .planos-slider .swiper-slide {
        height: auto;
        display: flex;
        flex-direction: column;
        width: auto;
    }

    .slider-container:not(.active) {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
    }

    .plano-preco .valor {
        font-size: 2.5rem;
    }

    .toggle-container.anual .toggle-knob {
        transform: translateX(35px);
    }

    .toggle-label {
        font-size: 0.8rem;
    }

    .toggle-label.mensal {
        left: -65px;
    }

    .toggle-label.anual {
        right: -65px;
    }

    .economia-badge {
        font-size: 0.7rem;
        bottom: -25px;
    }

    .swiper-pagination-mensal,
    .swiper-pagination-anual,
    .swiper-pagination-beneficios {
        position: static;
        margin-top: 1.5rem;
    }

    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #d1d5db;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
        background: #4B0082;
        transform: scale(1.2);
    }

    .plano-card.plano-destacado .plano-header,
    .plano-card.plano-destacado .plano-header.fixed-header {
        background-color: var(--e-global-color-primary);
    }

    /* Benefícios Table Mobile */
    .beneficios-table-desktop {
        display: none;
    }

    .beneficios-table-mobile {
        display: block;
    }

    .beneficios-table-mobile .swiper {
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .beneficios-table-mobile .swiper-wrapper {
        align-items: stretch;
    }

    .beneficios-table-mobile .swiper-slide {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid #e5e7eb;
        padding: 0;
        min-height: 400px;
        flex-direction: column;
    }

    .beneficios-table-mobile .swiper-slide.plano-destacado {
        border: 2px solid var(--e-global-color-primary);
        position: relative;
    }

    .beneficios-table-mobile .swiper-slide.plano-destacado .plano-mobile-header {
        background: var(--e-global-color-primary);
        color: white;
        box-shadow: 0 2px 8px rgba(116, 192, 170, 0.3);
        overflow: hidden;
    }

    .beneficios-table-mobile .swiper-slide.plano-destacado .plano-mobile-header h4,
    .beneficios-table-mobile .swiper-slide.plano-destacado .plano-mobile-header .plano-preco {
        color: white;
    }

    .beneficios-table-mobile .swiper-slide.plano-destacado::before {
        content: "Mais Popular";
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--e-global-color-secondary);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        white-space: nowrap;
        z-index: 150;
    }

    .plano-mobile-header {
        text-align: left;
        margin-bottom: 0;
        padding: 1.5rem 1.5rem 1rem;
        border-bottom: 1px solid #e5e7eb;
        background: white;
        transition: all 0.3s ease;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .plano-mobile-header h4 {
        margin: 0 0 0.5rem;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--e-global-color-accent);
    }

    .plano-mobile-header .plano-preco {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #6b7280;
    }

    .funcionalidades-mobile {
        padding: 0 1.5rem;
        margin: 0;
        position: relative;
    }

    .funcionalidade-mobile-item {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 0.75rem 0;
        border-bottom: 1px solid #eaeaea;
    }

    .funcionalidade-mobile-item:last-child {
        border-bottom: none;
    }

    .func-mobile-name {
        flex: 1;
        margin-right: 1rem;
    }

    .func-mobile-name .func-name {
        font-weight: 500;
        color: #111111;
        font-size: 0.9rem;
    }

    .func-mobile-status {
        flex-shrink: 0;
    }

    .func-name-container-mobile {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: space-between;
    }

    .show-more-mobile {
        text-align: center;
        padding: 1rem 0;
        position: absolute;
        right: 0;
        left: 0;
        bottom: 0;
    }

    .show-more-btn-mobile {
        background: var(--e-global-color-primary);
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 700;
        cursor: pointer;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        width: 100%;
    }

    .show-more-btn-mobile:focus {
        background: var(--e-global-color-primary);
    }

    .show-more-btn-mobile:hover {
        background: #5da89a;
    }

    .show-more-btn-mobile .hide-text {
        display: none;
    }

    .show-more-btn-mobile.expanded .show-text {
        display: none;
    }

    .show-more-btn-mobile.expanded .hide-text {
        display: inline;
    }

    .show-more-btn-mobile.expanded .chevron-icon {
        transform: rotate(180deg);
    }

    .show-more-btn-mobile svg {
        flex-shrink: 0;
    }

    .funcionalidades-hidden-mobile {
        display: none;
    }

    .funcionalidades-hidden-mobile.show {
        display: block;
    }

    .beneficios-table-mobile .swiper-pagination {
        position: static;
        margin-top: 1.5rem;
    }

    .beneficios-table-mobile .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #d1d5db;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .beneficios-table-mobile .swiper-pagination-bullet-active {
        background: var(--e-global-color-primary);
        transform: scale(1.2);
    }

    .beneficios-section-mobile {
        padding-bottom: 4.15rem;
        position: relative;
    }

    .beneficios-section-mobile:last-child {
        margin-bottom: 0;
    }

    .section-title-mobile {
        font-size: 1.125rem;
        font-weight: 600;
        color: #374151;
        margin: 0 0 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .beneficios-section-mobile+.beneficios-section-mobile {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #f3f4f6;
    }

    .show-more-btn-mobile[data-section="beneficios"] .show-text,
    .show-more-btn-mobile[data-section="extras"] .show-text {
        display: inline;
    }

    .show-more-btn-mobile[data-section="beneficios"] .hide-text,
    .show-more-btn-mobile[data-section="extras"] .hide-text {
        display: none;
    }

    .show-more-btn-mobile.expanded .show-text {
        display: none;
    }

    .show-more-btn-mobile.expanded .hide-text {
        display: inline;
    }

    .tooltip-content-mobile::after {
        display: none;
    }

    .tooltip-trigger-mobile:hover::before,
    .tooltip-trigger-mobile:focus::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 9998;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ========================================================================== */

@media (max-width: 768px) {
    .beneficios-section {
        margin-bottom: 1.5rem;
    }

    .beneficios-section+.beneficios-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .beneficios-section .table-header h3 {
        font-size: 1.125rem;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.swiper-slide>* {
    height: 100% !important;
}

.inner-plano-card {
    width: 100%;
    height: 100%;
}

.plano-conteudo {
    padding-top: 1rem;
}