* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    caret-color: transparent;
}

*:focus,
*:active {
    outline: none;
    box-shadow: none;
}

/* body {
    user-select: none;
} */

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #001f3f;
    line-height: 1.6;
    overflow-x: hidden;
}

html,
body {
    overflow: auto;
}

/* Scroll */

/* Chrome, Edge, Safari */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Firefox */
html,
body {
    scrollbar-width: none;
}

/* Edge antigo */
html,
body {
    -ms-overflow-style: none;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #8aca21;
    padding: 5px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    /* font-size: 28px; */
    font-weight: 700;
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #28a745;
}

/* .hero {
    background: linear-gradient(135deg, #001f3f 0%, #003300 100%);
    min-height: 70vh;
    /* display: flex; /
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}*/

.hero {
    background: linear-gradient(135deg, #80a126, #8aca21, #51651c);
    background-size: 300% 300%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    position: relative;
    overflow: hidden;

    /* Animação do gradiente */
    animation: gradientMove 12s ease infinite;
}

/* Animação que faz o gradiente "respirar" e se mover */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 25px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero h6 {
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: center, justify;
}

#typing-text {
    border-right: 2px solid #000;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
    animation: blinkCursor 0.8s infinite;
    white-space: pre-wrap;
    align-items: justify-content;
}

@keyframes blinkCursor {

    0%,
    50% {
        border-color: transparent;
    }

    100% {
        border-color: #000;
    }
}

.hero p {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.features span {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.features span:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.cta {
    background: #8aca21;
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.cta:hover {
    background: #218838;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
}

.subtitle {
    color: #8aca21;
    font-size: clamp(18px, 2.5vw, 20px);
    margin-bottom: 70px;
    font-weight: 500;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 50px; */
}

.card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 31, 63, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 31, 63, 0.2);
    border-color: #8aca21;
}

.card img {
    width: 85px;
    height: 85px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #001f3f;
}


.more-than-internet {
    padding: 35px;
    background: #001f3f;
    color: #fff;
    text-align: center;
}

.more-than-internet h2 {
    font-size: clamp(36px, 4vw, 42px);
    margin-bottom: 20px;
}

.app-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.app-card {
    background: linear-gradient(145deg, #002b5c, #001f3f);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 43, 92, 0.4);
}

.app-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 10px;
    border-radius: 50%;
}

.app-card p {
    padding: 30px;
    font-size: 19px;
    color: #e9f0f7;
}

.plans {
    padding: 10px 0;
    background: #f8f9fa;
}

.plans h2 {
    text-align: center;
    font-size: clamp(36px, 4vw, 42px);
    margin-bottom: 1px;
    color: #001f3f;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: #fff;
    padding: 50px 25px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 31, 63, 0.12);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 31, 63, 0.25);
    border-color: #28a745;
}

.plan-card.popular {
    border: 3px solid #8aca21;
    background: linear-gradient(145deg, #fff 0%, #f8f9ff 100%);
}

.tag {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8aca21, #8aca21);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.speed {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    margin: 25px 0;
    color: #8aca21;
    text-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.plan-card ul {
    list-style: none;
    text-align: left;
    margin: 40px 0;
    color: #001f3f;
    padding-left: 0;
}

.plan-card ul li {
    margin: 22px 0;
    /* mais espaço vertical entre as linhas (opcional, mas fica melhor) */
    font-size: 17px;
    /* levemente maior para melhor legibilidade */
    padding-left: 45px;
    /* ← AUMENTADO: espaço horizontal entre o ✓ e o texto */
    position: relative;
    line-height: 1.7;
    /* melhora o alinhamento vertical */
}

.plan-card ul li::before {
    content: "✓";
    color: #8aca21;
    font-weight: bold;
    font-size: 22px;
    /* ✓ um pouco maior e mais destacado */
    position: absolute;
    left: 0;
    top: 2px;
    /* pequeno ajuste vertical para ficar mais alinhado com o texto */
}

.old-price {
    font-size: 1.1rem;
    color: #666;
    /* cinza mais discreto */
    margin: 10px 0 5px;
    text-decoration: line-through;
    /* ← risco no meio (principal) */
    opacity: 0.8;
    /* levemente apagado para destacar o desconto */
}

.old-price span {
    text-decoration: line-through;
    /* reforça o risco no valor */
    font-weight: 500;
}

.price {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    margin: 35px 0;
    color: #001f3f;
}

.price span {
    font-size: 0.5em;
    font-weight: 500;
    color: #666;
}

.btn {
    background: linear-gradient(135deg, #8aca21, #8aca21);
    color: #fff;
    padding: 18px 55px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    /* transition: all 0.3s ease; */
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: #8aca21;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.5);
}

/* SEÇÃO APP - IMAGEM ESQUERDA + CONTEÚDO DIREITO */
.app-section {
    background: linear-gradient(135deg, #80a126, #8aca21, #51651c);
    color: #fff;
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff11"/><stop offset="100%" stop-color="%23ffffff00"/></radialGradient></defs><circle cx="20" cy="20" r="8" fill="url(%23a)" opacity="0.3"/><circle cx="80" cy="80" r="6" fill="url(%23a)" opacity="0.2"/></svg>');
    pointer-events: none;
}

.app-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.app-mockup {
    flex: 0 0 400px;
    max-width: 420px;
}

.mockup-image {
    width: 100%;
    height: auto;
    border-radius: 45px;
    display: block;
    transition: all 0.4s ease;
}

.app-mockup:hover .mockup-image {
    transform: scale(1.02) rotate(1deg);
}

.app-text {
    flex: 1;
    max-width: 580px;
    text-align: left;
}

.app-text h2 {
    font-size: clamp(38px, 5vw, 52px);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-text .subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 45px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 60px;
}

.features-list li {
    font-size: clamp(18px, 2.2vw, 20px);
    margin: 20px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
    color: #28a745;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 900;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.download-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-download {
    background: #8aca21;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    /* border: 2px solid rgba(255, 255, 255, 0.3); */
    backdrop-filter: blur(10px);
}

.btn-download:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.btn-download img {
    height: 42px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

footer {
    background: linear-gradient(180deg, #001f3f 0%, #000 100%);
    color: #fff;
    padding: 100px 0 40px;
    text-align: center;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-logo p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.footer-links h4,
.footer-contact h4,
.footer-logo h4 {
    margin-bottom: 25px;
    font-size: 20px;
    color: #8aca21;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin: 12px 0;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #28a745;
    transform: translateY(-8px);
}

.footer-contact p {
    margin: 12px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVIDADE COMPLETA */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 1100px) {
    .app-content {
        flex-direction: column;
        gap: 70px;
        text-align: center;
    }

    .app-mockup {
        order: -1;
        max-width: 380px;
    }

    .app-text {
        text-align: center;
        max-width: 100%;
    }

    .features-list {
        max-width: 450px;
        margin: 0 auto 50px;
    }

    .download-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .hero {
        padding-top: 70px;
        min-height: 90vh;
    }

    nav ul {
        gap: 20px;
    }

    /* .why-choose {
        padding: 100px 0 70px;
    } */

    .plans,
    .more-than-internet {
        padding: 80px 0;
    }

    .app-section {
        padding: 100px 0;
    }

    .app-text h2 {
        font-size: 36px;
    }

    .app-text .subtitle {
        font-size: 18px;
    }

    .features-list li {
        font-size: 17px;
    }

    .mockup-image {
        max-width: 320px;
    }

    .plans-grid,
    .cards {
        gap: 30px;
    }

    .app-cards {
        gap: 30px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #8aca21;
        padding: 20px 0;
        transition: left 0.3s ease;
    }

    /* Menu mobile toggle - adicione no JS se necessário */
    nav.active ul {
        left: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .features-list li {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/*  CARROSSEL DE PLANOS  */
.plans-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 5px;
    min-height: 950px;
    padding: 60px 0 100px;
}

.plans-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    gap: 40px;
    width: max-content;
    /* importante para deslizar */
}

.plan-card {
    flex: 0 0 340px;
    /* largura fixa de cada card */
    min-width: 340px;
    scroll-snap-align: start;
}

/* Setas de navegação */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #8aca21;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #8aca21;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

/* Oculta setas em mobile pequeno (opcional) */
@media (max-width: 768px) {
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Ajuste para mobile - mostra 1 plano por vez */
@media (max-width: 480px) {
    .plan-card {
        flex: 0 0 90vw;
        min-width: 90vw;
    }
}

.logoplay {
    width: 50px;
    height: 50px;
}

/*video do banner*/

.video-banner {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 31.25%;
    /* 600 ÷ 1920 = 0.3125 → 31.25% */
    overflow: hidden;
    background: #000;
    /* fundo preto enquanto carrega */
}

/* O vídeo preenche perfeitamente sem distorcer */
.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* cobre toda a área mantendo proporção */
    object-position: center;
    height: 100%;
}

/* Opcional: esconde em mobile pequeno (se quiser mostrar só imagem estática) */
@media (max-width: 768px) {
    .video-banner {
        display: none;
    }
}

.social img {
    width: 50px;
    height: 50px;
}

.social {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.horario {
    margin-bottom: 25px;
    font-size: 20px;
    color: #28a745;
    font-weight: 600;
}

/* AUTOATENDIMENTO */

.auto-container {
    text-align: center;
    padding: 40px 20px;
}

.auto-container h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.auto-card {
    background: #8aca21;
    border-radius: 16px;
    padding: 30px 20px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.auto-card:hover {
    transform: scale(1.05);
}

.auto-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.auto-card span {
    font-size: 16px;
    font-weight: 500;
}

/* Ícone flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 45px;
    height: 45px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background-color: #20b358;
}

/* Mobile: ajusta posição e tamanho */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 38px;
        height: 38px;
    }
}

.description {
    margin-top: 15px;
    font-size: 2px;
    color: #e0e0e0;
    line-height: 1.4;
}

a:focus {
    outline: none;
}

a:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    color: inherit;
}

a {
    text-decoration: none;
}

.planos-tel a {
    text-decoration: none;
    color: inherit;       
}

.planos-tel a:visited,
.planos-tel a:hover,
.planos-tel a:active,
.planos-tel a:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.disclaimer {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.disclaimer img {
    width: 100%;
    height: auto;
    display: block;
}

/* MENU HAMBURGUER MOBILE */

/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* DESKTOP */
.nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* HAMBÚRGUER */
.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    margin: 5px 0;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #28a745;
    /* cor verde */
    margin: 5px 0;
}

.menu-toggle {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
}

/* LISTRAS */
.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* POSIÇÕES */
.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

/* QUANDO ATIVO */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}


/* MOBILE */

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: #fff;
        display: none;
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .nav li {
        margin-bottom: 15px;
    }
}

/* Configuração TV */

.container-tv {
    max-width: 1200px;
    margin: 50px auto;
    padding: 100px 50px
}

.app-content-tv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.app-mockup-tv {
    flex: 0 0 400px;
    max-width: 420px;
    align-items: center;
}


/* .mockup-image-tv {
    width: 170%;
    height: auto;
    border-radius: 25px;
    display: block;
} */

.mockup-image-tv {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5%;
}

@media (min-width: 1400px) {
    .mockup-image-tv {
        max-width: 130%;
    }
}

@media (max-width: 768px) {
    .mockup-image-tv {
        max-width: 100%;
    }
}



@media (max-width: 1100px) {
    .app-content-tv {
        flex-direction: column;
        text-align: center;
    }

    .app-mockup-tv {
        order: -1;
    }

    .app-text-tv {
        text-align: center;
    }
}

.app-section-tv {
    /* background: linear-gradient(135deg, #28a745 0%, #218838 100%); */
    color: #fff;
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.app-section-tv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.app-section-tv {
    padding: 80px 0;
}

.subtitle-tv {
    color: #28a745;
    font-size: clamp(18px, 2.5vw, 20px);
    margin-bottom: 70px;
    font-weight: 500;
}

.app-text-tv .subtitle-tv {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 45px;
    font-weight: 500;
    color: #001f3f;
    line-height: 1.5;
}

.app-text-tv .subtitle-tv {
    font-size: 18px;
}

@media (max-width: 480px) {
    .p-quem-somos p {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


.p-quem-somos p {
    font-size: 17px;
    color: #001f3f;
    text-align: justify;
}

.p-quem-somos {
    max-width: 450px;
    margin: 0 auto 50px;
}

.p-quem-somos {
    list-style: none;
    text-align: left;
    margin-bottom: 60px;
}

.p-quem-somos li {
    font-size: clamp(18px, 2.2vw, 20px);
    margin: 20px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.check-icon-tv {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
    color: #001f3f;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 900;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}



@media (max-width: 480px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}



@media (max-width: 768px) {

    .app-text-tv h2 {
        font-size: 36px;
    }

    .app-text-tv .subtitl-tv {
        font-size: 18px;
    }
}

.app-text-tv h2 {
    font-size: 36px;
    color: #001f3f;
}

.btn-download-tv {
    background: #fff;
    color: #28a745;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-download-tv:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.btn-download-tv img {
    height: 42px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

@media (max-width: 480px) {
    .download-buttons-tv {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {

    .download-buttons-tv {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width: 1100px) {

    .download-buttons-tv {
        justify-content: center;
    }
}

.download-buttons-tv {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* .planos-tel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
} */

.planos-tel {
    display: flex;
    justify-content: center;
    margin-top: 16px; /* espaço entre vídeo e botão */
}

.planos-tel span {
    display: flex;

    justify-content: center;


    background: rgba(255, 255, 255, 0.12);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* Hover */
.planos-tel span:hover {
    transform: translateY(-3px);
}

/* Ativo */
.planos-tel span {
    background: linear-gradient(135deg, #8aca21, #8cac34);
    color: #fff;
    border-color: #8aca21;
    align-items: center;
    font-weight: 700;
}

.img-equipe {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* .why-choose {
    padding: 25px 0 100px;
    background: #fff;
    text-align: center;
}

.why-choose h2 {
    font-size: clamp(36px, 4vw, 42px);
    margin-bottom: 15px;
    color: #001f3f;
} */

/* SECTION why-choos RSPONSIVO*/
.why-choose {
    padding: 25px 0 100px;
    background: #fff;
    text-align: center;
}

.why-choose .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose h2 {
    font-size: clamp(26px, 5vw, 42px);
    margin-bottom: 40px;
    color: #001f3f;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
}

.card img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #001f3f;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0 50px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 25px 18px;
    }

    .card img {
        width: 60px;
        height: 60px;
    }

    .card p {
        font-size: 14px;
    }
}

/* MOBILE PEQUENO */
@media (max-width: 480px) {
    .why-choose h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

.dev {
    font-size: 14px;
}

/* AGENTE JMS */

.popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
}

.popup.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.popup img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.popup-text {
    flex: 1;
    font-size: 14px;
}

.popup-text strong {
    display: block;
    color: #001f3f;
}

.popup button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.fala-com-alguem {
    background: #8aca21;
    color: #fff;
    padding: 1px 10px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.fala-com-alguem:hover {
    background: #218838;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
}