/* ========================= */
/* CONFIGURAÇÕES GERAIS */
/* ========================= */
:root {
    --primary-blue: #0A84FF;
    --primary-hover: #0066cc;
    --bg-dark: #050810;
    --text-white: #ffffff;
    --text-soft: #9ba4b5;
    --glass-bg: rgba(15, 20, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --success-green: #00d26a;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .btn, .price .current {
    font-family: 'Sora', sans-serif;
}

/* ========================= */
/* BACKGROUND GRÁFICO (NOVO) */
/* ========================= */
.main-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
    /* Imagem real de gráfico ao fundo */
    background-image: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.04; /* Opacidade baixa para não poluir */
    filter: grayscale(100%) contrast(150%);
}

/* Degrade escuro sobre o gráfico para focar no texto */
.bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 0%, rgba(10, 132, 255, 0.08) 0%, rgba(5, 8, 16, 0.95) 70%, #050810 100%);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Bordas reduzidas (4px a 8px) para visual institucional agressivo */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 6px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.section { padding: 80px 0; }

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

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.section-subtitle {
    color: var(--text-soft);
    font-size: 1.1rem;
}

/* ========================= */
/* HEADER */
/* ========================= */
.glass-nav {
    position: fixed;
    top: 0; width: 100%; height: 70px;
    z-index: 1000;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-wrapper {
    display: flex; justify-content: space-between; align-items: center; height: 100%;
}

.logo { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; }
.logo span { color: var(--primary-blue); }

nav a {
    color: var(--text-soft); text-decoration: none; margin-left: 25px;
    font-size: 0.85rem; font-family: 'Sora', sans-serif; transition: 0.3s; font-weight: 600; text-transform: uppercase;
}
nav a:hover { color: var(--text-white); }

/* ========================= */
/* HERO (Estilo VSL / Guru) */
/* ========================= */
.hero { padding-top: 140px; padding-bottom: 60px; }

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }

.alert-badge {
    display: inline-block;
    border: 1px solid rgba(0, 210, 106, 0.3);
    color: var(--success-green);
    background: rgba(0, 210, 106, 0.05);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text h1 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; letter-spacing: -1px; }
.hero-text h1 span { color: var(--primary-blue); }
.hero-text p { font-size: 1.15rem; color: var(--text-soft); margin-bottom: 30px; }

.secure-text {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-top: 10px;
    text-align: center;
    max-width: 320px;
}

.video-card {
    position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.video-card iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 4px; }

/* ========================= */
/* MÉTODO */
/* ========================= */
.metodo-item { display: flex; align-items: center; gap: 50px; margin-bottom: 60px; }
.metodo-item.reverse { flex-direction: row-reverse; }

.metodo-img { flex: 1; padding: 5px; background: rgba(255,255,255,0.02); }
.metodo-img img { width: 100%; border-radius: 4px; display: block; filter: contrast(110%); }

.metodo-info { flex: 1; }

.tag {
    display: inline-block; background: rgba(10, 132, 255, 0.1); color: var(--primary-blue);
    padding: 4px 10px; border-radius: 2px; font-size: 0.75rem; font-weight: 700; margin-bottom: 12px;
    text-transform: uppercase; letter-spacing: 1px;
}

.metodo-info h3 { font-size: 1.8rem; margin-bottom: 15px; }
.metodo-info p { font-size: 1.05rem; color: var(--text-soft); }

/* ========================= */
/* PRICING */
/* ========================= */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.pricing-card {
    padding: 40px; text-align: center; position: relative; display: flex; flex-direction: column;
    border-radius: 6px; /* Borda agressiva */
}

.pricing-card.featured {
    border: 1px solid var(--primary-blue);
    background: linear-gradient(180deg, rgba(10, 132, 255, 0.08) 0%, rgba(5, 8, 16, 0.8) 100%);
    box-shadow: 0 0 40px rgba(10, 132, 255, 0.15);
}

.badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--primary-blue); color: #fff; font-size: 0.75rem; padding: 6px 16px;
    border-radius: 4px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}

.card-header h3 { font-size: 1.4rem; margin-bottom: 5px; }
.card-header p { color: var(--text-soft); font-size: 0.9rem; }

.sales-trigger {
    background: rgba(255,255,255,0.05); padding: 8px; font-size: 0.85rem; border-radius: 4px; margin-top: 20px; color: var(--text-soft); border: 1px dashed rgba(255,255,255,0.2);
}
.sales-trigger.highlight { background: rgba(0, 210, 106, 0.1); color: var(--success-green); border-color: rgba(0, 210, 106, 0.3); font-weight: 700;}

.price { margin: 30px 0; }
.price .old { display: block; text-decoration: line-through; color: #ff4757; font-size: 0.95rem; }
.price .current { display: block; font-size: 3rem; font-weight: 800; color: var(--text-white); margin: 5px 0; letter-spacing: -1px; }
.price small { color: var(--primary-blue); font-size: 0.85rem; font-weight: 600; }

.benefits { list-style: none; text-align: left; margin-bottom: 30px; flex-grow: 1; }
.benefits li { margin-bottom: 12px; font-size: 0.95rem; color: #d1d8e0; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px; }

.guarantee-box { margin-top: 15px; font-size: 0.85rem; color: var(--text-soft); font-weight: 600; }

/* ========================= */
/* BOTÕES */
/* ========================= */
.btn {
    display: inline-block; padding: 16px 28px; border-radius: 4px; /* Mais quadrados */
    text-decoration: none; font-weight: 700; transition: 0.3s; text-align: center;
    font-size: 1rem; width: 100%; cursor: pointer; text-transform: uppercase; font-family: 'Inter', sans-serif; letter-spacing: 0.5px;
}

.btn-primary { background: var(--primary-blue); color: white; border: 1px solid #1a8cff; }
.btn-primary:hover { background: var(--primary-hover); box-shadow: 0 5px 20px rgba(10, 132, 255, 0.3); transform: translateY(-2px); }

.btn-large { max-width: 320px; }

.btn-outline { border: 1px solid var(--primary-blue); color: var(--text-white); background: rgba(10, 132, 255, 0.05); }
.btn-outline:hover { background: var(--primary-blue); }

.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(10, 132, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(10, 132, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(10, 132, 255, 0); }
}

/* ========================= */
/* PROVA SOCIAL & DEPOIMENTOS */
/* ========================= */
.carousel-glass { padding: 15px; margin-bottom: 60px; overflow-x: auto; background: rgba(0,0,0,0.2); }
.carousel-glass::-webkit-scrollbar { height: 6px; }
.carousel-glass::-webkit-scrollbar-track { background: rgba(0,0,0,0.3); }
.carousel-glass::-webkit-scrollbar-thumb { background: var(--primary-blue); border-radius: 4px; }

.carousel-track { display: flex; gap: 15px; width: max-content; }
.slide img {
    border-radius: 4px; width: 280px; height: 160px; object-fit: cover;
    cursor: pointer; transition: 0.3s; border: 1px solid rgba(255,255,255,0.1); opacity: 0.8;
}
.slide img:hover { opacity: 1; border-color: var(--primary-blue); }

/* Grid de Depoimentos Guru */
.testi-title { text-align: center; font-size: 1.8rem; margin-bottom: 30px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }

.testimonial-card { padding: 25px; display: flex; flex-direction: column; border-top: 3px solid var(--primary-blue); border-radius: 4px; }

.testi-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }

.avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--glass-border); }

.testi-meta strong { display: block; font-family: 'Sora', sans-serif; font-size: 0.95rem; color: #fff; }
.testi-meta .verified { font-size: 0.75rem; color: var(--success-green); font-weight: 600; }

.stars { color: #f1c40f; font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }

.testimonial-card p { font-size: 0.9rem; color: #cfd8e3; font-style: italic; line-height: 1.5; }

/* ========================= */
/* LIGHTBOX (Zoom da Imagem) */
/* ========================= */
.lightbox {
    display: none; position: fixed; z-index: 9999; padding-top: 50px; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.95); backdrop-filter: blur(5px);
}
.lightbox-content { margin: auto; display: block; max-width: 90%; max-height: 80vh; border-radius: 4px; box-shadow: 0 0 30px rgba(0,0,0,0.8); animation: zoomIn 0.3s ease; }
@keyframes zoomIn { from {transform: scale(0.9); opacity: 0;} to {transform: scale(1); opacity: 1;} }
.close-lightbox { position: absolute; top: 20px; right: 40px; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; }
.close-lightbox:hover { color: var(--primary-blue); }

/* ========================= */
/* FOOTER */
/* ========================= */
.footer { border-top: 1px solid var(--glass-border); padding: 50px 0 20px; margin-top: 40px; background: rgba(0,0,0,0.3); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.footer-info p { font-size: 0.85rem; color: var(--text-soft); margin-top: 5px; }
.footer-links a { color: var(--text-soft); text-decoration: none; margin-left: 20px; font-size: 0.85rem; }
.footer-links a:hover { color: var(--text-white); }
.copyright { text-align: center; border-top: 1px solid var(--glass-border); padding-top: 20px; color: var(--text-soft); font-size: 0.75rem; }

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-grid, .metodo-item, .metodo-item.reverse { grid-template-columns: 1fr; flex-direction: column; text-align: center; gap: 30px; }
    .hero-text h1 { font-size: 2.2rem; }
    .btn-large { max-width: 100%; }
    .nav-wrapper { flex-direction: column; padding: 10px; }
    nav { margin-top: 10px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;}
    nav a { margin: 0; font-size: 0.75rem; }
    .footer-grid { flex-direction: column; text-align: center; gap: 20px;}
    .footer-links a { margin: 0 10px; }
    .secure-text { margin: 10px auto; }
}

/* ========================= */
/* MODAL DE TEXTOS LEGAIS */
/* ========================= */
.text-modal-content {
    background: rgba(5, 8, 16, 0.95);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    border: 1px solid var(--primary-blue);
    box-shadow: 0 0 40px rgba(10, 132, 255, 0.15);
    border-radius: 6px;
    animation: zoomIn 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
    margin: auto; /* Para centralizar no flexbox da .lightbox */
}

/* Customização da barra de rolagem do modal */
.text-modal-content::-webkit-scrollbar { width: 6px; }
.text-modal-content::-webkit-scrollbar-track { background: rgba(0,0,0,0.3); }
.text-modal-content::-webkit-scrollbar-thumb { background: var(--primary-blue); border-radius: 4px; }

.close-text-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-soft);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.close-text-modal:hover { color: var(--text-white); }

#text-modal-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.modal-body-text p {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.modal-body-text strong {
    color: var(--text-white);
}

.hero-video-1 {
    margin-bottom: 10px;
}

.zoomable {
    cursor: pointer;
}

.header-socials {
    display: flex;
    gap: 1.2rem;
    margin-left: 2rem; /* Espaço entre o menu e os ícones */
    align-items: center;
}

.header-socials a {
    color: var(--text-white);
    opacity: 0.4; /* Aqui você define a transparência inicial */
    transition: all 0.3s ease;
    display: flex;
    text-decoration: none;
}

.header-socials a:hover {
    opacity: 1; /* Fica nítido ao passar o mouse */
    transform: translateY(-2px); /* Leve movimento para cima */
    color: var(--primary-blue); /* Muda para o azul do seu tema */
}

.header-socials svg {
    width: 20px;
    height: 20px;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .header-socials {
        display: none; /* Esconde no mobile para não poluir o nav */
    }
}

/* =========================================
   SEÇÃO DE ROBÔS PERSONALIZADOS
========================================= */
.robots-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif; /* Adapte para a fonte do seu projeto */
}

.glass-container {
  /* Efeito Glassmorphism */
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  
  max-width: 900px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  color: #e6edf3;
}

.glass-container h2 {
  font-size: 2.5rem;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-container h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #8b949e;
  margin-bottom: 30px;
}

.glass-container > p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #c9d1d9;
}

/* Grid de Funcionalidades */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 45px;
}

.feature-item {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease;
}

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

.feature-item .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 15px;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.feature-item p {
  font-size: 0.9rem;
  color: #8b949e;
  line-height: 1.4;
}

/* Botão do Telegram */
.btn-telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #2AABEE; /* Azul oficial Telegram */
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 171, 238, 0.4);
}

.btn-telegram:hover {
  background-color: #229ED9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 171, 238, 0.6);
}

/* Responsividade */
@media (max-width: 768px) {
  .glass-container {
    padding: 30px 20px;
  }
  .glass-container h2 {
    font-size: 2rem;
  }
}

/* Estilos das Seções Retráteis */
.soluções-retratil {
    margin-bottom: 0;
}

.accordion-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.icon-arrow {
    transition: transform 0.3s ease;
    color: var(--primary-blue);
    font-size: 0.8rem;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.02);
}

.content-inner {
    padding: 0 25px 25px 25px;
    color: var(--text-soft);
}

.content-inner ul {
    margin-top: 15px;
    list-style: none;
}

.content-inner li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.content-inner li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

/* Estado Ativo */
.accordion-item.active .accordion-content {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.accordion-item.active .icon-arrow {
    transform: rotate(180deg);
}

.accordion-item.active {
    border-color: var(--primary-blue);
}