.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 85% 50%, #112d75 0%, #05091f 100%);
    color: #ffffff;
    padding: 60px 40px;
    width: 100%;
    margin: 0 auto;
    padding-top: calc(15vh + 60px);
    overflow: hidden;
}
body{
    margin: 0;
    padding: 0;
}

.container {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LADO ESQUERDO: CONTEÚDO */
.content-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.main-title {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.main-title span {
    color: #4371f7;
}

.description {
    font-size: 1.2rem;
    color: #b0b7c6;
    line-height: 1.5;
    max-width: 580px;
}

/* Grid de Benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 10px;
    max-width: 620px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}
.segment-container {
    width: 100%;
    padding: 30px 0;
    font-family: "Montserrat", sans-serif;
}




.icon-wrapper {
    color: #4371f7;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 113, 247, 0.05);
    padding: 12px;
}

.icon-wrapper svg {
    width: 52px;
    height: 52px;
    stroke-width: 1.8;
}

.benefit-item p {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

/* Box do QR Code */
.qr-box {
    border: 1.5px solid #1e2d5a;
    background-color: rgba(5, 9, 31, 0.7);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 620px;
    margin-top: 10px;
}

.qr-code {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 8px;
    width: 105px;
    height: 105px;
    flex-shrink: 0;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-text h4 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.qr-text p {
    font-size: 0.95rem;
    color: #b0b7c6;
    line-height: 1.5;
}


/* LADO DIREITO: COMPOSIÇÃO FIEL À FOTO */
.content-right {
    position: relative;
    width: 700px;
    height: 620px;
    background-image: url("/Views/assets/img/Totens.png");
    background-size: 95%;       /* cobre toda a área */
    background-position: center;  /* centraliza a imagem */
    background-repeat: no-repeat; /* evita repetição */
    left: 100px;
}

@media (max-width: 1300px) {
    .content-right{
        margin-top: 20px;
        background-size: 100%;      
        left: 80px;
    }
}

/* Responsividade Básica */
@media (max-width: 1100px) {
    .container {
        margin-top: 20px;
        flex-direction: column;
    }

    .main-title {
        font-size: 3rem;
    }

    .hero-section {
        padding: 40px 20px;
        padding-top: calc(15vh + 40px);
        border-radius: 0px;
    }

    .content-right {
        width: 500px;
        left: 0;
        height: 400px;
    }

    .img-tv {
        width: 55%;
        top: 90px;
    }

    .img-totem {
        width: 38%;
        height: 85%;
    }

    .img-painel-mesa {
        width: 32%;
        bottom: 30px;
        left: 18%;
    }
}

@media (max-width: 640px) {
    .container{
        margin-top: 60px;
    }

    .main-title {
        font-size: 2.3rem;
    }

    .main-title br {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .qr-box {
        flex-direction: column;
        text-align: center;
    }

    .content-right {
        width: 99%;
        height: 400px;
        left: 0;
    }
}

/* --- ESTILOS DA SEÇÃO DE PREÇOS --- */
.pricing-section {
    background-color: #ffffff;
    color: #333333;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-divider {
    width: 100%;
    max-width: 1100px;
    height: 1px;
    background-color: #999999;
    margin: 0 auto 50px auto;
}

.pricing-header h2 span {
    color: #4371f7;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin-top: 15px;
    font-weight: 500;
}

.pricing-title-selection {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    margin-top: 40px;
}

.pricing-title-selection span {
    color: #4371f7;
}

/* Grid de Planos */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 950px;
    margin-top: 20px;
}

.plan-card {
    background: #f4f6f9;
    border-radius: 28px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

/* Ícones superiores redondos */
.plan-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    position: absolute;
    top: -32px;
}

.icon-software {
    background-color: #00b81d;
}

.icon-combo {
    background-color: #1a52f4;
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 10px;
    letter-spacing: -0.5px;
}

.text-software {
    color: #00b81d;
}

.text-combo {
    color: #1a52f4;
}

.plan-description {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
    margin-top: 15px;
    min-height: 70px;
}

/* Preços */
.plan-price {
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.3rem;
    font-weight: 800;
    margin-right: 4px;
}

.price-value {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
}

.price-cents {
    font-size: 1.1rem;
    font-weight: 700;
    vertical-align: super;
    line-height: 0;
}

/* Lista de Benefícios do plano */
.plan-features {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.plan-features li {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    font-size: 1.1rem;
}

.check-software {
    color: #00b81d;
}

.check-combo {
    color: #1a52f4;
}

/* Botões dos planos */
.btn-plan {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.bg-software {
    background-color: #00b81d;
}

.bg-combo {
    background-color: #1a52f4;
}

.btn-plan:hover {
    opacity: 0.9;
}

/* Barra de Setup */
.setup-tax-bar {
    background-color: #0a1128;
    color: #ffffff;
    width: 100%;
    max-width: 750px;
    border-radius: 20px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.setup-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.setup-icon {
    font-size: 1.8rem;
    color: #ffffff;
}

.setup-text h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.setup-text p {
    font-size: 0.9rem;
    color: #a0a5b5;
    margin: 2px 0 0 0;
}

.setup-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 20px;
}

.setup-price {
    display: flex;
    align-items: baseline;
}

.setup-currency {
    font-size: 1.1rem;
    font-weight: 700;
    margin-right: 4px;
}

.setup-value {
    font-size: 2.5rem;
    font-weight: 900;
}

.setup-cents {
    font-size: 1rem;
    font-weight: 700;
}

.flex-title strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0b132a;
    line-height: 1.2;
    display: inline-block;
}

.flex-title p {
    font-size: 0.85rem;
    color: #666666;
    margin-top: 4px;
    max-width: 150px;
}

.flex-option-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.flex-option-card i {
    font-size: 2rem;
}

.icon-blue {
    color: #1a52f4;
}

.icon-green {
    color: #00b81d;
}

.option-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.option-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: #000000;
}

.option-sublabel {
    font-size: 0.8rem;
    color: #777777;
}

.option-price {
    display: flex;
    align-items: baseline;
    color: #1a52f4;
    font-weight: 800;
}

.option-price.text-green {
    color: #00b81d;
}

.opt-currency {
    font-size: 0.85rem;
    margin-right: 2px;
}

.opt-value {
    font-size: 1.8rem;
    font-weight: 900;
}

.opt-cents {
    font-size: 0.85rem;
}

.flex-or {
    font-weight: 700;
    color: #ffffff;
    background-color: #0f172a;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}
/* --- BARRA DE CTA FINAL --- */
.cta-conversion-bar {
    width: 100%;
    max-width: 1100px; /* Alinhado ao padrão das outras seções */
    background-color: #dbdbdb; /* Tom de cinza claro fiel à imagem */
    border-radius: 35px; /* Cantos bem arredondados da barra principal */
    padding: 20px 30px 20px 45px; /* Menos espaçamento na direita para o botão encaixar bem */
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 50px auto;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Agrupamento do Texto */
.cta-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 420px; /* Limita a largura para quebrar o título perfeitamente */
}

.cta-conversion-bar h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0b1430; /* Azul escuro quase preto */
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.5px;
}

.cta-conversion-bar p {
    font-size: 1rem;
    color: #334155;
    line-height: 1.3;
    margin: 8px 0 0 0;
}

/* O Botão Verde Gigante */
.btn-cta-final {
    background-color: #00b11c; /* Verde vivo idêntico à imagem */
    color: #ffffff;
    font-size: 2rem; /* Fonte grande e impactante */
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
    width: 100%;

    /* Faz o botão preencher bem o espaço vertical */
    padding: 28px 45px; 
    border-radius: 25px; /* Cantos arredondados do botão */
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 15px rgba(0, 177, 28, 0.2);
}

.btn-cta-final:hover {
    background-color: #009818;
    transform: translateY(-1px);
}

.btn-cta-final:active {
    transform: translateY(1px);
}

/* --- RESPONSIVIDADE PARA O CTA --- */
@media (max-width: 992px) {
    .cta-conversion-bar {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
        gap: 30px;
        border-radius: 28px;
    }

    .cta-text-group {
        max-width: 100%;
        align-items: center;
    }

    .btn-cta-final {
        box-sizing: border-box;
        padding: 22px 20px;
        font-size: 1.5rem; /* Ajuste leve para telas médias */
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .cta-conversion-bar h4 {
        font-size: 1.35rem;
    }
    
    .btn-cta-final {    
        font-size: 1.2rem;
        padding: 18px 10px;
    }
}
/* Responsividade para a nova seção */
@media (max-width: 992px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 50px;
    }

    .flex-title {
        text-align: center;
    }

    .flex-title p {
        max-width: 100%;
    }

    .flex-or {
        margin: 5px auto;
    }

    .cta-conversion-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }

    .cta-conversion-bar h4,
    .cta-conversion-bar p {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .pricing-header h2 {
        font-size: 1.6rem;
    }

    .pricing-title-selection {
        font-size: 1.4rem;
    }

    .setup-tax-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .setup-left {
        flex-direction: column;
        gap: 8px;
    }

    .setup-divider {
        width: 80%;
        height: 1px;
        margin: 10px auto;
    }

    .price-value {
        font-size: 3rem;
    }
}

.plan-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-icon img{
    max-height: 70% !important;
    width: 70% !important;
}

.setup-text{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* --- NOVA BARRA DE FLEXIBILIDADE DE TELAS --- */
.flexibility-bar {
    width: 100%;
    max-width: 1100px; /* Alinhado ao tamanho máximo do container principal */
    background-color: #f3f4f6; /* Fundo cinza bem claro idêntico à imagem */
    border-radius: 35px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    gap: 15px;
}

/* Bloco de Título (Esquerda) */
.flex-title-block {
    display: flex;
    flex-direction: column;
    max-width: 180px;
    text-align: center;
    align-items: center;
}

.flex-title-block h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.flex-title-block p {
    font-size: 0.85rem;
    color: #475569;
    margin: 6px 0 0 0;
    line-height: 1.3;
}

/* Divisória Vertical Fina */
.vertical-divider {
    width: 1px;
    height: 60px;
    background-color: #cbd5e1;
    margin: 0 20px;
}

/* Itens de Opção (TV / Android) */
.flex-option-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

/* Círculos dos Ícones */
.icon-circle {
    width: 65px;
    height: 65px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.icon-blue {
    color: #2563eb;
    font-size: 1.8rem;
}

.icon-green {
    color: #16a34a;
    font-size: 2.2rem; /* Ícone do Android costuma ser levemente maior */
}

/* Detalhes de Texto internos das opções */
.option-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.option-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.color-green-text {
    color: #16a34a;
}

.option-sublabel {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

/* Tipografia de Preços */
.option-price {
    display: flex;
    align-items: flex-start;
    font-weight: 900;
    margin-top: 4px;
    line-height: 1;
}

.color-blue { color: #2563eb; }
.color-green { color: #16a34a; }

.opt-currency {
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 2px;
    margin-top: 4px;
}

.opt-value {
    font-size: 2.4rem;
    letter-spacing: -1px;
}

.opt-cents {
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: 4px;
}

/* Divisória do "OU" Central */
.or-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 70px;
    justify-content: space-between;
    margin: 0 20px;
}

.divider-line {
    width: 1px;
    flex: 1;
    background-color: #cbd5e1;
}

.or-badge {
    background-color: #0f172a;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0;
}

/* --- RESPONSIVIDADE ADAPTADA --- */
@media (max-width: 992px) {
    .flexibility-bar {
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
        border-radius: 24px;
    }

    .flex-title-block {
        max-width: 100%;
        text-align: center;
    }

    .vertical-divider {
        display: none;
    }

    .or-divider {
        flex-direction: row;
        width: 100%;
        height: auto;
        margin: 10px 0;
    }

    .divider-line {
        height: 1px;
        width: 100%;
    }

    .or-badge {
        margin: 0 15px;
    }

    .flex-option-item {
        width: 100%;
        justify-content: flex-start;
        padding-left: 10%;
    }
}

@media (max-width: 480px) {
    .flex-option-item {
        padding-left: 0;
        flex-direction: column;
        text-align: center;
    }
}   
.plan-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-features {
    flex: 1;
}

.btn-plan {
    margin-top: auto;
}