:root {
    --red-primary: #DC2626;
    --yellow: #FBBF24;
    --black: #1F2937;
    --gold: #F59E0B;
    --white: #FFFFFF;
    --dark-bg: #0F172A;
    --red-dark: #B91C1C;
    --yellow-dark: #D97706;
}

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

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    position: relative;
}

.page-wrapper {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 600px;
    margin: 0 auto;
    overflow-y: auto;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
    margin-top: 10px;
}

.main-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(251, 191, 36, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Content Section */
.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 15px 0;
    min-height: 0;
}

.main-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 15px;
}

.sub-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Buttons */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-telegram {
    background: #0088cc;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.btn-telegram:hover {
    background: #0077B5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
}

.btn span {
    font-weight: 600;
}

/* Info Text */
.info-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-text p {
    margin-bottom: 5px;
}

.info-text strong {
    color: var(--yellow);
}

/* Footer */
.footer {
    flex-shrink: 0;
    text-align: center;
    padding: 8px 0;
    width: 100%;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    margin-top: auto;
}

.footer-brand {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 3px;
}

.footer-cnpj {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.footer-link-wrapper {
    margin: 0;
    padding: 0;
}

.footer-link {
    display: inline-block !important;
    color: var(--yellow) !important;
    text-decoration: underline !important;
    font-size: 0.75rem !important;
    transition: all 0.3s ease;
    padding: 2px 0;
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
}

.footer-link:hover {
    color: var(--gold) !important;
    text-decoration: underline !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 15px;
    }

    .main-logo {
        max-width: 240px;
    }

    .main-text {
        font-size: 1.5rem;
    }

    .sub-text {
        font-size: 0.95rem;
    }

    .buttons-container {
        max-width: 100%;
    }

    .btn {
        padding: 16px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 200px;
    }

    .main-text {
        font-size: 1.3rem;
    }

    .sub-text {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .btn svg {
        width: 24px;
        height: 24px;
    }

    .info-text {
        font-size: 0.85rem;
    }
}

@media (max-height: 700px) {
    .logo-section {
        margin-top: 10px;
    }

    .main-logo {
        max-width: 200px;
    }

    .main-text {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .sub-text {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .buttons-container {
        margin-bottom: 20px;
    }

    .footer {
        padding: 8px 0;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
}
