/* =====================================================
   VARIÁVEIS
===================================================== */

:root{
    --marsala:#bd386b;
    --cinza:#555453;
    --bg-body:#fff1f2;
    --bg-card:#ffffff;
    --text-main:#4a4a4a;
    --btn-color:#bd386b;
    --whatsapp:#25d366;
    --shadow-soft:0 20px 60px rgba(94,75,65,.12);
}

/* =====================================================
   RESET BÁSICO
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    -webkit-tap-highlight-color:transparent;
}

/* =====================================================
   BODY
===================================================== */

body{
    font-family:'DM Sans',sans-serif;
    background:var(--bg-body)
        url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.03'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    color:var(--text-main);
    display:flex;
    flex-direction:column;
    min-height:100vh;
    padding-top:50px;
}

/* =====================================================
   TOP BAR
===================================================== */

.top-bar{
    position:fixed;
    top:0;
    left: 0;
    width: 100vw;
    padding:10px 0;
    background:#222;
    color:#eaeaea;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    text-align:center;
    z-index:1000;
    position: fixed;
}

/* =====================================================
   LAYOUT
===================================================== */

.main-wrapper{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px;
}

.container{
    width:100%;
    max-width:420px;
    margin:auto;
    padding:26px 20px;
    background:var(--bg-card);
    border-radius:20px;
    box-shadow:var(--shadow-soft);
    border:1px solid rgba(173,139,115,.2);
    text-align:center;
}

/* =====================================================
   LOGO
===================================================== */

.logo-frame{
    width:110px;
    height:110px;
    margin:0 auto 20px;
    padding:4px;
    border-radius:50%;
    background:linear-gradient(45deg,#f2d0d1,var(--marsala));
}

.logo-inner{
    width:100%;
    height:100%;
    border-radius:50%;
    overflow:hidden;
    border:3px solid #fff;
}

.logo-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* =====================================================
   TIPOGRAFIA
===================================================== */

.container h1{
    font-family:'Libre Baskerville',serif;
    font-size:21px;
    line-height:1.35;
    margin-bottom:15px;
    color:var(--cinza);
    font-weight:700;
}

h1 span{
    color:var(--marsala);
    font-style:italic;
    font-weight:800;
}

.subtitle{
    font-size:14px;
    line-height:1.6;
    color:#666;
    margin-bottom:30px;
}

.subtitle strong{
    font-weight:700;
}

/* =====================================================
   BOTÃO
===================================================== */

.cta-box{
    margin:10px 0 25px;
}

.cta-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:18px;
    border:0;
    border-radius:8px;
    background:var(--btn-color);
    color:#fff;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    box-shadow:0 4px 15px rgba(158,90,72,.3);
    cursor:pointer;
    transition:.2s ease;
}

.cta-btn:hover{
    transform:translateY(-2px);
    background:#e05c8e;
}

.pulse-animation{
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(189,56,107,.55)}
    70%{box-shadow:0 0 0 16px rgba(189,56,107,0)}
    100%{box-shadow:0 0 0 0 rgba(189,56,107,0)}
}

.cta-subtext{
    font-size: 11px;
    color: #999;
    margin-top: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cta-subtext .fa-thumbs-up{
    color: #BBB;
}

/* =====================================================
   CONTADOR
===================================================== */

.counter-container{
    margin:20px 0 30px;
    padding:15px;
    border-radius:12px;
    background:#fff6f6;
}

.countdown-warning{
    font-size: 11px;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 10px;
}

.countdown-timer{
    font-size:32px;
    font-weight:700;
    color:var(--marsala);
}

.countdown span {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--marsala);
    line-height: 1;
    margin: 5px 0;
    text-align: center;
}

/* =====================================================
   BENEFÍCIOS
===================================================== */

.features{
    display:flex;
    flex-direction:column;
    gap:20px;
    text-align: left;
}

.feature-item{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 8px;
    border-bottom: 1px solid #F5F5F5;
    padding-bottom: 21px;
}

.feature-item:last-child{ 
    border-bottom: none;
}

.feature-icon{
    flex-shrink:0;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:rgba(189,56,107,.1);
    color:var(--marsala);
    font-size:18px;
}

.feature-text h3{
    font-size:15px;
    margin-bottom:4px;
    font-weight:700;
    color:var(--cinza);
}

.feature-text p{
    font-size:13px;
    color:#666;
    line-height:1.5;
}

/* =====================================================
   PROVA SOCIAL
===================================================== */

.social-proof {
    background: #FFF5FA;
    padding: 20px;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 14px;
    color: var(--text-dark);
    border-radius: 12px;
    border: 1px dashed var(--marsala);
    position: relative;
}

.social-proof::before {
    content: '"';
    position: absolute;
    top: 5px;
    left: 4px;
    font-size: 40px;
    color: var(--marsala);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    margin-top: 8px;
    font-style: normal;
    font-size: 11px;
    color: var(--marsala);
    font-family: 'Poppins', sans-serif;
}

.testimonial-slider{
    position: relative;
    margin: 30px 0;
    min-height: 120px;
}

.social-proof{
    display: none;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    background: #fff6f6;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    animation: fade 0.5s ease;
}

.social-proof.active{
    display: block;
}

.testimonial-author{
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #bd386b;
}

@keyframes fade{
    from{opacity:0; transform:translateY(5px);}
    to{opacity:1; transform:translateY(0);}
}

/* =====================================================
   FOOTER
===================================================== */

footer{
    padding-top:20px;
    border-top:1px solid rgba(0,0,0,.06);
    font-size:12px;
    color:#888;
}

.footer-links{
    margin-bottom:8px;
}

.footer-links a{
   color: #999;
    text-decoration: none;
    margin: 0 5px;
    font-weight: 500;
}

.footer-links a:hover{
    text-decoration:underline;
}

.creditos{
    font-size: 10px;
    padding: 5px 12px;
    background: #FFF;
    border-radius: 4px;
    color: #999;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.creditos i{
    color:var(--marsala);
    margin:0 4px;
}

/* =====================================================
   LOADING
===================================================== */

.loading-screen{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    background:rgba(255,255,255,.98);
    z-index:9999;
}

.spinner{
    width:45px;
    height:45px;
    border:2px solid #eaeaea;
    border-top:2px solid var(--btn-color);
    border-radius:50%;
    animation:spin .8s linear infinite;
    margin-bottom:20px;
}

@keyframes spin{
    to{transform:rotate(360deg)}
}

/* =====================================================
   NOTIFICAÇÃO
===================================================== */

.notify-bubble{
    position:fixed;
    bottom:20px;
    left:20px;
    background:#fff;
    padding:12px 16px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    z-index:999;
    animation:fadeInUp .4s ease;
}

.notify-bubble i{
    color:var(--whatsapp);
    font-size:16px;
}

@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}