/* ========================================
   HS Telecom - Estilos Personalizados
   Cores: Primária #012340 | Secundária #8C0303
   ======================================== */

:root {
    --primary-color: #012340;
    --secondary-color: #8C0303;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 0;
}

body.navbar-fixed {
    padding-top: 85px; /* Altura aproximada da navbar quando fixa */
}

/* ========================================
   BARRA DECORATIVA DO TOPO
   ======================================== */

.top-bar-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: url('../img/bar-top.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 9999;
}

/* ========================================
   TOP BAR
   ======================================== */

.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-contact {
    color: var(--white);
}

.top-contact i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.top-link {
    color: var(--white);
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.top-link:hover {
    color: var(--secondary-color);
}

.top-social-icons a {
    color: var(--white);
    margin-left: 12px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.top-social-icons a:hover {
    color: var(--secondary-color);
}

/* ========================================
   NAVBAR
   ======================================== */

.bg-primary-custom {
    background: linear-gradient(to bottom, #012340 0%, #025373 100%) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

/* Navbar fixa ao rolar */
.fixed-top-navbar {
    position: static; /* Inicialmente estática, junto com a top-bar */
    transition: all 0.3s ease;
}

/* Quando a página rola, a navbar fica fixa */
.fixed-top-navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 10px 12px !important;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

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

.btn-cliente {
    border: 2px solid var(--white);
    color: var(--white) !important;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-cliente:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(140, 3, 3, 0.3);
}

/* ========================================
   CARROSSEL / HERO
   ======================================== */

.carousel-section {
    margin-top: 0; /* Sem margem, pois a navbar é estática inicialmente */
}
 
 
/* Indicadores do Carrossel */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--white);
    opacity: 0.5;
    border: none;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--secondary-color);
}

/* Controles do Carrossel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(140, 3, 3, 0.7);
    border-radius: 50%;
    padding: 10px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--secondary-color);
}

/* ========================================
   SEÇÃO DE PLANOS
   ======================================== */

.planos-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    background-image: url('../img/fundo-sessao.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}

/* Cards dos Planos */
.plan-card { margin: 10px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.plan-card:hover { 
}

/* Plano em Destaque */
.plan-featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.plan-featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 3px 10px rgba(140, 3, 3, 0.3);
}

/* Header do Card */
.plan-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #025373 100%);
    padding: 30px 20px;
    text-align: center;
    color: var(--white);
}

.plan-speed {
    margin-bottom: 15px;
}

.speed-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.speed-unit {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.plan-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

/* Body do Card */
.plan-body {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

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

.plan-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Apps Inclusos */
.plan-apps {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.apps-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.apps-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.apps-icons i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.apps-icons i:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

/* Preço */
.plan-price {
    text-align: center;
    margin-bottom: 25px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.price-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 5px;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.period {
    font-size: 1rem;
    color: #666;
    align-self: flex-end;
    margin-bottom: 8px;
}

/* Botão do Plano */
.btn-plan {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-plan:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(140, 3, 3, 0.3);
    color: var(--white);
}

.plan-featured .btn-plan {
    background-color: var(--secondary-color);
}

.plan-featured .btn-plan:hover {
    background-color: #a30404;
}

/* ========================================
   SEÇÃO DE APLICATIVOS PARCEIROS
   ======================================== */

.apps-section {
    padding: 100px 0 0;
    background: linear-gradient(to right, #025373 0%, #012340 100%);
    position: relative;
    overflow: hidden;
}

/* Fundo com imagem sobreposto */
.apps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/fundo-app.png');
    background-size: 100%;
    background-position: center ;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

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

.apps-image-wrapper {
    text-align: center; 
}

.apps-image-wrapper img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.apps-content {
    color: var(--white);
}

.apps-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.3;
}

.apps-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.app-icon-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.app-icon-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.app-icon-item img {
    width: 100%;
    height: auto;
    max-width: 120px;
    transition: transform 0.3s ease;
}

.app-icon-item:hover img {
    transform: scale(1.1);
}

.apps-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

/* Animação de flutuação */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ========================================
   SEÇÃO DE BENEFÍCIOS
   ======================================== */

.benefits-section {
    padding: 50px 0;
    background-color: var(--white);
    background-image: url('../img/fundo-sessao.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* Header com Logo e Título lado a lado */
.benefits-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.benefits-logo {
    flex-shrink: 0;
    max-width: 200px;
}

.benefits-logo img {
    width: 100%;
    height: auto;
}

.benefits-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

/* Grid de Cards 2x3 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Cards com ícone acima do texto */
.benefit-card {
    text-align: center;
    background: var(--light-gray);
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column; 
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(1, 35, 64, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.benefit-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.benefits-image-wrapper {
    position: relative;
    text-align: center;
}

.benefits-image-wrapper img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* ========================================
   SEÇÃO CTA - CHEGA DE TRAVAR
   ======================================== */

.cta-section {
    padding: 30px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #025373 100%);
    
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-subtitle {
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 200;
}

.btn-cta {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-cta:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
    color: var(--white);
}

/* ========================================
   SEÇÃO CENTRAL DO ASSINANTE
   ======================================== */

.central-assinante-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    background-image: url('../img/fundo-sessao.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.central-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #03738C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.central-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.btn-central {
    background-color: #03738C;
    color: var(--white);
    border: none;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-central:hover {
    background-color: #025a6e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 115, 140, 0.3);
    color: var(--white);
}

/* Grid de Serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.servico-item {
    background: var(--white);
    border: 3px solid #03738C;
    border-radius: 25px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #03738C;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: none;
}

.servico-item:hover {
    background: #03738C;
    color: var(--white);
    border-color: #03738C;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(3, 115, 140, 0.3);
}

.servico-item i {
    font-size: 2.2rem;
    flex-shrink: 0;
    color: #03738C;
    transition: color 0.3s ease;
}

.servico-item:hover i {
    color: var(--white);
}

.servico-item span {
    flex: 1;
    line-height: 1.3;
}

/* ========================================
   SEÇÃO DE NOVIDADES / BLOG
   ======================================== */

.blog-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    background-image: url('../img/fundo-sessao.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-date i {
    color: var(--primary-color);
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

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

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.btn-blog-more {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-blog-more:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 3, 3, 0.3);
    color: var(--white);
}

/* ========================================
   RODAPÉ
   ======================================== */

.footer {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Barra Superior do Footer */
.footer-top {
    background-color: #555555;
    padding: 20px 0;
}

.footer-cta-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-cta-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.5;
}

.footer-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
}

.footer-phone {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-phone:hover {
    color: #20c997;
    transform: translateY(-2px);
}

.footer-phone i {
    font-size: 1rem;
}

/* Conteúdo Principal do Footer */
.footer-main {
    padding: 60px 0 40px;
}

.footer-brand {
    margin-bottom: 25px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footer-company-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

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

.footer-anatel {
    margin-top: 25px;
}

.footer-anatel p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.anatel-logo {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

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

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

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

.footer-links a i {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-social {
    margin-top: 25px;
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.social-icons a i {
    font-size: 1.1rem;
}

/* Barra Inferior do Footer */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   PAGE HEADER (Cabeçalho de Páginas Internas)
   ======================================== */

.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #025373 100%);
    background-image: url('../img/fundo-sessao.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 35, 64, 0.92) 0%, rgba(2, 83, 115, 0.88) 100%);
    z-index: 0;
}

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

/* Breadcrumb */
.page-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-breadcrumb .breadcrumb-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.5);
    padding: 0 12px;
    font-size: 1.1rem;
}

.page-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.page-breadcrumb .breadcrumb-item a i {
    margin-right: 5px;
}

.page-breadcrumb .breadcrumb-item.active {
    color: var(--white);
    font-weight: 500;
}

/* Título */
.page-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 800px;
    margin: 0;
}

/* Responsividade */
@media (max-width: 991px) {
    .page-header {
        padding: 100px 0 50px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 90px 0 45px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-description {
        font-size: 1rem;
    }

    .page-breadcrumb .breadcrumb-item {
        font-size: 0.85rem;
    }
}

/* ========================================
   PÁGINA DE CONTATO
   ======================================== */

.contact-content-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

/* Wrapper de Informações (Esquerda) */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Card Featured WhatsApp */
.contact-card-featured {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.featured-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 20px;
}

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

.contact-card-featured h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-card-featured p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.btn-whatsapp {
    background: var(--white);
    color: #25D366;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #128C7E;
}

/* Grid de Contatos */
.contact-grid {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-grid-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-grid-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-grid-item:first-child {
    padding-top: 0;
}

.contact-grid-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(1, 35, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-grid-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-grid-item p,
.contact-grid-item a {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-grid-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-grid-item a:hover {
    color: var(--primary-color);
}

/* Formulário de Contato (Direita) */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.contact-form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-form-header p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-form .form-label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(1, 35, 64, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-contact {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-contact:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 3, 3, 0.3);
    color: var(--white);
}

.btn-contact:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Mapa */
.contact-map-wrapper {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.map-header {
    padding: 25px 30px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.map-header i {
    font-size: 1.5rem;
}

.map-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.contact-map {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsividade */
@media (max-width: 991px) {
    .contact-content-section {
        padding: 60px 0;
    }

    .contact-info-wrapper {
        margin-bottom: 30px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .contact-form-header h2 {
        font-size: 1.6rem;
    }

    .contact-card-featured {
        padding: 35px 30px;
    }

    .contact-card-featured h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .contact-content-section {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-form-header h2 {
        font-size: 1.4rem;
    }

    .contact-card-featured {
        padding: 30px 25px;
    }

    .contact-card-featured h2 {
        font-size: 1.4rem;
    }

    .featured-icon {
        width: 70px;
        height: 70px;
    }

    .featured-icon i {
        font-size: 2rem;
    }

    .contact-grid {
        padding: 25px 20px;
    }

    .contact-grid-item i {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }

    .contact-map {
        height: 300px;
    }
}

/* ========================================
   PÁGINA DE DÚVIDAS (FAQ)
   ======================================== */

.faq-content-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

/* Bloco de Categoria */
.faq-category-block {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.faq-category-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #025373 100%);
    padding: 30px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

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

.category-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 5px 0;
}

.category-info span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* Accordion */
.faq-accordion {
    padding: 0;
}

.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    background: transparent;
}

.faq-accordion .accordion-item:last-child {
    border-bottom: none;
}

.faq-accordion .accordion-button {
    background: transparent;
    border: none;
    padding: 25px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(1, 35, 64, 0.03);
    color: var(--secondary-color);
}

.faq-accordion .accordion-button:hover {
    background: rgba(1, 35, 64, 0.05);
}

.faq-accordion .accordion-button::after {
    display: none;
}

.question-number {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .question-number {
    background: var(--secondary-color);
}

.question-text {
    flex: 1;
    text-align: left;
}

.faq-accordion .accordion-button i {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.faq-accordion .accordion-body {
    padding: 10px 35px 10px 85px;
    color: #666;
    line-height: 1.8;
    font-size: 0.98rem;
}

/* CTA Card */
.faq-cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #025373 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 30px rgba(1, 35, 64, 0.2);
}

.faq-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.faq-cta-content {
    flex: 1;
}

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

.faq-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.faq-cta-action {
    flex-shrink: 0;
}

.btn-faq-contact {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-faq-contact:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--secondary-color);
}

/* Estado Vazio */
.faq-empty-state {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.empty-icon {
    width: 100px;
    height: 100px;
    background: rgba(1, 35, 64, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.empty-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.faq-empty-state h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-empty-state p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-empty-contact {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-empty-contact:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 3, 3, 0.3);
    color: var(--white);
}

/* Responsividade */
@media (max-width: 991px) {
    .faq-content-section {
        padding: 60px 0;
    }

    .faq-wrapper {
        gap: 30px;
        margin-bottom: 40px;
    }

    .faq-category-header {
        padding: 25px 30px;
    }

    .category-icon {
        width: 55px;
        height: 55px;
    }

    .category-icon i {
        font-size: 1.6rem;
    }

    .category-info h2 {
        font-size: 1.6rem;
    }

    .faq-accordion .accordion-button {
        padding: 20px 25px;
        font-size: 1rem;
    }

    .faq-accordion .accordion-body {
        padding: 0 25px 25px 70px;
    }

    .faq-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
    }

    .faq-cta-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .faq-content-section {
        padding: 50px 0;
    }

    .faq-category-header {
        padding: 20px 20px;
        flex-direction: column;
        text-align: center;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

    .category-icon i {
        font-size: 1.4rem;
    }

    .category-info h2 {
        font-size: 1.4rem;
    }

    .faq-accordion .accordion-button {
        padding: 18px 20px;
        font-size: 0.95rem;
        flex-wrap: wrap;
    }

    .question-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .faq-accordion .accordion-body {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }

    .faq-cta-card {
        padding: 30px 25px;
    }

    .faq-cta-icon {
        width: 70px;
        height: 70px;
    }

    .faq-cta-icon i {
        font-size: 2rem;
    }

    .faq-cta-content h3 {
        font-size: 1.3rem;
    }

    .faq-cta-content p {
        font-size: 0.95rem;
    }

    .faq-empty-state {
        padding: 50px 30px;
    }

    .empty-icon {
        width: 80px;
        height: 80px;
    }

    .empty-icon i {
        font-size: 2.5rem;
    }

    .faq-empty-state h3 {
        font-size: 1.5rem;
    }

    .faq-empty-state p {
        font-size: 1rem;
    }
}

/* ========================================
   BLOG PAGE
   ======================================== */

.blog-content-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Blog Card Image */
.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

/* Blog Card Date Badge */
.blog-card-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
    min-width: 70px;
}

.blog-card-date .date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 2px;
}

.blog-card-date .date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blog Card Content */
.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

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

/* Blog Card Footer */
.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6c757d;
}

.blog-card-meta i {
    color: var(--turquoise-color);
    font-size: 0.9rem;
}

.blog-card-readmore {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.blog-card-readmore i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-readmore i {
    transform: translateX(5px);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 40px;
    padding: 30px 0;
}

.pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.pagination-item {
    margin: 0;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 35, 64, 0.2);
}

.pagination-link.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #025373 100%);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(1, 35, 64, 0.3);
}

.pagination-item.disabled .pagination-link {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-info {
    text-align: center;
    margin-top: 20px;
    color: #6c757d;
    font-size: 0.95rem;
}

.pagination-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Blog Empty State */
.blog-empty-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.blog-empty-state .empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-empty-state .empty-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.blog-empty-state h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.blog-empty-state p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.btn-empty-home {
    display: inline-flex;
    align-items: center;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #025373 100%);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 35, 64, 0.2);
}

.btn-empty-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 35, 64, 0.3);
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .blog-card-image {
        height: 220px;
    }

    .blog-card-title {
        font-size: 1.15rem;
    }

    .pagination-link {
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .blog-content-section {
        padding: 40px 0;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-date {
        top: 15px;
        right: 15px;
        padding: 10px 12px;
        min-width: 60px;
    }

    .blog-card-date .date-day {
        font-size: 1.25rem;
    }

    .blog-card-date .date-month {
        font-size: 0.7rem;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 1.1rem;
    }

    .blog-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .pagination-link {
        min-width: 38px;
        height: 38px;
        padding: 0 12px;
        font-size: 0.85rem;
    }

    .blog-empty-state {
        padding: 60px 30px;
    }

    .blog-empty-state .empty-icon {
        width: 100px;
        height: 100px;
    }

    .blog-empty-state .empty-icon i {
        font-size: 3rem;
    }

    .blog-empty-state h3 {
        font-size: 1.5rem;
    }

    .blog-empty-state p {
        font-size: 1rem;
    }
}

/* ========================================
   PÁGINA DE PLANOS
   ======================================== */

.plans-content-section {
    padding: 80px 0 60px;
    background: #f8f9fa;
}

/* Seletor de Planos */
.plans-selector {
    background: var(--white);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.plans-selector .nav-pills {
    gap: 8px;
    margin: 0;
}

.plans-selector .nav-link {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.plans-selector .nav-link:hover {
    background: rgba(1, 35, 64, 0.05);
    color: var(--primary-color);
}

.plans-selector .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #025373 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(1, 35, 64, 0.25);
}

.plans-selector .nav-link i {
    font-size: 1.1rem;
}

/* Seção de Vantagens */
.plans-benefits-section {
    padding: 80px 0;
    background: var(--white);
}

.benefits-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefits-section-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 0;
}

/* Benefit Item */
.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.benefit-icon-wrapper {
    margin-bottom: 20px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-item:hover .benefit-icon::before {
    transform: scale(1.3);
    opacity: 0.2;
}

.benefit-icon i {
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

/* Cores dos ícones */
.benefit-icon-primary {
    background: rgba(1, 35, 64, 0.1);
    color: var(--primary-color);
}

.benefit-icon-primary::before {
    background: var(--primary-color);
}

.benefit-icon-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.benefit-icon-success::before {
    background: #28a745;
}

.benefit-icon-info {
    background: rgba(3, 115, 140, 0.1);
    color: var(--turquoise-color);
}

.benefit-icon-info::before {
    background: var(--turquoise-color);
}

.benefit-icon-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.benefit-icon-warning::before {
    background: #ffc107;
}

.benefit-icon-danger {
    background: rgba(140, 3, 3, 0.1);
    color: var(--secondary-color);
}

.benefit-icon-danger::before {
    background: var(--secondary-color);
}

.benefit-icon-purple {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.benefit-icon-purple::before {
    background: #6f42c1;
}

.benefit-icon-teal {
    background: rgba(32, 201, 151, 0.1);
    color: #20c997;
}

.benefit-icon-teal::before {
    background: #20c997;
}

.benefit-icon-orange {
    background: rgba(253, 126, 20, 0.1);
    color: #fd7e14;
}

.benefit-icon-orange::before {
    background: #fd7e14;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.plans-cta-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.plans-cta-card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    gap: 35px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

.cta-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon-wrapper i {
    font-size: 3.5rem;
    color: var(--white);
}

.cta-content {
    flex: 1;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.15rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.cta-action {
    flex-shrink: 0;
}

.btn-cta-whatsapp {
    background: var(--white);
    color: #25D366;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-whatsapp:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #128C7E;
}

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

/* Activation Fee */
.activation-fee {
    font-size: 0.85rem;
    color: #999;
    margin-top: 8px;
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 991px) {
    .plans-content-section {
        padding: 60px 0 50px;
    }

    .plans-selector .nav-link {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .plans-benefits-section {
        padding: 60px 0;
    }

    .benefits-section-title {
        font-size: 2rem;
    }

    .benefits-section-subtitle {
        font-size: 1.05rem;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
    }

    .benefit-icon i {
        font-size: 1.8rem;
    }

    .benefit-title {
        font-size: 1.15rem;
    }

    .benefit-description {
        font-size: 0.9rem;
    }

    .plans-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 35px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .plans-content-section {
        padding: 50px 0 40px;
    }

    .plans-selector {
        width: 100%;
    }

    .plans-selector .nav-pills {
        flex-direction: column;
        gap: 6px;
    }

    .plans-selector .nav-link {
        padding: 12px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }

    .plans-benefits-section {
        padding: 50px 0;
    }

    .benefits-section-title {
        font-size: 1.75rem;
    }

    .benefits-section-subtitle {
        font-size: 1rem;
    }

    .benefit-item {
        padding: 25px 15px;
    }

    .benefit-icon {
        width: 65px;
        height: 65px;
    }

    .benefit-icon i {
        font-size: 1.6rem;
    }

    .benefit-title {
        font-size: 1.1rem;
    }

    .benefit-description {
        font-size: 0.9rem;
    }

    .plans-cta-card {
        padding: 35px 25px;
    }

    .cta-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .cta-icon-wrapper i {
        font-size: 3rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .btn-cta-whatsapp {
        padding: 15px 35px;
        font-size: 1rem;
        width: 100%;
    }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media (max-width: 991px) {
    .top-bar {
        text-align: center;
    }

    .top-bar .col-md-6 {
        text-align: center !important;
        margin-bottom: 5px;
    }

    .social-icons {
        margin-top: 10px;
    }

    .navbar-nav {
        text-align: center;
        margin-top: 20px;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }

    .btn-cliente {
        margin-top: 15px;
        width: 100%;
    }

    .carousel-item {
        height: 500px;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption .lead {
        font-size: 1.2rem;
    }

    /* Planos */
    .section-title {
        font-size: 2rem;
    }

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

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

    /* Apps Parceiros */
    .apps-section {
        padding: 60px 0;
    }

    .apps-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

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

    /* Benefícios */
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-header {
        flex-direction: column;
        gap: 20px;
    }

    .benefits-logo {
        max-width: 150px;
    }

    .benefits-title {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }

    /* Central do Assinante */
    .central-assinante-section {
        padding: 60px 0;
    }

    .central-title {
        font-size: 2.2rem;
    }

    .central-subtitle {
        font-size: 1.1rem;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Blog */
    .blog-section {
        padding: 60px 0;
    }

    .blog-image {
        height: 220px;
    }

    .blog-title {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-top {
        text-align: center;
    }

    .footer-phones {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-main {
        padding: 50px 0 30px;
    }

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

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

    .footer-contact p {
        justify-content: center;
    }

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

@media (max-width: 576px) {
    .carousel-item {
        height: 400px;
    }

    .carousel-caption h1 {
        font-size: 1.8rem;
    }

    .carousel-caption .lead {
        font-size: 1rem;
    }

    .btn-contrate {
        padding: 12px 30px;
        font-size: 1rem;
    }

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

    /* Planos */
    .planos-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .speed-number {
        font-size: 3rem;
    }

    .amount {
        font-size: 3rem;
    }

    .plan-badge {
        font-size: 0.75rem;
        padding: 6px 35px;
    }

    /* Apps Parceiros */
    .apps-section {
        padding: 50px 0;
    }

    .apps-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .apps-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .app-icon-item {
        padding: 20px;
    }

    .app-icon-item img {
        max-width: 80px;
    }

    .apps-description {
        font-size: 1rem;
    }

    /* Benefícios */
    .benefits-section {
        padding: 50px 0;
    }

    .benefits-header {
        flex-direction: column;
        gap: 15px;
    }

    .benefits-logo {
        max-width: 120px;
    }

    .benefits-title {
        font-size: 1.2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefit-card {
        padding: 20px 15px;
    }

    .benefit-icon i {
        font-size: 1.8rem;
    }

    .benefit-text {
        font-size: 0.85rem;
    }

    /* CTA */
    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .btn-cta {
        padding: 15px 35px;
        font-size: 1rem;
    }

    /* Central do Assinante */
    .central-assinante-section {
        padding: 50px 0;
    }

    .central-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .central-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 25px;
    }

    .btn-central {
        display: block;
        text-align: center;
        margin: 0 auto 30px;
        width: 100%;
        max-width: 300px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .servico-item {
        padding: 20px 15px;
        font-size: 0.95rem;
    }

    .servico-item i {
        font-size: 1.5rem;
    }

    /* Blog */
    .blog-section {
        padding: 50px 0;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .blog-excerpt {
        font-size: 0.9rem;
    }

    .btn-blog-more {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-cta-title {
        font-size: 1rem;
    }

    .footer-cta-text {
        font-size: 0.85rem;
    }

    .footer-phones {
        flex-direction: column;
        gap: 10px;
    }

    .footer-phone {
        font-size: 1rem;
    }

    .footer-main {
        padding: 40px 0 25px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-brand,
    .footer-anatel,
    .footer-contact,
    .footer-social {
        text-align: center;
    }

    .footer-title {
        font-size: 1.1rem;
        text-align: center;
    }

    .anatel-logo {
        max-width: 100px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .footer-legal .separator {
        display: none;
    }
}

/* ========================================
   PÁGINA DE APLICATIVO - DETALHES
   ======================================== */

/* App Detail Section */
.app-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.app-detail-icon-wrapper {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-detail-icon-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.app-detail-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 15px;
}

.app-detail-icon-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), #025373);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

.app-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 20px;
}

.app-detail-badge {
    background: linear-gradient(135deg, var(--secondary-color), #b30404);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}

.app-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.app-detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-app-primary {
    background: linear-gradient(135deg, var(--primary-color), #025373);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(1, 35, 64, 0.3);
}

.btn-app-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 35, 64, 0.4);
    color: white;
}

.btn-app-secondary {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-app-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.app-detail-note {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
    padding: 15px;
    background: rgba(1, 35, 64, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.app-detail-cover {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.app-detail-cover img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.app-detail-cover:hover img {
    transform: scale(1.05);
}

/* App Guide Section */
.app-guide-section {
    padding: 80px 0;
    background: white;
}

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

.app-guide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.app-guide-title .highlight {
    background: linear-gradient(135deg, var(--secondary-color), #b30404);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-guide-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* Guide Step Card */
.guide-step-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.guide-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.guide-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.guide-step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #025373);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(1, 35, 64, 0.3);
}

.guide-step-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 25px;
}

.guide-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-step-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.guide-step-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Swiper Navigation for Guide Steps */
.swiperPassos .swiper-button-next,
.swiperPassos .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiperPassos .swiper-button-next:after,
.swiperPassos .swiper-button-prev:after {
    font-size: 20px;
}

.swiperPassos .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiperPassos .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-color);
}

/* Video Button */
.app-guide-video {
    text-align: center;
    margin-top: 40px;
}

.btn-video {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.btn-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, #cc0000, #990000);
}

/* Other Apps Section */
.other-apps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.other-apps-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.other-apps-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.other-app-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.other-app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.other-app-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    padding: 10px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-app-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
}

.other-app-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    transition: color 0.3s ease;
}

.other-app-card:hover .other-app-title {
    color: var(--secondary-color);
}

/* Swiper Navigation for Other Apps */
.swiperApp .swiper-button-next,
.swiperApp .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-all-apps {
    background: linear-gradient(135deg, var(--primary-color), #025373);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(1, 35, 64, 0.3);
}

.btn-all-apps:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(1, 35, 64, 0.4);
    color: white;
}

/* App CTA Section */
.app-cta-section {
    padding: 80px 0;
    background: white;
}

.app-cta-card {
    background: linear-gradient(135deg, var(--primary-color), #025373);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(1, 35, 64, 0.2);
    position: relative;
    overflow: hidden;
}

.app-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.app-cta-icon {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

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

.app-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.app-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.app-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
    color: var(--primary-color);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Video Modal Styling */
#videoModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

#videoModal .modal-header {
    background: var(--primary-color);
    color: white;
    border-bottom: none;
    padding: 20px 25px;
}

#videoModal .modal-title {
    font-weight: 600;
}

#videoModal .btn-close {
    filter: brightness(0) invert(1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .app-detail-title {
        font-size: 1.75rem;
    }

    .app-guide-title,
    .other-apps-title {
        font-size: 2rem;
    }

    .app-cta-title {
        font-size: 1.75rem;
    }

    .app-detail-actions {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .app-detail-section,
    .app-guide-section,
    .other-apps-section,
    .app-cta-section {
        padding: 50px 0;
    }

    .app-detail-title {
        font-size: 1.5rem;
    }

    .app-guide-title,
    .other-apps-title {
        font-size: 1.75rem;
    }

    .app-cta-title {
        font-size: 1.5rem;
    }

    .app-cta-card {
        padding: 40px 25px;
    }

    .app-cta-actions {
        flex-direction: column;
    }

    .btn-app-primary,
    .btn-app-secondary,
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .guide-step-card {
        padding: 30px 20px;
    }

    .guide-step-image {
        height: 200px;
    }
}

/* ========================================
   PÁGINA DE APLICATIVOS - LISTAGEM
   ======================================== */

/* Apps Intro Section */
.apps-intro-section {
    padding: 60px 0;
    background: white;
}

.apps-intro-content {
    text-align: center;
}

.apps-intro-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.apps-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.apps-intro-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Apps Grid Section */
.apps-grid-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Category Block */
.apps-category-block {
    margin-bottom: 60px;
}

.apps-category-block:last-child {
    margin-bottom: 0;
}

.apps-category-header {
    margin-bottom: 30px;
}

.apps-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #025373);
    color: white;
    border-radius: 10px;
    font-size: 1.2rem;
}

.apps-category-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 3px;
}

/* App Card */
.app-card {
    height: 100%;
    transition: all 0.3s ease;
}

.app-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.app-card-inner {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.app-card:hover .app-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.app-card:hover .app-card-inner::before {
    transform: scaleX(1);
}

.app-card-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.app-card:hover .app-icon-img {
    transform: scale(1.1);
}

.app-icon-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

.app-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.app-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.app-card:hover .app-card-title {
    color: var(--secondary-color);
}

.app-card-arrow {
    font-size: 1.2rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.app-card:hover .app-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Apps Empty State */
.apps-empty-state {
    text-align: center;
    padding: 60px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.apps-empty-state .empty-icon {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 20px;
}

.apps-empty-state .empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.apps-empty-state .empty-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.btn-empty-home {
    background: linear-gradient(135deg, var(--primary-color), #025373);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(1, 35, 64, 0.3);
}

.btn-empty-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 35, 64, 0.4);
    color: white;
}

/* Apps Benefits Section */
.apps-benefits-section {
    padding: 80px 0;
    background: white;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #025373);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(1, 35, 64, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(1, 35, 64, 0.3);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Apps CTA Section */
.apps-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.apps-cta-card {
    background: linear-gradient(135deg, var(--primary-color), #025373);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(1, 35, 64, 0.2);
    position: relative;
    overflow: hidden;
}

.apps-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.apps-cta-icon {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.apps-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.apps-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.apps-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-apps-cta-primary {
    background: white;
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-apps-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
    color: var(--primary-color);
}

.btn-apps-cta-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-apps-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .apps-intro-title {
        font-size: 2rem;
    }

    .apps-category-title {
        font-size: 1.5rem;
    }

    .apps-cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .apps-intro-section,
    .apps-grid-section,
    .apps-benefits-section,
    .apps-cta-section {
        padding: 50px 0;
    }

    .apps-intro-icon {
        font-size: 3rem;
    }

    .apps-intro-title {
        font-size: 1.75rem;
    }

    .apps-intro-text {
        font-size: 1rem;
    }

    .apps-category-title {
        font-size: 1.3rem;
    }

    .apps-category-block {
        margin-bottom: 40px;
    }

    .app-card-inner {
        padding: 25px 15px;
    }

    .benefit-card {
        padding: 30px 15px;
    }

    .apps-cta-card {
        padding: 40px 25px;
    }

    .apps-cta-title {
        font-size: 1.5rem;
    }

    .apps-cta-text {
        font-size: 1rem;
    }

    .apps-cta-actions {
        flex-direction: column;
    }

    .btn-apps-cta-primary,
    .btn-apps-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
