/* VARIABLES DE COLORES NEÓN TARJETAS DIGITALES */
:root {
    --bg-dark: #060913;
    --neon-naranja: #ffaa00; /* Naranja/Dorado Neón de la imagen */
    --borde-transparente: rgba(255, 170, 0, 0.2);
    --texto-gris: #a0aabf;
}

body { background-color: var(--bg-dark); }

/* --- DESTAQUE ATIVO NO MENU (LARANJA NEON) --- */
.navbar nav a.ativo {
    color: var(--neon-naranja) !important;
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.8) !important;
}

/* --- ESTILO DO CAMINHO NO NAVBAR LARANJA --- */
.nav-path-td {
    color: var(--neon-naranja);
    font-weight: 800;
    margin-left: 8px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.8);
    font-size: 0.9em;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 50px;
    font-size: 0.8rem;
    color: var(--texto-gris);
    text-transform: uppercase;
}
.breadcrumbs a { color: var(--texto-gris); text-decoration: none; margin: 0 5px; }
.breadcrumbs span { color: var(--neon-naranja); margin: 0 5px; }

/* Títulos de Sección */
.td-seccion-titulo {
    text-align: center;
    color: var(--neon-naranja);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin: 50px 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.td-seccion-titulo.small-title { font-size: 1rem; }
.td-seccion-titulo::before, .td-seccion-titulo::after {
    content: "";
    height: 1px;
    width: 200px;
    background: linear-gradient(90deg, transparent, var(--neon-naranja), transparent);
}

/* --- HERO TARJETAS --- */
.td-hero { 
    /* Padronizado igual as outras páginas */
    padding: 94px 50px 20px; 
}
.td-hero-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--neon-naranja);
    border-radius: 20px;
    padding: 60px; /* Preenchimento interno padronizado */
    background: radial-gradient(circle at 10% 50%, rgba(255,170,0,0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 50%, rgba(255,170,0,0.08) 0%, transparent 40%);
    box-shadow: 0 0 30px rgba(255, 170, 0, 0.15) inset;
}
.hero-col { display: flex; flex-direction: column; justify-content: center; align-items: center; }
.hero-img-left { width: 30%; }
.td-hero-img { max-width: 100%; filter: drop-shadow(0 0 20px rgba(255,170,0,0.6)); }

.hero-text-center { width: 45%; text-align: center; }
.hero-text-center h1 { font-size: 3.5rem; color: #fff; line-height: 1; margin-bottom: 5px;}
.hero-text-center h2 { font-size: 4rem; color: var(--neon-naranja); line-height: 1; text-shadow: 0 0 15px rgba(255,170,0,0.5); margin-bottom: 20px;}
.hero-text-center h2 span { font-weight: 300; }
.hero-text-center p { color: #fff; font-size: 1.1rem; line-height: 1.5; margin-bottom: 30px; }

.td-mini-features { display: flex; justify-content: center; gap: 20px; }
.m-feat { text-align: center; }
.m-feat img { height: 35px; margin-bottom: 8px; }
.m-feat span { color: #fff; font-size: 0.75rem; display: block;}

.hero-img-right { width: 25%; }

/* --- ANIMAÇÃO NO LOGO DO HERO --- */
.logo-hero-td { 
    max-width: 320px; 
    width: 100%; 
    filter: drop-shadow(0 0 15px rgba(255,170,0,0.4)); 
    animation: flutuarLogoHeroTD 4s ease-in-out infinite; 
}

@keyframes flutuarLogoHeroTD {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- FRANJA CARACTERÍSTICAS --- */
.td-features-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 0 50px 40px;
    text-align: center;
}
.f-item { padding: 10px; }
.f-item img { height: 40px; margin-bottom: 10px; }
.f-item h4 { color: var(--neon-naranja); font-size: 0.85rem; margin-bottom: 5px;}
.f-item p { color: var(--texto-gris); font-size: 0.75rem; }

/* --- PLANES --- */
.td-planes { padding: 0 50px 50px; }
.td-planes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto;
}
.td-card {
    background: rgba(10, 15, 30, 0.6);
    border: 1px solid var(--borde-transparente);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 30px); 
    min-width: 280px;
}
.td-card:hover { border-color: var(--neon-naranja); box-shadow: 0 0 20px rgba(255,170,0,0.2); transform: translateY(-5px); transition: 0.3s;}

.td-card > img { 
    height: 50px; 
    width: auto; 
    max-width: 100%; 
    object-fit: contain; 
    margin: 0 auto 15px auto; 
    display: block;
}

.td-card h4 { 
    font-size: 1.1rem; 
    color: #fff;
    margin-bottom: 5px; 
    min-height: 55px; 
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.td-card .desc-top { font-size: 0.85rem; color: #fff; margin-bottom: 15px; }
.td-card .precio { font-size: 2rem; color: var(--neon-naranja); font-weight: bold; margin-bottom: 20px; }
.td-card .precio span { font-size: 1rem; font-weight: normal; }
.td-card .precio.cotizacion { font-size: 1.4rem; margin: 15px 0 25px; line-height: 1.3;}

.td-card ul { 
    list-style: none; 
    text-align: left; 
    margin-bottom: 30px; 
    flex-grow: 1; 
    padding: 0;
    max-height: 220px; 
    overflow-y: auto;
    padding-right: 10px;
}
.td-card ul::-webkit-scrollbar { width: 5px; }
.td-card ul::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 10px; }
.td-card ul::-webkit-scrollbar-thumb { background: rgba(255, 170, 0, 0.4); border-radius: 10px; }
.td-card ul::-webkit-scrollbar-thumb:hover { background: rgba(255, 170, 0, 0.8); }

.td-card ul li { 
    font-size: 0.85rem; 
    color: #fff; 
    margin-bottom: 12px; 
    display: flex; 
    align-items: center; 
    gap: 8px;
}
.td-card ul li img { 
    height: 12px; 
    width: 12px;
    margin: 0; 
    object-fit: contain;
    flex-shrink: 0; 
}

.td-card.destacado {
    border-color: var(--neon-naranja);
    box-shadow: 0 0 20px rgba(255,170,0,0.15);
    transform: scale(1.05);
    z-index: 2;
    background: #040811;
}
.td-card.destacado:hover { transform: scale(1.05) translateY(-5px); }
.badge-popular {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--bg-dark); border: 1px solid var(--neon-naranja);
    color: var(--neon-naranja); padding: 5px 15px; border-radius: 20px; font-size: 0.7rem; font-weight: bold;
}

.td-card.plan-evento {
    border-color: rgba(255, 102, 153, 0.6); 
    box-shadow: 0 0 15px rgba(255, 102, 153, 0.1);
}
.td-card.plan-evento h4, .td-card.plan-evento .precio { color: #ff6699; }
.td-card.plan-evento:hover { border-color: #ff6699; box-shadow: 0 0 20px rgba(255, 102, 153, 0.3); }
.td-card.plan-evento ul::-webkit-scrollbar-thumb { background: rgba(255, 102, 153, 0.4); }

.btn-td {
    padding: 12px; border-radius: 25px; text-decoration: none; font-weight: bold; font-size: 0.85rem;
    border: 1px solid var(--neon-naranja); color: var(--neon-naranja); transition: 0.3s;
}
.btn-td:hover { background: rgba(255,170,0,0.1); }
.plan-evento .btn-td { border-color: #ff6699; color: #ff6699; }
.plan-evento .btn-td:hover { background: rgba(255,102,153,0.1); }

/* --- QUÉ INCLUYE --- */
.td-incluye {
    display: grid; 
    grid-template-columns: 1fr 1.5fr; 
    gap: 20px; /* Reduzido o espaço entre a imagem e o texto para aproximar mais */
    padding: 0 50px 50px; /* Alinhado o padding com o restante da página */
    align-items: center; 
    max-width: 1200px;
    margin: 0 auto;
}

.incluye-left { 
    display: flex;
    flex-direction: column;
}
.incluye-left h3 { 
    color: #fff; 
    font-size: 2rem; 
    margin-bottom: 30px; 
    line-height: 1.2;
}
.incluye-left h3 span { 
    color: var(--neon-naranja); 
    font-size: 2.5rem; 
    display: block;
}
.incluye-left ul { 
    list-style: none; 
    padding: 0;
}
.incluye-left ul li { 
    color: #fff; 
    font-size: 1.1rem; 
    margin-bottom: 20px; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}
.incluye-left ul li img { 
    height: 18px; 
}

.incluye-right { 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; /* Alinhado à esquerda para aproximar da lista */
}

.img-tarjeta-svg {
    max-width: 100%;
    width: 60%; /* Ajuste o tamanho conforme a necessidade */
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 170, 0, 0.2));
}

/* --- PROCESO TIMELINE --- */
.td-proceso { padding: 0 50px 50px; }
.proc-timeline { display: flex; justify-content: space-between; align-items: center; margin-top: 30px;}
.p-step { text-align: center; width: 14%; }
.p-step img { height: 40px; margin-bottom: 10px; }
.p-step h5 { font-size: 0.75rem; margin-bottom: 5px; color: var(--neon-naranja);}
.p-step p { font-size: 0.6rem; color: var(--texto-gris); line-height: 1.3;}
.p-seta { height: 12px; }

/* --- FAQ ACORDEÓN --- */
.td-faq-sec { padding: 0 50px 50px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.faq-item { 
    background: rgba(10, 15, 30, 0.5); border: 1px solid var(--borde-transparente); 
    border-radius: 10px; margin-bottom: 15px; overflow: hidden;
}
.faq-btn {
    width: 100%; background: none; border: none; padding: 20px; text-align: left;
    color: var(--texto-gris); font-size: 0.9rem; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center; outline: none;
}
.faq-btn .icon { color: var(--neon-naranja); font-weight: bold; font-size: 1.2rem; }
.faq-btn.active { color: #fff; }
.faq-content {
    max-height: 0; overflow: hidden; padding: 0 20px; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-content p { color: var(--texto-gris); font-size: 0.85rem; padding-bottom: 20px;}

/* =========================================
   CTA BANNER FINAL (PADRÃO DESARROLLO WEB)
   ========================================= */
.td-cta-banner { padding: 0 50px 50px; }

.cta-banner-box {
    background: linear-gradient(90deg, #1a0f00 0%, #000000 100%);
    border: 1px solid var(--neon-naranja); 
    border-radius: 20px; 
    padding: 40px 60px; /* Igual ao Desenvolvimento Web */
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    box-shadow: 0 0 30px rgba(255, 170, 0, 0.2);
}

/* Tamanho Igual ao foguete com a mesma animação de flutuar */
.cta-qr-img { 
    height: 120px; 
    filter: drop-shadow(0 0 15px rgba(255,170,0,0.6)); 
    animation: flutuarQRCTA 4s ease-in-out infinite; 
}

@keyframes flutuarQRCTA {
    0% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(-2deg); }
}

/* Espaçamento do texto distribuindo perfeitamente com os cantos */
.cta-text { 
    flex: 1; 
    margin: 0 40px; 
    text-align: center; /* CENTRALIZADO AQUI! */
}

.cta-text h3 { 
    color: #fff; 
    font-size: 1.4rem; 
    font-weight: normal; 
    margin-bottom: 5px;
    line-height: 1.3;
}

.cta-text h3 span { 
    color: var(--neon-naranja); 
    font-weight: bold;
}

.cta-text p { 
    color: var(--texto-gris); 
    font-size: 0.9rem; 
}

.btn-cta-green {
    background: transparent; border: 2px solid #00ff55; color: #00ff55;
    padding: 15px 30px; border-radius: 30px; text-decoration: none; font-weight: bold;
    display: flex; align-items: center; gap: 10px; transition: 0.3s;
}

.btn-cta-green:hover { background: rgba(0,255,85,0.1); box-shadow: 0 0 15px #00ff55; }

.btn-cta-green img { 
    width: 20px; 
}

/* --- RESPONSIVO --- */
@media (max-width: 1200px) {
    .td-card { width: calc(50% - 30px); } 
    .td-card.destacado { transform: scale(1); }
    .td-incluye { 
        grid-template-columns: 1fr; 
        text-align: center;
        padding: 0 5% 50px;
    }
    .incluye-left ul li { 
        justify-content: center; 
    }
    .incluye-right { 
        justify-content: center; 
    }
    .img-tarjeta-svg { width: 50%; } 
    .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .td-hero { padding-top: 100px; } 
    .td-hero-box { flex-direction: column; text-align: center; gap: 30px;}
    .hero-col { width: 100%; }
    .td-features-strip { grid-template-columns: repeat(2, 1fr); gap: 20px;}
    .td-card { width: 100%; } 
    .img-tarjeta-svg { width: 80%; } 
    
    /* CTA em coluna no celular */
    .cta-banner-box { flex-direction: column; text-align: center; gap: 25px; padding: 40px 20px; }
    .cta-text { margin: 0; }
    
    .proc-timeline { flex-wrap: wrap; gap: 15px; }
    .p-step { width: 30%; }
    .p-seta { display: none; }
}