/* ============================================================
   INOVA TELECOM - Estilos Customizados
   ============================================================ */

/* ---------- Variáveis ---------- */
:root {
    --primary: #00A89D;
    --primary-dark: #008F86;
    --primary-light: #00C4B8;
    --secondary: #1A2238;
    --secondary-light: #243154;
    --accent: #00D4AA;
    --white: #ffffff;
    --light-bg: #f0faf9;
    --gray-bg: #f5f7fa;
    --text-dark: #2d2d2d;
    --text-muted: #6c757d;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Top Bar ---------- */
.topbar {
    background: var(--primary);
    padding: 6px 0;
    font-size: 0.85rem;
}

.topbar a {
    color: var(--white);
}

.topbar a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.topbar-phone i {
    margin-right: 5px;
    color: var(--white);
}

.topbar-phone a {
    font-weight: 600;
}

.topbar-social {
    gap: 14px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.topbar-social a {
    font-size: 1rem;
}

.topbar .container {
    position: relative;
}

.topbar-links {
    gap: 10px;
    margin-left: auto;
}

.topbar-btn {
    border: 1px solid var(--white);
    border-radius: 4px;
    padding: 3px 14px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.topbar-btn:hover {
    background: var(--white);
    color: var(--primary) !important;
}


/* ---------- Header / Navbar ---------- */
.header-main {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header-main.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-img {
    height: 50px;
    width: auto;
}

.navbar {
    padding: 8px 0;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px !important;
    font-size: 0.95rem;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.btn-cta-header {
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 8px 22px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--primary);
    white-space: nowrap;
}

.btn-cta-header:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 168, 157, 0.3);
}

.btn-cta-header i {
    margin-right: 4px;
}

.navbar-toggler {
    border-color: var(--primary);
    padding: 4px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(0, 168, 157, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300A89D' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Banner ---------- */
.banner-section {
    width: 100%;
    overflow: hidden;
    background: var(--primary);
    line-height: 0;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.banner-swiper {
    width: 100%;
    position: relative;
}

.banner-swiper .swiper-pagination {
    bottom: 16px;
}

.banner-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.banner-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
}

.banner-swiper .swiper-button-prev,
.banner-swiper .swiper-button-next {
    color: var(--white);
    background: rgba(0, 0, 0, 0.25);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: var(--transition);
}

.banner-swiper .swiper-button-prev:hover,
.banner-swiper .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

.banner-swiper .swiper-button-prev::after,
.banner-swiper .swiper-button-next::after {
    font-size: 18px;
}

@media (max-width: 767.98px) {
    .banner-swiper .swiper-button-prev,
    .banner-swiper .swiper-button-next {
        display: none;
    }
}

/* ---------- Títulos de Seção ---------- */
.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.section-title .section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 5px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 8px auto 0;
    border-radius: 2px;
}

.title-line.left {
    margin-left: 0;
}

/* ---------- Seção Planos ---------- */
.section-planos {
    padding: 70px 0;
    background: var(--gray-bg) url('../img/bg.png') center center / cover no-repeat;
}

.section-planos .section-title h2 {
    color: var(--primary);
}

.plan-card {
    background: var(--white);
    border: 2px dashed #c8d6e5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    border-style: solid;
}

.plan-card.featured {
    border-color: var(--primary);
    border-style: solid;
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.plan-badge {
    position: absolute;
    top: 12px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    z-index: 2;
}

.plan-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 25px 20px;
    text-align: center;
}

.plan-speed {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.plan-speed span {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-top: 4px;
    letter-spacing: 3px;
}

.plan-body {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.plan-features li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li i {
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.plan-price {
    text-align: center;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    padding-top: 15px;
    border-top: 1px dashed #dce3ea;
}

.price-prefix {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 8px;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-cents {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 6px;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 5px;
}

.btn-plan {
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    letter-spacing: 0.5px;
}

.btn-plan:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 157, 0.35);
}

/* ---------- Seção Aplicativos ---------- */
.section-apps {
    padding: 70px 0;
    background: linear-gradient(180deg, #f0fafa 0%, #e4f5f5 100%);
    position: relative;
}

.section-apps .section-title h2 {
    color: var(--secondary);
}

.section-apps .section-subtitle {
    color: var(--text-muted);
}

.section-apps .title-line {
    background: var(--primary);
}

.home-apps-swiper-wrap {
    margin-top: 35px;
}

.home-apps-box {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 168, 157, 0.08);
    padding: 30px 55px;
}

.home-apps-box .swiper {
 
}

.home-apps-box .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
}

.home-apps-box .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

.home-apps-box .swiper-button-prev,
.home-apps-box .swiper-button-next {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary);
    transition: var(--transition);
}

.home-apps-box .swiper-button-prev:hover,
.home-apps-box .swiper-button-next:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 168, 157, 0.3);
}

.home-apps-box .swiper-button-prev::after,
.home-apps-box .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

.home-apps-box .swiper-button-prev {
    left: 8px;
}

.home-apps-box .swiper-button-next {
    right: 8px;
}

.home-app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    text-align: center;
    padding: 12px 8px;
    border-radius: 16px;
    transition: var(--transition);
}

.home-app-item:hover {
    transform: translateY(-6px);
    background: #f7fdfd;
}

.home-app-img-wrap {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    transition: var(--transition);
}

.home-app-item:hover .home-app-img-wrap {
    box-shadow: 0 8px 25px rgba(0, 168, 157, 0.2);
    transform: scale(1.05);
}

.home-app-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-app-nome {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 110px;
    margin-bottom: 6px;
}

.home-app-badge {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 10px;
    border-radius: 20px;
}

.home-app-badge-3 {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #5a4000;
}

.home-app-badge-2 {
    background: linear-gradient(135deg, #08D6DF, #058E85);
    color: var(--white);
}

.home-app-badge-1 {
    background: #e8f6f6;
    color: var(--primary-dark);
}

.home-app-badge-90,
.home-app-badge-91 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white);
}

.home-apps-footer {
    text-align: center;
    margin-top: 28px;
}

.home-apps-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

@media (max-width: 991.98px) {
    .home-apps-box {
        padding: 24px 45px;
    }
}

@media (max-width: 767.98px) {
    .section-apps {
        padding: 50px 0;
    }

    .home-apps-box {
        padding: 20px 40px;
        border-radius: 16px;
    }

    .home-app-img-wrap {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }

    .home-app-nome {
        font-size: 0.75rem;
    }

    .home-app-badge {
        font-size: 0.55rem;
    }
}

@media (max-width: 575.98px) {
    .home-apps-box {
        padding: 16px 30px;
    }

    .home-apps-box .swiper-button-prev,
    .home-apps-box .swiper-button-next {
        display: none;
    }

    .home-app-img-wrap {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }
}

/* ---------- Seções de Serviços (Câmeras / Chip) ---------- */
.servico-section {
    padding: 70px 0;
}

.servico-cameras {
    background: var(--gray-bg);
}

.servico-chip {
    background: var(--white);
}

.servico-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.servico-tag i {
    margin-right: 6px;
}

.servico-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 14px;
}

.servico-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.servico-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.servico-features li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.servico-features li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.servico-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.servico-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.servico-card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.servico-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.servico-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.servico-card-price {
    margin-bottom: 24px;
}

.servico-price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.servico-price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.servico-price-value .price-prefix {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
}

.servico-price-value .price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.servico-price-value .price-cents {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

.servico-price-value .price-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.servico-card .planos-page-btn {
    width: 100%;
}

@media (max-width: 991.98px) {
    .servico-info h2 {
        font-size: 1.6rem;
    }

    .servico-card {
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .servico-section {
        padding: 50px 0;
    }

    .servico-card {
        padding: 30px 20px;
    }

    .servico-price-value .price-value {
        font-size: 2.4rem;
    }
}

/* ---------- Seção Diferenciais ---------- */
.section-diferenciais {
    padding: 70px 0;
    background: linear-gradient(135deg, #08D6DF, #058E85);
}

.section-diferenciais .section-title h2 {
    color: var(--white);
}

.section-diferenciais .section-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
}

.section-diferenciais .title-line {
    background: var(--white);
}

.diff-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 35px 20px;
    transition: var(--transition);
    height: 100%;
}

.diff-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.diff-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.diff-icon i {
    font-size: 1.8rem;
    color: #058E85;
}

.diff-card h4 {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.diff-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ---------- Seção Quem Somos ---------- */
.section-sobre {
    padding: 80px 0;
    background: var(--white) url('../img/bg.png') center center / cover no-repeat;
}

.sobre-tag {
    display: inline-block;
    background: linear-gradient(135deg, #08D6DF, #058E85);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.sobre-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 12px;
}

.sobre-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.sobre-logo-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(8, 214, 223, 0.08), rgba(5, 142, 133, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px dashed rgba(0, 168, 157, 0.25);
}

.sobre-logo-circle::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(0, 168, 157, 0.1);
}

.sobre-logo-circle::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 168, 157, 0.06);
}

.sobre-logo-img {
    max-width: 180px;
    filter: drop-shadow(0 5px 15px rgba(0, 168, 157, 0.15));
}

.sobre-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 25px;
}

.sobre-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 18px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.sobre-highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
}

.sobre-highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #08D6DF, #058E85);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sobre-highlight-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.sobre-highlight-item h6 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.sobre-highlight-item p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 0;
}

.btn-saiba-mais {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-saiba-mais:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ---------- Seção Teste de Velocidade ---------- */
.section-velocidade {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.section-velocidade h3 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.section-velocidade p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.velocidade-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.velocidade-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.btn-velocidade {
    background: var(--white);
    color: var(--primary) !important;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    white-space: nowrap;
}

.btn-velocidade:hover {
    background: var(--secondary);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-velocidade i {
    margin-right: 6px;
}

/* ---------- Seção FAQ ---------- */
.section-faq {
    padding: 70px 0;
    background: var(--gray-bg) url('../img/bg.png') center center / cover no-repeat;
}

.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
    padding: 16px 20px;
    background: var(--white);
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.15rem rgba(0, 168, 157, 0.25);
}

.accordion-body {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 16px 20px;
}

.faq-mascote {
    max-width: 250px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* ---------- Faixa WhatsApp ---------- */
.section-whatsapp {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary), #00C4B8);
}

.section-whatsapp h3 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.section-whatsapp p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn-whatsapp-cta {
    background: var(--white);
    color: #25D366 !important;
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 1.15rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp-cta:hover {
    background: var(--secondary);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-cta i {
    font-size: 1.3rem;
}

/* ---------- Mapa ---------- */
.section-mapa {
    background: var(--secondary);
}

.mapa-container {
    width: 100%;
    height: 350px;
    z-index: 1;
}

/* ---------- Footer ---------- */
.footer-main {
    color: var(--white);
}

.footer-top {
    background: #039d9f;
    padding: 60px 0 40px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 18px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-heading {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-list li i {
    color: var(--white);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-list a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--white);
    color: #039d9f !important;
    transform: translateY(-3px);
}

.footer-anatel-box {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-anatel-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-anatel {
    max-width: 100px;
    opacity: 0.85;
}

.footer-bottom {
    background: #028486;
    padding: 15px 0;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.footer-copy i {
    font-size: 0.7rem;
}

/* ---------- Page Header (Páginas Internas) ---------- */
.page-header {
    background: linear-gradient(135deg, #08D6DF, #058E85);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/linhas.png') center center / 100% auto no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

.page-header h1 {
    color: var(--white);
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.page-header .breadcrumb-item a:hover {
    color: var(--white);
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }
}

/* ---------- Página Fale Conosco ---------- */
.contato-section {
    padding: 60px 0;
}

.contato-wrapper {
    display: flex;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    background: var(--white);
}

/* Sidebar com informações */
.contato-sidebar {
    width: 380px;
    flex-shrink: 0;
    background: linear-gradient(160deg, #08D6DF, #058E85);
    color: var(--white);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.contato-sidebar::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

.contato-sidebar::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -40px;
    left: -40px;
}

.contato-sidebar h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contato-sidebar > p {
    font-size: 0.88rem;
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Lista de contatos na sidebar */
.contato-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contato-sidebar-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contato-sidebar-list li > i {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-sidebar-list li div {
    display: flex;
    flex-direction: column;
}

.contato-sidebar-list li span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    margin-bottom: 2px;
}

.contato-sidebar-list li a {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.contato-sidebar-list li a:hover {
    text-decoration: underline;
}

.contato-sidebar-list li strong {
    font-size: 0.92rem;
    font-weight: 600;
}

.contato-sidebar-list li small {
    font-size: 0.8rem;
    opacity: 0.75;
    margin-top: 2px;
}

/* Social icons na sidebar */
.contato-sidebar-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contato-sidebar-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.contato-sidebar-social a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Área do formulário */
.contato-form-area {
    flex: 1;
    padding: 40px 40px;
}

.contato-form-area h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 28px;
}

/* Linha de campos lado a lado */
.contato-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 0;
}

/* Campos do formulário */
.contato-field {
    margin-bottom: 18px;
}

.contato-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
}

.contato-field .form-control {
    border: 1px solid #dce3ea;
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
}

.contato-field .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 168, 157, 0.12);
    outline: none;
}

.contato-field textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Bottom: captcha + botão */
.contato-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
}

.contato-captcha {
    flex-shrink: 0;
}

.contato-btn-enviar {
    background: linear-gradient(135deg, #08D6DF, #058E85);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.contato-btn-enviar:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 142, 133, 0.35);
}

.contato-btn-enviar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Alerta de erro */
.contato-alert-erro {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #991b1b;
    font-size: 0.88rem;
}

.contato-alert-erro > i {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contato-alert-erro strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contato-alert-erro span {
    font-size: 0.82rem;
    opacity: 0.8;
}

/* Seção do mapa */
.contato-mapa-section {
    padding: 0 0 60px;
}

.contato-mapa {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contato-mapa-frame {
    width: 100%;
    height: 400px;
}

/* Responsivo Fale Conosco */
@media (max-width: 991.98px) {
    .contato-wrapper {
        flex-direction: column;
    }

    .contato-sidebar {
        width: 100%;
        padding: 32px 28px;
    }
}

@media (max-width: 767.98px) {
    .contato-section {
        padding: 40px 0;
    }

    .contato-form-area {
        padding: 28px 22px;
    }

    .contato-form-row {
        grid-template-columns: 1fr;
    }

    .contato-form-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .contato-btn-enviar {
        width: 100%;
        justify-content: center;
    }

    .contato-mapa-frame {
        height: 280px;
    }

    .contato-mapa-section {
        padding: 0 0 40px;
    }
}

/* ---------- Página Sobre ---------- */
.sobre-page-section {
    padding: 60px 0;
}

.sobre-page-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sobre-page-visual {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-page-logo-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(8, 214, 223, 0.08), rgba(5, 142, 133, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px dashed rgba(0, 168, 157, 0.25);
}

.sobre-page-logo-circle::before {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(0, 168, 157, 0.1);
}

.sobre-page-logo-circle::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 168, 157, 0.06);
}

.sobre-page-logo-img {
    max-width: 190px;
    filter: drop-shadow(0 5px 15px rgba(0, 168, 157, 0.15));
}

.sobre-page-mascote {
    max-width: 280px;
    width: 100%;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
}

.sobre-page-content {
    flex: 1;
}

.sobre-page-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 18px;
}

.sobre-page-content p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Missão, Visão e Valores */
.sobre-mvv-section {
    padding: 60px 0;
    background: var(--gray-bg);
}

.sobre-mvv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.sobre-mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sobre-mvv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #08D6DF, #058E85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sobre-mvv-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.sobre-mvv-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.sobre-mvv-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Números / Destaques */
.sobre-numeros-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #08D6DF, #058E85);
}

.sobre-numeros-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.sobre-numero-item {
    text-align: center;
    color: var(--white);
    min-width: 160px;
}

.sobre-numero-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.sobre-numero-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.sobre-numero-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.sobre-numero-item p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 0;
}

/* Por que nos escolher */
.sobre-porque-section {
    padding: 60px 0;
}

.sobre-porque-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 35px;
}

.sobre-porque-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.sobre-porque-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary);
}

.sobre-porque-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 14px;
    display: block;
}

.sobre-porque-item h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.sobre-porque-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Sobre */
.sobre-cta-section {
    padding: 60px 0;
    background: var(--secondary);
}

.sobre-cta-section h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.sobre-cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 28px;
}

.sobre-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-sobre-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-sobre-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: var(--white);
}

.btn-sobre-cta-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-sobre-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsivo Sobre */
@media (max-width: 991.98px) {
    .sobre-page-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .sobre-porque-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-numeros-grid {
        gap: 30px 20px;
    }
}

@media (max-width: 575.98px) {
    .sobre-page-logo-circle {
        width: 220px;
        height: 220px;
    }

    .sobre-page-logo-circle::before {
        width: 260px;
        height: 260px;
    }

    .sobre-page-logo-circle::after {
        width: 300px;
        height: 300px;
    }

    .sobre-page-logo-img {
        max-width: 140px;
    }

    .sobre-page-mascote {
        max-width: 180px;
    }

    .sobre-porque-grid {
        grid-template-columns: 1fr;
    }

    .sobre-cta-section h3 {
        font-size: 1.4rem;
    }
}

/* ---------- Página Planos ---------- */
.planos-page-section {
    padding: 60px 0;
}

.planos-nav-tabs {
    justify-content: center;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 40px;
    gap: 4px;
}

.planos-nav-tabs .nav-link {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.planos-nav-tabs .nav-link:hover {
    color: var(--primary);
    border-bottom-color: rgba(0, 168, 157, 0.3);
}

.planos-nav-tabs .nav-link.active {
    color: var(--primary);
    background: none;
    border-bottom-color: var(--primary);
}

.planos-tab-content {
    padding-top: 10px;
}

.planos-swiper-wrap {
    padding: 0 50px;
}

.planos-swiper-wrap .swiper {
    padding-bottom: 45px;
}

.planos-swiper-wrap .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.planos-swiper-wrap .swiper-pagination-bullet-active {
    background: var(--primary);
}

.planos-swiper-wrap .swiper-button-prev,
.planos-swiper-wrap .swiper-button-next {
    color: var(--primary);
    top: 45%;
}

.planos-swiper-wrap .swiper-button-prev {
    left: 0;
}

.planos-swiper-wrap .swiper-button-next {
    right: 0;
}

.planos-swiper-wrap .swiper-button-prev::after,
.planos-swiper-wrap .swiper-button-next::after {
    font-size: 22px;
    font-weight: 700;
}

.planos-page-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.planos-page-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.planos-page-card-header {
    background: linear-gradient(135deg, #08D6DF, #058E85);
    color: var(--white);
    text-align: center;
    padding: 28px 20px 22px;
    position: relative;
}

.planos-page-card-nome {
    font-size: 0.85rem;
    margin-bottom: 4px;
    opacity: 0.85;
}

.planos-page-card-speed {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
}

.planos-page-card-unit {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 8px;
}

.planos-page-card-body {
    padding: 28px 24px;
}

.planos-page-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.planos-page-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.planos-page-features li:last-child {
    border-bottom: none;
}

.planos-page-features li i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.planos-page-apps {
    text-align: center;
    margin-bottom: 20px;
    padding: 14px;
    background: var(--gray-bg);
    border-radius: var(--radius);
}

.planos-page-apps p {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.planos-page-apps-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.planos-page-apps-icons img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.planos-page-price {
    text-align: center;
    margin-bottom: 18px;
}

.planos-page-price-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.planos-page-price-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-top: 4px;
}

.planos-page-price-value .price-prefix {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 8px;
}

.planos-page-price-value .price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.planos-page-price-value .price-cents {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 6px;
}

.planos-page-price-value .price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 4px;
}

.planos-page-ativacao {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.planos-page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.planos-page-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: var(--white);
}

/* Vantagens */
.planos-vantagens-section {
    padding: 60px 0;
    background: var(--gray-bg);
}

.planos-vantagem-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.planos-vantagem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.planos-vantagem-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #08D6DF, #058E85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.planos-vantagem-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.planos-vantagem-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.planos-vantagem-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Planos */
.planos-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #08D6DF, #058E85);
    color: var(--white);
}

.planos-cta-section h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.planos-cta-section p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 28px;
}

.planos-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.planos-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

/* Responsivo Planos */
@media (max-width: 767.98px) {
    .planos-swiper-wrap {
        padding: 0 10px;
    }

    .planos-swiper-wrap .swiper-button-prev,
    .planos-swiper-wrap .swiper-button-next {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .planos-cta-section h3 {
        font-size: 1.4rem;
    }
}

/* ---------- Página Aplicativos ---------- */
.apps-page-section {
    padding: 60px 0;
}

.apps-page-intro {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.apps-page-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.apps-page-item {
    width: calc((100% - 100px) / 6);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 16px 18px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.apps-page-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.apps-page-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.apps-page-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apps-page-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

.apps-page-link {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.apps-page-item:hover .apps-page-link {
    gap: 8px;
}

.apps-page-category {
    margin-top: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.apps-page-category .apps-page-grid {
    margin-bottom: 0;
}

.apps-page-category .apps-page-item {
    box-shadow: none;
    padding: 18px 12px 14px;
    background: var(--gray-bg);
}

.apps-page-category .apps-page-item:hover {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.apps-page-category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.apps-page-category-header i {
    font-size: 1.4rem;
}

.apps-page-category-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0;
}

.apps-page-category-header.premium i {
    color: #FFD700;
}

.apps-page-category-header.advanced i {
    color: var(--primary);
}

.apps-page-category-header.standard i {
    color: #FF8C00;
}

.apps-page-note {
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 991.98px) {
    .apps-page-item {
        width: calc((100% - 60px) / 4);
    }
}

@media (max-width: 767.98px) {
    .apps-page-grid {
        gap: 14px;
    }

    .apps-page-item {
        width: calc((100% - 28px) / 3);
    }

    .apps-page-category {
        padding: 20px 16px;
    }
}

@media (max-width: 575.98px) {
    .apps-page-item {
        width: calc((100% - 14px) / 2);
    }

    .apps-page-icon {
        width: 65px;
        height: 65px;
    }
}

/* ---------- Página Detalhe Aplicativo ---------- */
.appdet-section {
    padding: 60px 0 30px;
}

.appdet-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 40px;
}

.appdet-icon-wrap {
    width: 150px;
    height: 150px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 168, 157, 0.15);
    margin: 0 auto 16px;
}

.appdet-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appdet-nome {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.appdet-texto {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 0.95rem;
}

.appdet-capa {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.appdet-aviso {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 20px;
}

/* Guia Passo a Passo */
.appdet-guia-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #08D6DF, #058E85);
}

.appdet-guia-section .section-title h2 {
    color: var(--white);
}

.appdet-guia-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.appdet-guia-section .title-line {
    background: var(--white);
}

.appdet-passos-wrap {
    position: relative;
    max-width: 90%;
    margin: 30px auto 0;
    padding: 0 45px;
}

.appdet-passo-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.appdet-passo-num {
    display: inline-block;
    background: linear-gradient(135deg, #08D6DF, #058E85);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.appdet-passo-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.appdet-passo-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.appdet-passo-texto {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
}

.appdet-passos-wrap .swiper-button-prev,
.appdet-passos-wrap .swiper-button-next {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.appdet-passos-wrap .swiper-button-prev:hover,
.appdet-passos-wrap .swiper-button-next:hover {
    background: var(--white);
    color: var(--primary);
}

.appdet-passos-wrap .swiper-button-prev::after,
.appdet-passos-wrap .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

.appdet-passos-wrap .swiper-button-prev {
    left: 0;
}

.appdet-passos-wrap .swiper-button-next {
    right: 0;
}

.appdet-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.appdet-video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.appdet-video-btn i {
    font-size: 1.3rem;
}

.appdet-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

/* Outros Aplicativos */
.appdet-outros-section {
    padding: 60px 0;
    background: var(--secondary);
}

.appdet-outros-section .section-title h2 {
    color: var(--white);
}

.appdet-outros-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.appdet-outros-section .title-line {
    background: var(--primary);
}

.appdet-outros-wrap {
    position: relative;
    max-width: 90%;
    margin: 30px auto 0;
    padding: 0 45px;
}

.appdet-outros-wrap .swiper {
    padding-bottom: 40px;
}

.appdet-outros-wrap .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.appdet-outros-wrap .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 20px;
    border-radius: 4px;
}

.appdet-outro-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    transition: var(--transition);
}

.appdet-outro-item:hover {
    transform: translateY(-5px);
}

.appdet-outro-img {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    transition: var(--transition);
}

.appdet-outro-item:hover .appdet-outro-img {
    box-shadow: 0 8px 25px rgba(0, 168, 157, 0.3);
}

.appdet-outro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appdet-outro-nome {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100px;
}

.appdet-outros-wrap .swiper-button-prev,
.appdet-outros-wrap .swiper-button-next {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.appdet-outros-wrap .swiper-button-prev:hover,
.appdet-outros-wrap .swiper-button-next:hover {
    background: var(--primary);
}

.appdet-outros-wrap .swiper-button-prev::after,
.appdet-outros-wrap .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

.appdet-outros-wrap .swiper-button-prev {
    left: 0;
}

.appdet-outros-wrap .swiper-button-next {
    right: 0;
}

@media (max-width: 767.98px) {
    .appdet-card {
        padding: 24px;
    }

    .appdet-icon-wrap {
        width: 110px;
        height: 110px;
        border-radius: 24px;
    }

    .appdet-passos-wrap,
    .appdet-outros-wrap {
        max-width: 100%;
        padding: 0 35px;
    }

    .appdet-capa {
        margin-top: 24px;
    }
}

@media (max-width: 575.98px) {
    .appdet-passos-wrap .swiper-button-prev,
    .appdet-passos-wrap .swiper-button-next,
    .appdet-outros-wrap .swiper-button-prev,
    .appdet-outros-wrap .swiper-button-next {
        display: none;
    }

    .appdet-passos-wrap,
    .appdet-outros-wrap {
        padding: 0;
    }
}

/* ---------- Página FAQ ---------- */
.faq-page-section {
    padding: 60px 0;
}

.faq-page-accordion .accordion-item {
    border: none;
    border-radius: var(--radius) !important;
    margin-bottom: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-page-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary);
    padding: 18px 22px;
    background: var(--white);
    border: none;
    box-shadow: none;
}

.faq-page-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #08D6DF, #058E85);
    color: var(--white);
    box-shadow: none;
}

.faq-page-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-page-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-page-accordion .accordion-body {
    padding: 20px 22px;
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.faq-page-sidebar {
    text-align: center;
    position: sticky;
    top: 120px;
}

.faq-page-mascote {
    max-width: 200px;
    margin-bottom: 25px;
}

.faq-page-help {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.faq-page-help h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.faq-page-help p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.btn-faq-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-faq-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    color: var(--white);
}

/* ---------- WhatsApp Flutuante ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.7rem;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* ---------- Animações de Entrada ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsivo ---------- */
@media (max-width: 991.98px) {
    .section-title h2 {
        font-size: 1.6rem;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-6px);
    }

    .navbar-collapse {
        background: var(--white);
        padding: 15px;
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        margin-top: 5px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .btn-cta-header {
        margin-top: 10px;
        text-align: center;
        display: block;
    }

    .sobre-logo {
        margin-top: 30px;
    }

    .section-velocidade {
        text-align: center;
    }

    .section-velocidade .btn-velocidade {
        margin-top: 15px;
    }
}

@media (max-width: 767.98px) {
    .section-planos,
    .section-diferenciais,
    .section-sobre,
    .section-faq {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .plan-speed {
        font-size: 1.8rem;
    }

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

    .section-whatsapp h3 {
        font-size: 1.3rem;
    }

    .btn-whatsapp-cta {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .mapa-container {
        height: 250px;
    }

    .footer-top {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact-list li {
        justify-content: center;
        text-align: left;
    }

    .footer-anatel-box {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .topbar {
        font-size: 0.78rem;
    }

    .logo-img {
        height: 40px;
    }

    .app-card {
        padding: 6px;
    }

    .app-placeholder i {
        font-size: 1.8rem;
    }

    .app-placeholder span {
        font-size: 0.75rem;
    }

    .diff-card {
        padding: 25px 15px;
    }
}
