/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0f172a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
	/* Certifica que o conteúdo não vaze horizontalmente */
    overflow-x: hidden; 
}

/* Gradientes e Cores */
.gradient-text {
    background: linear-gradient(135deg, #0e6ae7, #ffcc29);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blue { color: #0e6ae7; }
.yellow { color: #ffcc29; }
.white-text { color: #f1f5f9; }
.green { color: #10b981; }
.red { color: #ef4444; }
.purple { color: #8b5cf6; }
.orange { color: #f59e0b; }

/* Glass Effect */
.glass-effect {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, #0e6ae7, #1e40af);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(14, 106, 231, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #ffcc29, #f59e0b);
    color: #1e293b;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 204, 41, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 16px 0;
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;               /* NÃO cresce o botão */
    background: transparent;  /* ou mantenha o gradiente se quiser */
    border: none;
    cursor: pointer;
}

.logo img {
    height: 40px;      /* controla o tamanho da logo */
    width: auto;
    display: block;
}

.logo:hover {
    transform: scale(1.03);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop button {
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: capitalize;
}

.nav-desktop button:hover {
    color: #ffcc29;
}

.nav-desktop button::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffcc29;
    transition: width 0.3s ease;
}

.nav-desktop button:hover::after {
    width: 100%;
}

.btn-client {
    background: linear-gradient(135deg, #ffcc29, #f59e0b) !important;
    color: #1e293b !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: bold !important;
}

.btn-client:hover {
    transform: scale(1.01);
}

.social-desktop {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #94a3b8;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.instagram:hover { color: #e1306c; transform: scale(1.15); }
.social-link.whatsapp:hover { color: #25D366; transform: scale(1.15); }
.social-link.map-link:hover { color: #ffcc29; transform: scale(1.15); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 28px;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    margin-top: 16px;
    padding: 24px;
    animation: slideInLeft 0.3s ease;
    position: fixed;
    top: 80px;
    left: 24px;
    right: 24px;
    z-index: 999;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.nav-mobile nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.nav-mobile button {
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    text-transform: capitalize;
    transition: color 0.3s ease;
    padding: 12px 0;
}

.nav-mobile button:hover {
    color: #ffcc29;
}

.social-mobile {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid #475569;
}

/* Hero Section - MELHORADO PARA MOBILE */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('./assets/teste-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.85));
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    animation: slideInLeft 1s ease;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.5rem;
    color: #f1f5f9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature i {
    color: #ffcc29;
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid #475569;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748b;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease;
}

.visual-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-1, .circle-2, .circle-3 {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
}

.circle-1 {
    width: 384px;
    height: 384px;
    border-color: rgba(14, 106, 231, 0.2);
    animation: spin 20s linear infinite;
}

.circle-2 {
    width: 288px;
    height: 288px;
    border-color: rgba(255, 204, 41, 0.3);
    animation: spin 15s linear infinite reverse;
}

.circle-3 {
    width: 192px;
    height: 192px;
    background: linear-gradient(135deg, rgba(14, 106, 231, 0.2), rgba(255, 204, 41, 0.2));
    border: none;
    animation: pulse 3s ease-in-out infinite;
}

.central-element {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
    position: relative;
}

.icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0e6ae7, #1e40af);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.icon-container i {
    font-size: 40px;
    color: white;
}

.central-element h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.central-element p {
    color: #94a3b8;
}

/* About Section */
.about {
    padding: 96px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 10;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.benefit-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 106, 231, 0.1), rgba(255, 204, 41, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: scale(1.05);
    border-color: #ffcc29;
}

.benefit-card i {
    font-size: 3rem;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.benefit-card:hover i {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
}

.benefit-card p {
    color: #94a3b8;
    position: relative;
    z-index: 10;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    z-index: 10;
}

.company-stat {
    text-align: center;
}

.company-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.company-stat .stat-label {
    color: #94a3b8;
}

/* Plans Section */
.plans {
    padding: 96px 0;
    position: relative;
}

.plans::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.plans-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;

    /* alinha todos pela esquerda */
    justify-content: center;
    align-items: flex-start;
}

.plan-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    border-radius: 16px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto; /* NÃO cresce, NÃO estica */
    width: auto;
}

/* NOVO: Ajusta o padding superior do header do plano popular para compensar o badge */
.plan-card .plan-header {
    padding-top: 40px; 
}

.plan-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(14, 106, 231, 0.2);
}

.plan-card.popular {
    border: 2px solid #ffcc29;
    transform: scale(1.02);
}

/* CORREÇÃO: Adiciona hover específico para o card popular */
.plan-card.popular:hover {
    transform: scale(1.07);
    box-shadow: 0 25px 50px rgba(255, 204, 41, 0.3);
}

.popular-badge {
    position: absolute;
    top: 5px; 
    right: 5px; 
    left: auto; 
    transform: none; 
    padding: 6px 12px; 
    white-space: nowrap; 
    border-top-right-radius: 16px; 
    border-bottom-left-radius: 8px; 
    border-top-left-radius: 0; 
    background: linear-gradient(135deg, #ffcc29, #f59e0b);
    color: #1e293b;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: none;
}

.plan-header {
    padding: 24px 24px 16px;
    text-align: center;
}
/* NOVO: Ajusta o padding superior do header do plano popular para compensar o badge */
.plan-card.popular .plan-header {
    padding-top: 40px; 
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.plan-fiber {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #94a3b8;
}

.plan-fiber i {
    color: #ffcc29;
}

.plan-content {
    padding: 0 24px 24px;
    text-align: center;
}

.plan-price {
    margin-bottom: 24px;
}

.speed {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #0e6ae7;
    margin-bottom: 8px;
}

.speed small {
    font-size: 1.25rem;
    color: #64748b;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #f1f5f9;
}

.price small {
    font-size: 1.25rem;
    color: #64748b;
}

.plan-features {
    margin-bottom: 24px;
}

.plan-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    background: none;
    padding: 0;
    border-radius: 0;
    border: none;
}

.plan-features .feature i {
    color: #ffcc29;
    font-size: 16px;
}

.btn-plan {
    width: 100%;
    background: linear-gradient(135deg, #0e6ae7, #1e40af);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    transform: scale(1.05);
}

.popular-btn {
    background: linear-gradient(135deg, #ffcc29, #f59e0b) !important;
    color: #1e293b !important;
}

.promo-section {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid #ffcc29;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    z-index: 10;
    flex-basis: 100%;
    width: 100%;
}

.promo-content {
    text-align: center;
}

.promo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.promo-header i {
    color: #ffcc29;
    font-size: 24px;
}

.promo-header h3 {
    font-size: 2rem;
    font-weight: bold;
}

.promo-text {
    font-size: 1.25rem;
    color: #ffcc29;
    font-weight: bold;
    margin-bottom: 16px;
}

.promo-desc {
    color: #94a3b8;
    margin-bottom: 24px;
}

.btn-promo {
    background: linear-gradient(135deg, #ffcc29, #f59e0b);
    color: #1e293b;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: scale(1.05);
}

/* ===== CARD MODERNO (estilo da imagem) ===== */

.plan-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;

    /* IMPORTANTE */
    width: auto;
    height: auto;
}

/* Topo */
.plan-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* anula o padding só nesse eixo */
    margin: -16px -16px 0 -16px;
    padding: 16px;
    padding-right: 0;
    position: relative;
}

/* TEXTO SEMPRE NA FRENTE */
.plan-info,
.plan-category,
.plan-name {
    position: relative;
    z-index: 3;
}

.plan-category {
    font-size: 0.9rem;
    color: #94a3b8;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f1f5f9;
}

/* Imagem */
.plan-image {
    overflow: visible; /* permite a imagem crescer fora */
}

.plan-image img {
    width: 120px;
    transform: scale(1.4);
    transform-origin: right center;
    display: block;
}

/* Caixa de benefícios */
.plan-benefits {
    background: rgba(14, 106, 231, 0.12);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.benefit-item i {
    color: #ffcc29;
    font-size: 18px;
}

/* Preço */
.plan-price-modern {
    text-align: center;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.plan-price-modern strong {
    font-size: 1.8rem;
    color: #0e6ae7;
}

.plan-price-modern span {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Botão */
.btn-modern {
    border-radius: 999px;
    font-size: 1.1rem;
    padding: 16px;
}

/* Apps Section */
.apps {
    padding: 96px 0;
    position: relative;
}

.apps::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}
/* ===== OBSERVATION PLAN ===== */
.plans-observation {
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 204, 41, 0.3);
    border-radius: 12px;
    text-align: center;
    /* 🔴 ISSO É O QUE FAZ APARECER */
    position: relative;
    z-index: 10;
}

.plans-observation p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plans-observation strong {
    color: #ffcc29;
}

/* ===== STREAMING CARD ===== */

.stream-card {
    position: relative;
    width: 100%;
    max-width: 340px;   /* só limite, não força */
    aspect-ratio: 2 / 4; /* formato poster (dinâmico) */
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* imagem de fundo */
.stream-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* overlay escuro */
.stream-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15,23,42,0.95) 30%,
        rgba(15,23,42,0.3) 70%,
        rgba(15,23,42,0.1) 100%
    );
}

/* conteúdo */
.stream-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    padding: 24px;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 12px;

    backdrop-filter: blur(6px);
}

/* logo */
.stream-logo img {
    width: 70px;
    margin-bottom: 8px;
}

/* título */
.stream-content h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f1f5f9;
}

/* descrição */
.stream-content p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.4;
}

/* infos do plano */
.stream-plan-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
    color: #ffcc29;
    font-weight: 600;
}

/* botão */
.stream-card .btn-modern {
    margin-top: 8px;
    border-radius: 999px;
}

/* Carrossel de Aplicativos - CORRIGIDO */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    z-index: 10;
    max-width: 100%;
}

.carousel-btn {
    position: relative;
    z-index: 20;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0e6ae7, #1e40af);
    border: 2px solid rgba(255, 204, 41, 0.3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 24px rgba(14, 106, 231, 0.3);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.carousel-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1e40af, #0e6ae7);
    border-color: #ffcc29;
    box-shadow: 0 12px 32px rgba(14, 106, 231, 0.5);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(5px);
    touch-action: pan-y pinch-zoom;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.35s ease;
    gap: 32px;
    cursor: grab;
    will-change: transform;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-track.is-dragging {
    transition: none;
}

.app-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    min-width: 0;
    box-sizing: border-box;
}

.app-card:hover {
    transform: scale(1.05);
    border-color: #ffcc29;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto 16px;
}

.app-icon.disney { 
    background: url('logos/disney.png') center center / contain no-repeat;
    color: transparent; 
}
.app-icon.hbomax { 
    background: url('logos/hbomax.png') center center / contain no-repeat;
    color: transparent; 
}
.app-icon.deezer { 
    background: url('logos/deezer.png') center center / contain no-repeat;
    color: transparent; 
}
.app-icon.exitlag { 
    background: url('logos/exitlag.png') center center / contain no-repeat;
    color: transparent; 
}
.app-icon.docway { 
    background: url('logos/docway.png') center center / contain no-repeat;
    color: transparent; 
}
.app-icon.playkids { 
    background: url('logos/playkids.png') center center / contain no-repeat;
    color: transparent; 
}
.app-icon.kiddle { 
    background: url('logos/kiddle.png') center center / contain no-repeat;
    color: transparent; 
}
.app-icon.sky { 
    background: url('logos/sky.png') center center / contain no-repeat;
    color: transparent; 
}
.app-icon.kaspersky { 
    background: url('logos/kaspersky.png') center center / contain no-repeat;
    color: transparent; 
}
.app-icon.looke { 
    background: url('logos/looke.png') center center / contain no-repeat;
    color: transparent; 
}
.app-icon.zen { 
    background: url('logos/zen.png') center center / contain no-repeat;
    color: transparent; 
}
.app-icon.ubook { 
    background: url('logos/ubook.png') center center / contain no-repeat;
    color: transparent; 
}
.app-icon.comics { 
    background: url('logos/comics.png') center center / contain no-repeat;
    color: transparent; 
}
.app-icon.queimadiaria { 
    background: url('logos/queimadiaria.png') center center / contain no-repeat;
    color: transparent; 
}

.app-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.app-card p {
    color: #94a3b8;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    gap: 12px;
    position: relative;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    background: #64748b;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-indicators .indicator:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.carousel-indicators .indicator.active {
    background: #ffcc29;
    transform: scale(1.3);
    border-color: rgba(255, 204, 41, 0.3);
    box-shadow: 0 0 12px rgba(255, 204, 41, 0.5);
}

/* Contact Section */
.contact {
    padding: 96px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #475569;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease;
}

.contact-card:hover {
    transform: scale(1.05);
}

.contact-card.green:hover { border-color: #10b981; }
.contact-card.blue:hover { border-color: #0e6ae7; }
.contact-card.yellow:hover { border-color: #ffcc29; }
.contact-card.red:hover { border-color: #ef4444; }
.contact-card.purple:hover { border-color: #8b5cf6; }
.contact-card.orange:hover { border-color: #f59e0b; }

.contact-card i {
    font-size: 2rem;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.contact-card:hover i {
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-card span {
    color: #64748b;
    font-size: 0.875rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
    z-index: 10;
}

.location-info, .schedule-info {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
}

.location-info h3, .schedule-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
}

.location-details, .schedule-details {
    background: rgba(71, 85, 105, 0.5);
    border-radius: 16px;
    padding: 24px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.location-item i {
    color: #ffcc29;
    margin-top: 4px;
}

.location-item p {
    margin-bottom: 4px;
}

.location-item strong {
    color: #cbd5e1;
}

.btn-map {
    width: 100%;
    background: linear-gradient(135deg, #0e6ae7, #1e40af);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-map:hover {
    transform: scale(1.05);
}

.schedule-item {
    margin-bottom: 16px;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-item h4 {
    color: #ffcc29;
    font-weight: 600;
    margin-bottom: 12px;
}

.schedule-item p {
    color: #94a3b8;
    margin-bottom: 8px;
}

.cta-final {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    max-width: 512px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-final h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.cta-final p {
    color: #94a3b8;
    margin-bottom: 24px;
}

.btn-specialist {
    background: linear-gradient(135deg, #ffcc29, #f59e0b);
    color: #1e293b;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-specialist:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #0f172a;
    border-top: 1px solid #475569;
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.logo-icon {
    background: linear-gradient(135deg, #0e6ae7, #1e40af);
    padding: 8px;
    border-radius: 8px;
}

.logo-icon i {
    color: white;
    font-size: 24px;
}

.footer-logo span {
    font-size: 2rem;
    font-weight: bold;
}

.footer-section p {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section button {
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-section button:hover {
    color: #ffcc29;
}

.popular-plan {
    color: #ffcc29 !important;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 0.875rem;
}

.contact-item i {
    color: #0e6ae7;
    width: 16px;
}

.contact-item p {
    margin: 0; /* quase zero */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #475569;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links button {
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links button:hover {
    color: #94a3b8;
}

/* Animações */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(14, 106, 231, 0.3); }
    50% { box-shadow: 0 0 40px rgba(14, 106, 231, 0.6); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade - MELHORADA PARA MOBILE */
@media (max-width: 1024px) {
    .nav-desktop, .social-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        flex-direction: column;
        gap: 16px;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 48px;
		/* ADICIONE AS LINHAS ABAIXO: */
        background-attachment: scroll; /* Faz a imagem rolar normalmente */
        background-position: center center; /* Centraliza a imagem */
        background-size: cover; /* Garante que cubra a área sem esticar */
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .app-card {
        min-width: 180px;
        padding: 24px;
    }

    .app-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .carousel-wrapper {
        padding: 12px;
    }

    .carousel-track {
        gap: 16px;
    }

    .visual-container {
        height: 300px;
    }

    .circle-1 {
        width: 280px;
        height: 280px;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
    }

    .circle-3 {
        width: 120px;
        height: 120px;
    }

    .central-element {
        padding: 24px;
    }

    .icon-container {
        width: 60px;
        height: 60px;
    }

    .icon-container i {
        font-size: 30px;
    }

    .central-element h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .features {
        flex-direction: column;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .app-card {
        min-width: 160px;
        padding: 20px;
    }

    .app-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .app-card h3 {
        font-size: 1rem;
    }

    .app-card p {
        font-size: 0.875rem;
    }

    .nav-mobile {
        left: 16px;
        right: 16px;
        top: 70px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 16px;
    }

    .visual-container {
        height: 250px;
    }

    .circle-1 {
        width: 220px;
        height: 220px;
    }

    .circle-2 {
        width: 160px;
        height: 160px;
    }

    .circle-3 {
        width: 100px;
        height: 100px;
    }

    .central-element {
        padding: 20px;
    }

    .central-element h3 {
        font-size: 1.25rem;
    }
}

/* Melhorias específicas para touch devices */
@media (hover: none) and (pointer: coarse) {
    .carousel-track {
        cursor: default;
    }
    
    .carousel-track:active {
        cursor: default;
    }
    
    .benefit-card:hover,
    .plan-card:hover,
    .contact-card:hover,
    .app-card:hover {
        transform: none;
    }
    
    .benefit-card:active,
    .plan-card:active,
    .contact-card:active {
        transform: scale(0.98);
    }

}
