/* ==========================================================================
   SITE CONNECT MARANHÃO - ESTILIZAÇÃO PERSONALIZADA
   Cores: Principal (#8E0101), Secundária (#ffcc20)
   Fonte: Montserrat
   ========================================================================== */

/* Importação do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #8E0101;
    --primary-hover: #b30202;
    --secondary-color: #ffcc20;
    --secondary-hover: #e5b312;
    --dark-color: #121212;
    --dark-grey: #1a1a1a;
    --light-grey: #f8f9fa;
    --text-muted: #6c757d;
    --font-main: 'Montserrat', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: var(--font-main);
    color: #2b2b2b;
    overflow-x: hidden;
    background-color: #ffffff;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg-corpo.png');
    background-size: 350px;
    background-repeat: repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: -1;
}

/* ==========================================================================
   TIPOGRAFIA E UTILITÁRIOS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

/* Botões Personalizados */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(142, 1, 1, 0.2);
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 1, 1, 0.3);
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 700;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--secondary-color);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 204, 32, 0.2);
}

.btn-secondary-custom:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 32, 0.3);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%) !important;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    border: 2px solid #ffffff;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    position: relative;
    font-size: 2.4rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 3rem;
}

.section-title.text-center::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 4px;
    margin: 0.8rem auto 0;
}

/* Rótulo pequeno acima dos títulos */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.topbar .social-icons a {
    margin-right: 12px;
    font-size: 1rem;
}

.topbar .btn-topbar-outline {
    border: 1px solid #ffffff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.topbar .btn-topbar-outline:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

.topbar .btn-topbar-solid {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.topbar .btn-topbar-solid:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar-custom {
    background-image: url('../img/bg-nav.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    padding: 0.8rem 0;
}

.navbar-custom.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    animation: slideDown 0.3s ease-out;
    background-color: #ffffff;
    background-image: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar-custom .navbar-brand img {
    max-height: 50px;
    transition: var(--transition-smooth);
}

.navbar-custom.sticky .navbar-brand img {
    max-height: 40px;
}

.navbar-custom .nav-link {
    color: #333333;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 10px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

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

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-item.active .nav-link::after {
    width: calc(100% - 20px);
}

.navbar-custom .btn-navbar {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    border: none;
}

.navbar-custom .btn-navbar:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
    transform: scale(1.03);
}

/* ==========================================================================
   HERO / BANNER SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hotspot para o botão "CONHEÇA OS PLANOS" na imagem */
.hero-hotspot {
    position: absolute;
    bottom: 11.5%;
    right: 19.5%;
    width: 24%;
    height: 9%;
    border-radius: 50px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.0);
    transition: var(--transition-smooth);
    display: block;
    z-index: 10;
}

.hero-hotspot:hover {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   PLANS SECTION
   ========================================================================== */
.plans-section {
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg-planos.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.plans-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 3rem;
}

.plans-tabs .nav-item {
    margin: 0 8px;
}

.plans-tabs .nav-link {
    border: none !important;
    background-color: #f1f1f1 !important;
    color: #555555 !important;
    font-weight: 700;
    border-radius: 30px !important;
    padding: 0.6rem 2rem !important;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.plans-tabs .nav-link.active {
    background-color: var(--secondary-color) !important;
    color: var(--dark-color) !important;
    box-shadow: 0 4px 10px rgba(255, 204, 32, 0.3);
}

.plans-tabs .nav-link:hover:not(.active) {
    background-color: #e2e2e2 !important;
}

.plan-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 22px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    margin-top: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
    border-color: rgba(142, 1, 1, 0.25);
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 18px 45px rgba(142, 1, 1, 0.18);
    transform: scale(1.03);
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 26px 55px rgba(142, 1, 1, 0.28);
}

/* Selo "Mais Popular" no plano em destaque */
.plan-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    background: var(--secondary-color);
    color: #1e1e1e;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 16px rgba(255, 204, 32, 0.55);
    border: 2px solid #ffffff;
}

.plan-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6d0101 100%);
    color: #ffffff;
    padding: 1.75rem 1.5rem;
    text-align: center;
    position: relative;
    border-radius: 21px 21px 0 0;
    overflow: hidden;
}

.plan-card-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 10px);
    pointer-events: none;
}

.plan-card-header h3 {
    font-size: 1.9rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.plan-card-body {
    padding: 2rem 2rem 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.75rem;
    min-height: 180px;
}

.plan-features-list li {
    padding: 0.55rem 0;
    font-size: 0.98rem;
    font-weight: 500;
    color: #3a3a3a;
    display: flex;
    align-items: center;
}

.plan-features-list li:not(:last-child) {
    border-bottom: 1px dashed #f0f0f0;
}

.plan-features-list li i {
    color: #2ecc71;
    margin-right: 12px;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.plan-price-block {
    text-align: center;
    margin-top: auto;
    margin-bottom: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f3f3f3;
}

.plan-price-block .price-prefix {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.15rem;
}

.plan-price-block .price-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.plan-price-block .price-number span {
    font-size: 1.3rem;
    font-weight: 800;
}

.plan-price-block .price-suffix {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.plan-card-footer {
    padding: 0 2rem 2rem 2rem;
    text-align: center;
}

/* Nota / CTA de planos corporativos */
.plans-footer-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem 1rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.1rem 1.75rem;
    background: #fff8f8;
    border: 1px solid rgba(142, 1, 1, 0.12);
    border-radius: 50px;
    font-size: 1.05rem;
    color: #444444;
    text-align: center;
}

.plans-footer-note > i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.plans-footer-note strong {
    color: var(--primary-color);
}

.plans-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary-color);
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.plans-footer-cta i {
    transition: transform 0.3s ease;
}

.plans-footer-cta:hover {
    background: #6d0101;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(142, 1, 1, 0.3);
}

.plans-footer-cta:hover i {
    transform: translateX(4px);
}

/* Carousel controls para planos */
.carousel-btn {
    width: 45px;
    height: 45px;
    background-color: #f1f1f1;
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    margin: 0 10px;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* ==========================================================================
   FIDELITY CARD SECTION
   ========================================================================== */
.fidelity-section {
    background-image: url('../img/bg-cartao-fidelidade.jpg');
    background-size: cover;
    background-position: center;
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

/* Padrão diagonal + brilho suave sobre o fundo amarelo */
.fidelity-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.28) 0%, transparent 55%),
        repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.03) 0 2px, transparent 2px 14px);
    pointer-events: none;
}

.fidelity-section .container {
    position: relative;
    z-index: 1;
}

/* ---------- Imagem / cartão flutuante ---------- */
.fidelity-img-wrapper {
    display: inline-block;
    position: relative;
}

.fidelity-img-wrapper::after {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -18px;
    height: 30px;
    background: rgba(0, 0, 0, 0.18);
    filter: blur(18px);
    border-radius: 50%;
    z-index: 0;
}

.fidelity-img {
    position: relative;
    z-index: 1;
    width: 118%;
    max-width: 118%;
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.25));
    animation: fidelityFloat 4s ease-in-out infinite;
    transition: var(--transition-smooth);
}

.fidelity-img:hover {
    transform: translateY(-6px) scale(1.02);
}

@keyframes fidelityFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* ---------- Conteúdo ---------- */
.fidelity-content {
    padding-left: 1rem;
}

.fidelity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #121212;
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.fidelity-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #121212;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.fidelity-title span {
    color: var(--primary-color);
}

.fidelity-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #2b2b2b;
    font-weight: 500;
    margin-bottom: 1.75rem;
}

.fidelity-highlight {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 3px 12px;
    border-radius: 6px;
    font-weight: 800;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(142, 1, 1, 0.3);
}

.fidelity-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 0.7rem;
    text-align: left;
}

.fidelity-benefits li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.02rem;
    font-weight: 600;
    color: #1e1e1e;
}

.fidelity-benefits li i {
    color: var(--primary-color);
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* ==========================================================================
   APPS SECTION
   ========================================================================== */
.apps-section {
    background-color: #ffffff;
}

.app-category-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.4;
    text-align: center;
}

.app-category-badge i,
.app-category-badge .category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: auto;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.app-category-badge .category-icon {
    width: 40px;
    height: 44px;
}

.app-category-container {
    background-color: #e9ecef;
    border: 1.5px solid #dedede;
    border-radius: 18px;
    padding: 1.2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
}

.app-category-container .chevron-btn {
    flex: 0 0 auto;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 900;
    cursor: pointer;
    padding: 0 5px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-category-container .chevron-btn:hover {
    transform: scale(1.2);
    color: var(--primary-hover);
}

.app-category-container .chevron-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Swiper dos aplicativos */
.app-category-container .swiper {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 8px;
    overflow: hidden;
}

.app-category-container .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.app-launcher-item {
    display: block;
    text-align: center;
    width: 100%;
    transition: var(--transition-smooth);
}

.app-launcher-item:hover {
    transform: translateY(-3px);
}

.app-launcher-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.app-launcher-item:hover .app-launcher-icon {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.app-launcher-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #444444;
    display: block;
    margin-top: 8px;
}

/* Launcher background designs */
.app-launcher-hbo {
    background: linear-gradient(135deg, #1d0745 0%, #080215 100%);
}

.app-launcher-deezer {
    background: #000000;
}

.app-launcher-kaspersky {
    background: #00a88f;
}

.app-launcher-disney {
    background: linear-gradient(to bottom, #021a4f 0%, #050714 100%);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-section {
    background-color: #fafafa;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.feature-circle-box {
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-circle-box:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(142, 1, 1, 0.2);
    transition: var(--transition-smooth);
}

.feature-circle-box:hover .feature-icon-wrapper {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: rotate(15deg);
    box-shadow: 0 8px 20px rgba(255, 204, 32, 0.3);
}

.feature-circle-box p {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3b3b3b;
    line-height: 1.5;
    padding: 0 10px;
}

/* ==========================================================================
   BUSINESS SECTION
   ========================================================================== */
.business-section {
    background-color: var(--primary-color);
    padding: 5rem 0;
    overflow: hidden;
}

.business-row {
    align-items: center;
}

.business-img-col {
    text-align: center;
}

.business-img-col img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.business-img-col img:hover {
    transform: scale(1.02);
}

.business-content-col {
    color: #ffffff;
    padding-left: 3rem;
}

.business-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.business-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.business-title span {
    color: var(--secondary-color);
}

.business-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.business-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
}

.business-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
}

.business-features li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-business-custom {
    background-color: #ffffff;
    color: var(--primary-color);
    font-weight: 700;
    padding: 0.7rem 2.5rem;
    border-radius: 50px;
    border: 2px solid #ffffff;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-business-custom:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   BLOG / NEWS SECTION
   ========================================================================== */
.blog-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    margin-bottom: 2rem;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-card-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* Aspect Ratio 16:9 */
}

.blog-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.8rem;
    background-color: #ffffff;
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    color: #212529;
    margin: 0 0 0.6rem 0;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-title {
    color: var(--primary-color);
}

.blog-card-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1rem;
}

.btn-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-blog-link i {
    transition: transform 0.3s ease;
}

.btn-blog-link:hover {
    color: var(--primary-hover, #6d0101);
}

.btn-blog-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   AUTOATENDIMENTO SECTION
   ========================================================================== */
.auto-section {
    background-color: #000000;
    color: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    margin-top: -3rem;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.auto-title-box {
    display: flex;
    align-items: center;
}

.auto-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
}

.auto-title-box h3 {
    font-weight: 800;
    margin-bottom: 0.3rem;
    font-size: 1.6rem;
}

.auto-title-box p {
    color: #b0b0b0;
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.auto-contact-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.auto-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.auto-contact-item:last-child {
    margin-bottom: 0;
}

.auto-contact-item i {
    font-size: 1.6rem;
    margin-right: 12px;
}

.auto-contact-item.whatsapp i {
    color: #25d366;
}

.auto-contact-item.phone i {
    color: var(--primary-color);
}

.auto-contact-item:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    background-color: #fafafa;
    padding-top: 7rem; /* Compensa a barra de autoatendimento sobreposta */
    padding-bottom: 5rem;
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.faq-intro {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 480px;
}

.faq-accordion .accordion-button {
    font-weight: 700;
    color: #2b2b2b;
    padding: 1.2rem 1.5rem;
    background-color: #ffffff;
    font-size: 1rem;
    border: none;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.faq-accordion .accordion-button:hover {
    color: var(--primary-color);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #fff8f8;
    color: var(--primary-color);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: var(--transition-smooth);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238E0101'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.faq-accordion .accordion-body {
    background-color: #ffffff;
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    border-top: 1px solid #f1f1f1;
    font-weight: 500;
}

.faq-img-container {
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.faq-img {
    max-width: 90%;
    height: auto;
}

.faq-illustrative-img {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
    animation: fidelityFloat 5s ease-in-out infinite;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem 0;
    font-size: 0.9rem;
    border-top: 2px solid var(--primary-color);
}

.footer a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer-logo {
    max-height: 105px;
    margin-bottom: 1.5rem;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
    color: #1e1e1e;
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-address {
    color: #b0b0b0;
    line-height: 1.6;
    font-weight: 500;
}

.footer-anatel {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.footer-anatel-text {
    font-size: 0.75rem;
    color: #888888;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-anatel-logo {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-anatel-logo:hover {
    opacity: 1;
}

.footer-copyright {
    border-top: 1px solid #222222;
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    color: #666666;
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-company {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
}

.footer-cnpj {
    display: inline-block;
    color: #ffffff;
    font-weight: 500;
    margin-left: 0.35rem;
}

.footer-legal a {
    color: #b0b0b0;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1px;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

@media (max-width: 575.98px) {
    .footer-cnpj {
        display: block;
        margin-left: 0;
        margin-top: 0.2rem;
    }
}

/* ==========================================================================
   BLOG PAGE (Listagem de Notícias)
   ========================================================================== */
.blog-page {
    background-color: #f7f7f9;
}

.blog-header-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

/* Card de post */
.blog-post-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(142, 1, 1, 0.2);
}

.blog-post-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f0f0f0;
}

.blog-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-post-thumb img {
    transform: scale(1.06);
}

.blog-post-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(142, 1, 1, 0.3);
}

.blog-post-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.4rem 1.5rem 1.5rem;
}

.blog-post-date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #9a9a9a;
    margin-bottom: 0.6rem;
}

.blog-post-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 0.65rem 0;
}

.blog-post-title a {
    color: #1e1e1e;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-post-title a:hover {
    color: var(--primary-color);
}

.blog-post-excerpt {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1.1rem;
}

.blog-post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-post-link i {
    transition: transform 0.3s ease;
}

.blog-post-link:hover {
    color: #6d0101;
}

.blog-post-link:hover i {
    transform: translateX(4px);
}

/* Paginação */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3.5rem;
}

.blog-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.blog-page-btn:hover:not(.disabled) {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(142, 1, 1, 0.25);
}

.blog-page-btn.disabled {
    opacity: 0.45;
    pointer-events: none;
}

.blog-page-info {
    font-size: 0.9rem;
    color: #666666;
}

.blog-page-info strong {
    color: var(--primary-color);
}

/* Estado vazio */
.blog-empty {
    max-width: 480px;
    margin: 0 auto;
    color: #555555;
}

.blog-empty i {
    font-size: 3.5rem;
    color: var(--primary-color);
    opacity: 0.35;
    display: block;
    margin-bottom: 1rem;
}

.blog-empty h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e1e1e;
    margin-bottom: 0.75rem;
}

.blog-empty p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-empty-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.blog-empty-btn:hover {
    background: #6d0101;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(142, 1, 1, 0.3);
}

/* Ícones de redes sociais no card de contato (Fale Conosco) */
.contact-social-icons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.35rem;
}

.contact-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f1f1;
    color: var(--primary-color);
    font-size: 1.15rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-social-icons a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ==========================================================================
   APPS CATALOG PAGE (/aplicativos)
   ========================================================================== */
.apps-catalog {
    background-color: #f7f7f9;
}

.apps-header-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.apps-intro {
    font-size: 1.25rem;
    font-weight: 300;
    color: #555555;
    margin-bottom: 2.5rem;
}

/* Cartão de seção (Premium / Standard / etc) */
.apps-section-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    padding: 2rem 2rem 1rem;
    margin-bottom: 2rem;
}

.apps-section-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f1f1f1;
}

.apps-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.apps-section-icon svg {
    width: 1.7rem;
    height: 1.7rem;
}

.apps-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e1e1e;
    margin: 0;
}

.apps-section-count {
    position: absolute;
    right: 0;
    top: 0;
    background: #fff8f8;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    border: 1px solid rgba(142, 1, 1, 0.15);
}

/* Grade de apps */
.apps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem 1.25rem;
}

.app-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc((100% - 5 * 1.25rem) / 6);
    min-width: 92px;
}

.app-tile-icon {
    display: block;
    width: 92px;
    height: 92px;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: var(--transition-smooth);
}

.app-tile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-tile:hover .app-tile-icon {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.app-tile-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333333;
    margin: 0.7rem 0 0.4rem;
    line-height: 1.3;
}

.app-tile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.app-tile-link i {
    transition: transform 0.3s ease;
}

.app-tile:hover .app-tile-link {
    opacity: 1;
}

.app-tile:hover .app-tile-link i {
    transform: translateX(3px);
}

.apps-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 640px;
    margin: 2rem auto 0;
    padding: 0.9rem 1.5rem;
    background: #fff8e8;
    border: 1px solid #ffe3a3;
    border-radius: 14px;
    color: #8a6d1a;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.apps-disclaimer i {
    color: #e0a800;
    font-size: 1.15rem;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .app-tile {
        width: calc((100% - 3 * 1.25rem) / 4);
    }
}

@media (max-width: 575.98px) {
    .apps-section-card {
        padding: 1.5rem 1rem 0.5rem;
    }
    .app-tile {
        width: calc((100% - 2 * 1.25rem) / 3);
    }
    .apps-section-count {
        position: static;
        margin-top: 0.5rem;
    }
    .apps-section-head {
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   RESPONSIVIDADE E AJUSTES DE TELA
   ========================================================================== */
@media (max-width: 991.98px) {
    .navbar-custom {
        background-color: #ffffff;
        background-image: none;
    }
    
    .navbar-custom .nav-link::after {
        display: none;
    }
    
    .navbar-custom .nav-link {
        padding: 0.5rem 0 !important;
    }
    
    .navbar-custom .btn-navbar {
        margin-top: 1rem;
        display: inline-block;
    }
    
    .fidelity-img {
        width: 100%;
        max-width: 100%;
    }

    .fidelity-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
    }
    
    .business-content-col {
        padding: 3rem 2rem;
        text-align: center;
    }

    .business-eyebrow,
    .business-features {
        justify-content: center;
    }

    .fidelity-benefits {
        text-align: left;
    }

    .footer-anatel {
        text-align: center;
        align-items: center;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .topbar {
        text-align: center;
        padding: 0.5rem 0;
    }

    /* Empilha a topbar no celular: contato em cima, botões embaixo */
    .topbar .container {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 0.5rem;
    }

    .topbar .social-icons {
        order: 2;
        margin-bottom: 0;
    }

    .topbar .phone-info {
        order: 1;
        flex-basis: 100%;
        justify-content: center;
    }

    .topbar-actions {
        order: 3;
        flex-wrap: wrap;
        justify-content: center;
    }

    .topbar-actions .btn-topbar-outline,
    .topbar-actions .btn-topbar-solid {
        font-size: 0.72rem;
        padding: 0.35rem 0.7rem;
        white-space: nowrap;
    }

    .fidelity-title {
        font-size: 1.8rem;
    }
    
    .auto-section {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .auto-title-box {
        flex-direction: column;
        margin-bottom: 1.5rem;
    }
    
    .auto-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .auto-contact-box {
        align-items: center;
    }
    
    .faq-img-container {
        display: none; /* Oculta a imagem da atendente em telas muito pequenas para focar no FAQ */
    }
}
