/* RESET */
*{ box-sizing:border-box; margin:0; padding:0; }
body{
    font-family: Inter, sans-serif;
    background:#f6f6f6;
    color:#111;
}

/* VARIÁVEIS */
:root{
    --orange-500:#f97316;
    --orange-400:#fb923c;
    --gray-50:#f6f6f6;
    --gray-600:#6b7280;
    --radius:12px;
    --shadow:0 6px 18px rgba(18,18,18,.06);
    --card-shadow:0 6px 20px rgba(0,0,0,0.06);
    --container:1100px;
}

/* Promo */
.promo{
    position:fixed;
    top:0; left:0; right:0;
    background:var(--orange-500);
    color:#fff;
    padding:12px;
    text-align:center;
    font-weight:700;
    z-index:1000;
}
body.has-banner{ padding-top:52px; }

/* Container */
.wrap{
    max-width:var(--container);
    margin:28px auto;
    padding:0 20px 80px;
}

/* Logo */
.site-logo img {
    height: 100px;
}
.site-logo {
    text-align: center;
    margin: 25px 0 30px;
}


/* Banner */
.profile-banner{
    position:relative;
    height:180px;
    background:#ddd;
    border-radius:16px;
    overflow:hidden;
    box-shadow:var(--card-shadow);
}
.profile-banner img{
    width:100%;height:100%;object-fit:cover;
}

/* Stats */
.banner-stats{
    position:absolute;
    top:16px;right:18px;
    display:flex;gap:8px;
}
.banner-stats .chip{
    background:rgba(0,0,0,.45);
    padding:8px 10px;
    color:#fff;
    border-radius:10px;
    font-size:13px;
}

   .profile-row{
    display:flex;
    gap:20px;
    align-items:flex-start;
    margin: top -18px 0px; /* antes -50px */
}


.profile-avatar {
    width: 120px;            /* antes 140px */
    height: 120px;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #eee;
    position: relative;
    top: -40px;              /* ANTES: só -70px no container */
}


.profile-card {
    background: #fff;
    padding: 16px 18px;
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    flex: 1;   /* ADICIONE ESTA LINHA */
}


.profile-name{
    display:flex;align-items:center;gap:10px;
    font-size:22px;font-weight:700;
}
.verified{ color:#ff6b3d; font-size:20px; }

.profile-username{
    color:var(--gray-600);
    margin:6px 0 12px;
}
.profile-bio {
    font-size: 16px;
    margin-top: 14px;

    /* Quebra automática igual ao original */
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;

    /* Responsivo */
    line-height: 1.45;
    max-width: 95%;   /* mantém uma margem bonita */
}


/* Cards */
.section{ margin-top:28px; }
.card-panel{
    background:#fff;
    padding:24px;
    border-radius:18px;
    box-shadow:var(--card-shadow);
}
.section-title{
    font-size:26px;
    font-weight:700;
    margin-bottom:18px;
}

/* Plans */
.plans{ display:flex; flex-direction:column; gap:12px; }

.plan{
    display:flex;justify-content:space-between;
    padding:18px 26px;
    border-radius:12px;
    background:linear-gradient(90deg,var(--orange-400),var(--orange-500));
    color:#fff;
    font-weight:700;
    font-size:20px;
    box-shadow:0 6px 14px rgba(249,115,22,0.12);
}
.price{font-weight:800;}

/* Promo list */
.promo-list{ margin-top:14px; display:flex; flex-direction:column; gap:12px; }

.promo-item{
    background:#fff;
    border:2px solid rgba(251,146,60,0.25);
    padding:16px;
    border-radius:12px;
    display:flex;
    justify-content:space-between;
    font-weight:600;
}
.badge-orange{
    background:#f97316;color:#fff;
    padding:4px 8px;border-radius:12px;
    font-size:12px;
}
.badge-blue{
    background:#eef3ff;color:#3b82f6;
    padding:4px 8px;border-radius:12px;
    font-size:12px;
}

/* Media Grid */
.media-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:26px;
}
.media-item{
    height:260px;
    border-radius:12px;
    overflow:hidden;
    background:#ddd;
    box-shadow:var(--card-shadow);
    position:relative;
}
.media-item img{width:100%;height:100%;object-fit:cover;}
.media-lock{
    position:absolute;inset:0;
    background:rgba(0,0,0,.45);
    display:flex;align-items:center;justify-content:center;
    color:#fff;font-weight:700;
}

/* FAQ */
.faq{ margin-top:40px; }
.faq h2{ font-size:26px; margin-bottom:20px; }
.q{
    background:#fff;
    padding:18px;
    border-radius:10px;
    border:1px solid #eee;
    margin-bottom:8px;
    cursor:pointer;
    display:flex;justify-content:space-between;
}
.a{
    display:none;
    background:#fff;
    padding:14px 18px;
    border-radius:10px;
    border:1px solid #eee;
    margin-bottom:10px;
}

/* CTA */
.cta-center{ text-align:center; margin-top:22px; }
.cta-btn{
    display:inline-block;
    background:var(--orange-500);
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
}

/* Responsivo */
@media (max-width:900px){
    .media-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:600px){
    .profile-row{ flex-direction:column; margin-top:-60px; }
    .profile-avatar{ width:112px;height:112px;border-width:5px; }
    .media-grid{ grid-template-columns:1fr; }
    .profile-banner{ height:160px; }
}
.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: var(--shadow);
    background: #eee;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.profile-banner {
    position: relative;
    width: 100%;
    height: 220px; /* altura fixa */
    border-radius: 16px;
    overflow: hidden;
    background: #ddd;
    box-shadow: var(--card-shadow);
}

/* Estilo da imagem do banner */
.profile-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* garante que a imagem não estoure */
    object-position: center; /* centraliza */
    display: block;
}
/* Desfoque suave nas imagens de preview */
.media-item img {
    filter: blur(8px);
    transform: scale(1.1); /* leve zoom para evitar bordas do blur */
    transition: 0.3s ease;
}

/* Mantém o cadeado nítido por cima */
.media-item .media-lock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 5;
    font-size: 18px;
    font-weight: 700;
}
.media-item img {
    filter: blur(4px);
    transform: scale(1.08);
    transition: 0.3s ease;
}
/* Botão grande principal */
.plan-big{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:linear-gradient(90deg, var(--orange-400), var(--orange-500));
    padding:22px 26px;
    border-radius:14px;
    color:#fff;
    font-size:22px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 8px 18px rgba(249,115,22,0.18);
    margin-bottom:14px;
}

.plan-big .price{
    font-size:22px;
    font-weight:800;
}

/* Faixa bônus */
.video-bonus{
    background:#fff4e5;
    color:#a04a00;
    padding:14px;
    text-align:center;
    font-size:15px;
    font-weight:700;
    border-radius:10px;
    margin-bottom:16px;
}

/* Selos */
.secure-box{
    display:flex;
    justify-content:center;
    gap:25px;
    font-weight:600;
    color:#1f7f58;
    margin-bottom:26px;
}

/* Título promo */
.promo-title{
    font-size:24px;
    font-weight:700;
    margin:10px 0 18px;
}

/* Caixas de promoções */
.promo-list-new{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.promo-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border:2px solid rgba(249,115,22,0.35);
    border-radius:16px;
    padding:20px 22px;
    background:#fff;
    text-decoration:none;
    color:#111;
    font-size:20px;
    font-weight:700;
    box-shadow:var(--card-shadow);
}

.promo-price{
    color:#000;
    font-weight:800;
    font-size:22px;
}
/* BOTÃO PRINCIPAL CLEAN */
.plan-big.clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, var(--orange-400), var(--orange-500));
    padding: 18px 22px;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(249,115,22,0.15);
    margin-bottom: 10px;
}

.plan-big.clean .price {
    font-size: 18px;
    font-weight: 700;
}

/* Faixa */
.video-bonus.clean {
    background: #fff7eb;
    color: #b85a00;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 14px;
}

/* Selos */
.secure-box.clean {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 14px;
    color: #1f7f58;
    font-weight: 600;
    margin-bottom: 22px;
}

/* Título */
.promo-title.clean {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* LISTA DE PROMOÇÕES CLEAN */
.promo-list-new.clean {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-box.clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1.6px solid rgba(249,115,22,0.35);
    background: #fff;
    text-decoration: none;
    color: #000;
    font-size: 17px;
    font-weight: 600;
}

/* Rótulo */
.promo-box.clean .label {
    font-weight: 600;
    font-size: 17px;
}

/* Preço clean */
.promo-box.clean .price-mini {
    font-size: 18px;
    font-weight: 700;
}

/* Badges */
.badge-orange {
    background: #f97316;
    color: #fff;
    padding: 3px 6px;
    font-size: 11px;
    border-radius: 10px;
}

.badge-blue {
    background: #eef3ff;
    color: #3b82f6;
    padding: 3px 6px;
    font-size: 11px;
    border-radius: 10px;
}
/* AJUSTE DE ALTURA DOS BOTÕES PRINCIPAIS */
.plan-big.clean {
    padding: 22px 26px;        /* antes 18px — agora mais alto */
    font-size: 20px;           /* aumenta texto */
}

.plan-big.clean .price {
    font-size: 20px;           /* deixa mais forte */
}

/* FAIXA DE BÔNUS MAIS ALTA */
.video-bonus.clean {
    padding: 14px 12px;        /* antes 10px — agora mais confortável */
    font-size: 15px;
}

/* LINHA "PAGAMENTO 100% seguro" maior */
.secure-box.clean {
    font-size: 15px;
    gap: 22px;                 /* espaçamento maior */
    margin-bottom: 26px;
}

/* TÍTULO PROMOÇÕES maior */
.promo-title.clean {
    font-size: 24px;
    margin-bottom: 16px;
}

/* CAIXAS DE PROMOÇÕES MAIS ALTAS */
.promo-box.clean {
    padding: 18px 22px;        /* antes 14px — agora mais alto */
    font-size: 18px;
}

.promo-box.clean .label {
    font-size: 18px;
}

.promo-box.clean .price-mini {
    font-size: 20px;
}

/* BADGES mais proporcionais */
.badge-orange,
.badge-blue {
    padding: 4px 8px;
    font-size: 12px;
}
/* Evita que o botão encoste no rodapé */
.faq {
    padding-bottom: 60px;
}

/* Área do botão final */
.cta-center {
    margin-top: 25px;
    margin-bottom: 40px !important;
}

/* Traz de volta os links (Termos e Privacidade) */
.footer-links {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: #666;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}
/* Ajuste da área da logo para não empurrar o banner */
.site-logo {
    text-align: center;
    margin: 10px 0 20px; /* controla o espaço acima e abaixo */
}

.site-logo img {
    height: 70px;      /* tamanho ideal sem quebrar */
    display: block;
    margin: 0 auto;
}

/* Ajuste para garantir que o banner grude no logo */
.wrap > .profile-banner {
    margin-top: -10px; /* sobe levemente o banner */
}
/* Corrige espaço gigante acima do banner */
.site-logo {
    margin-top: 0px !important;   /* diminui o espaço superior */
    margin-bottom: 10px !important;
}

/* Diminui suavemente o tamanho da logo para não atrapalhar */
.site-logo img {
    height: 70px !important;
    width: auto;
}

/* Puxa o banner um pouco mais para cima */
.profile-banner {
    margin-top: -55px !important;
}

/* Ajuste do banner após remover logo */
.profile-banner {
    margin-top: 45px !important;
}

/* Ajuste fino da posição do avatar */
.profile-avatar {
    position: relative;
    top: -55px; /* sobe um pouco mais */
}
/* Fundo borrado */
.age-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

/* Caixa */
.age-box {
    background: #fff;
    width: 90%;
    max-width: 360px;
    padding: 25px 25px 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 22px rgba(0,0,0,0.25);
}

.age-box h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Botões */
.age-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

#btn-yes, #btn-no {
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: .2s;
}

#btn-yes {
    background: #f97316;
    color: white;
}

#btn-no {
    background: #e5e7eb;
    color: #111;
}

#btn-yes:hover {
    background: #fb923c;
}

#btn-no:hover {
    background: #d1d5db;
}
.profile-banner {
    margin-top: -40px !important;
}
.card-panel {
    padding: 32px 26px !important; /* antes 24px */
    border-radius: 20px !important; /* mais premium */
}
.plan-big.clean {
    margin-bottom: 22px !important; /* antes ~10px */
    padding: 26px 28px !important;  /* botão mais alto */
    font-size: 20px !important;
}

.video-bonus.clean {
    margin-bottom: 22px !important;
    padding: 14px 14px !important;
}

.secure-box.clean {
    margin-bottom: 28px !important;
}

.promo-title.clean {
    margin-bottom: 20px !important;
}

.promo-list-new.clean {
    gap: 18px !important; /* mais espaçamento entre caixas */
}

.promo-box.clean {
    padding: 20px 24px !important;
    font-size: 19px !important;
}
.section {
    margin-bottom: 40px !important;
}
.faq .q {
  transition: box-shadow 0.35s ease, background-color 0.35s ease;
  padding: 14px 10px;
  border-radius: 12px;
}

.faq .q.open {
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
  background-color: rgba(255,255,255,0.04);
}
/* Estilo da pergunta quando aberta */
.faq .q.open {
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
  background-color: rgba(255,255,255,0.04);
  border-radius: 10px;
}

/* Área da resposta */
.faq .a {
  background-color: transparent;
  padding: 0 10px;
  border-radius: 10px;
  transition: background-color 0.35s ease, padding 0.35s ease;
}

/* Área destacada quando aberta */
.faq .a.open-answer {
  background-color: rgba(255, 255, 255, 0.07);
  padding: 12px 14px;
}
/* estado inicial das respostas */
.faq .a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, opacity 0.28s ease;
}

/* quando aberta */
.faq .a.open-answer {
  max-height: 500px; /* suficiente para qualquer texto */
  opacity: 1;
}
/* estado inicial */
.faq .a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* quando aberta */
.faq .a.open-answer {
  max-height: 500px;
  opacity: 1;
}

/* destaque opcional da pergunta aberta */
.faq .q.open {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
}
/* garante que as respostas sejam exibidas quando abertas */
.faq .a {
  display: block !important;
}
.faq .a.open-answer {
  border: 2px solid #f97316; /* mesma cor do tema */
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.35);
}
