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

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    overflow-x: hidden;
}

@media screen and (max-width: 768px) {
    html, body {
        overflow-y: auto;
        overflow-x: hidden;
    }
}

body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

@media screen and (max-width: 768px) {
    body {
        align-items: stretch;
        padding-top: 10vh;
        padding-bottom: 0;
        overflow-y: auto;
        min-height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
    }
}

/* Conteúdo centralizado */
.content-center {
    text-align: center;
    max-width: 520px;
    width: 90%;
    padding: 30px 25px;
    animation: fadeInUp 0.8s ease-out;
    overflow-x: hidden;
    word-wrap: break-word;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Favicon Image */
.favicon-image {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

/* Badge */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, #1999d5 0%, #00C853 100%);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(25, 153, 213, 0.3);
}

/* Logo */
.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 45px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.logo-black {
    color: #1a1a1a;
    display: inline-block;
}

.logo-growth {
    color: #1999d5;
    display: inline-block;
}

/* Headline */
.headline {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.highlight {
    color: #1999d5;
    font-weight: 700;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(25, 153, 213, 0.15);
    z-index: -1;
    border-radius: 2px;
}

/* Subheadline */
.subheadline {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Urgência / contagem regressiva */
.urgency-text {
    font-size: 13px;
    font-weight: 600;
    color: #d32f2f;
    margin-bottom: 22px;
}

.urgency-text #countdown {
    font-weight: 700;
}

.urgency-text-ended {
    color: #b71c1c;
}

/* Botão */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #00C853 0%, #00B248 100%);
    color: #FFFFFF;
    border: none;
    padding: 18px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.35);
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.button:hover::before {
    left: 100%;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 200, 83, 0.45);
    background: linear-gradient(135deg, #00B248 0%, #00A043 100%);
}

.button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.button:hover .button-arrow {
    transform: translateX(4px);
}

/* Trust text */
.trust-text {
    font-size: 11px;
    color: #666666;
    margin-top: 24px;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.4;
    white-space: nowrap;
}

.trust-text .separator {
    margin: 0 4px;
}

@media screen and (max-width: 360px) {
    .trust-text .separator {
        margin: 0 2px;
    }
}

/* Responsividade para mobile */
@media screen and (max-width: 768px) {
    .content-center {
        padding: 25px 20px;
        max-width: 100%;
        width: 100%;
    }
    
    .favicon-image {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .badge {
        font-size: 10px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .logo {
        font-size: 42px;
        margin-bottom: 18px;
    }
    
    .headline {
        font-size: 24px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .subheadline {
        font-size: 16px;
        margin-bottom: 28px;
        line-height: 1.5;
    }
    
    .button {
        font-size: 17px;
        padding: 20px 30px;
        width: 100%;
        max-width: 100%;
        min-height: 56px;
        box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
        font-weight: 700;
        position: relative;
    }
    
    .button::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .button:active::after {
        width: 300px;
        height: 300px;
    }
    
    .button:active {
        transform: scale(0.98);
    }
    
    .trust-text {
        font-size: 11px;
        margin-top: 20px;
        white-space: normal;
    }
}

@media screen and (max-width: 480px) {
    .content-center {
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .favicon-image {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }
    
    .badge {
        font-size: 9px;
        padding: 5px 14px;
        margin-bottom: 18px;
    }
    
    .logo {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .headline {
        font-size: 20px;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .subheadline {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .button {
        padding: 18px 25px;
        font-size: 16px;
        min-height: 54px;
        box-shadow: 0 8px 25px rgba(0, 200, 83, 0.45);
    }
    
    .trust-text {
        font-size: 10px;
        white-space: nowrap;
        letter-spacing: 0px;
        margin-top: 18px;
    }
}

@media screen and (max-width: 360px) {
    .content-center {
        padding: 18px 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .favicon-image {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .logo {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .headline {
        font-size: 18px;
    }
    
    .subheadline {
        font-size: 14px;
        margin-bottom: 22px;
    }
    
    .button {
        padding: 16px 20px;
        font-size: 15px;
        min-height: 52px;
    }
    
    .trust-text {
        font-size: 9px;
        white-space: nowrap;
        letter-spacing: -0.2px;
        margin-top: 16px;
    }
}

