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

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

img, video, iframe {
    max-width: 100%;
    height: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
    padding-bottom: 40px; /* Espaço para o rodapé */
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px; /* Mais espaço para o rodapé em mobile */
    }

    .header {
        flex-wrap: wrap;
        gap: 12px;
        min-height: 80px;
    }

    .header-buying-now {
        position: static;
        transform: none;
        order: 2;
        width: 100%;
        justify-content: center;
        margin: 0;
        padding: 6px 12px;
    }

    .header-tagline {
        order: 3;
        margin-left: 0;
        width: 100%;
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .header-buying-now {
        padding: 5px 10px;
    }

    .buying-now-number {
        font-size: 14px;
        min-width: 25px;
    }

    .buying-now-text {
        font-size: 11px;
    }

    .buying-now-indicator {
        width: 8px;
        height: 8px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.title-link {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.title-link:hover {
    opacity: 0.8;
    cursor: pointer;
}

.title-telegram-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: #FF6B35;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    padding: 10px 15px;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    background: #0f0f0f;
    color: #ffffff;
    font-size: 14px;
    width: 250px;
    max-width: 100%;
    outline: none;
    box-sizing: border-box;
}

.search-input:focus {
    border-color: #FF6B35;
}

.search-button {
    background: #FF6B35;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.search-button:hover {
    background: #E55A2B;
}

/* Header layout com tagline */
.header-main {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
}

.header-buying-now {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    white-space: nowrap;
}

.buying-now-indicator {
    width: 10px;
    height: 10px;
    background: #FF6B35;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.8), 0 0 20px rgba(255, 107, 53, 0.5);
    animation: pulse-orange 2s ease-in-out infinite;
}

@keyframes pulse-orange {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.buying-now-number {
    font-size: 16px;
    font-weight: 700;
    color: #f1f5f9;
    min-width: 30px;
    text-align: center;
}

.buying-now-text {
    font-size: 13px;
    color: #cbd5e1;
    font-weight: 500;
}

.header-tagline {
    margin-left: auto;
    max-width: 420px;
    text-align: right;
    font-size: 14px;
    color: #f1f5f9;
    opacity: 0.9;
    position: relative;
    z-index: 0;
}

.header-tagline-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    background: linear-gradient(135deg, #f97316 0%, #facc15 40%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 18px rgba(248, 250, 252, 0.25);
    font-weight: 600;
}

.header-tagline-text.tagline-visible {
    opacity: 1;
    transform: translateY(0);
}

.header-tagline-text.tagline-hiding {
    opacity: 0;
    transform: translateY(-6px);
}

/* Navigation */
.nav {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 10px;
}

.nav-link {
    color: #8a8fa3;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #ffffff;
    background: #1a1a1a;
}

.nav-link.active {
    color: #ffffff;
    background: #1a1a1a;
    font-weight: 600;
}

/* Estilos especiais para o botão Melhores */
.nav-link[href*="melhores"] {
    position: relative;
    color: #FF8C42 !important;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    border: 1px solid rgba(255, 140, 66, 0.3);
    box-shadow: 0 0 15px rgba(255, 140, 66, 0.3),
                0 0 30px rgba(255, 140, 66, 0.2),
                inset 0 0 10px rgba(255, 140, 66, 0.1);
    animation: pulse-gold 2s ease-in-out infinite;
}

.nav-link[href*="melhores"]:hover {
    color: #FF8C42 !important;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.25) 0%, rgba(255, 107, 53, 0.25) 100%);
    border-color: rgba(255, 140, 66, 0.5);
    box-shadow: 0 0 20px rgba(255, 140, 66, 0.4),
                0 0 40px rgba(255, 140, 66, 0.3),
                inset 0 0 15px rgba(255, 140, 66, 0.2);
    transform: translateY(-1px);
}

.nav-link[href*="melhores"].active {
    color: #FF8C42 !important;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
    border-color: rgba(255, 140, 66, 0.4);
    box-shadow: 0 0 25px rgba(255, 140, 66, 0.5),
                0 0 50px rgba(255, 140, 66, 0.3),
                inset 0 0 20px rgba(255, 140, 66, 0.15);
}

/* Efeito de brilho ao redor do botão Melhores */
.nav-link[href*="melhores"]::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 140, 66, 0.8),
        rgba(255, 107, 53, 0.8),
        rgba(255, 140, 66, 0.8),
        rgba(255, 107, 53, 0.8));
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    animation: glow-border 2s ease-in-out infinite;
    filter: blur(4px);
}

.nav-link[href*="melhores"]:hover::before {
    opacity: 0.6;
}

.nav-link[href*="melhores"].active::before {
    opacity: 0.8;
}

/* Animação de pulso dourado */
@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 140, 66, 0.3),
                    0 0 30px rgba(255, 140, 66, 0.2),
                    inset 0 0 10px rgba(255, 140, 66, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 140, 66, 0.4),
                    0 0 40px rgba(255, 140, 66, 0.3),
                    inset 0 0 15px rgba(255, 140, 66, 0.15);
    }
}

/* Animação de brilho na borda */
@keyframes glow-border {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* Add Group Section */
.add-group-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(30, 30, 30, 0.3);
    border-radius: 12px;
}

.add-group-text {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 500;
}

.add-group-subtext {
    font-size: 14px;
    color: #b0b5c8;
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bot-link {
    display: inline-block;
    color: #FF6B35;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.bot-link:hover {
    background: rgba(255, 107, 53, 0.2);
    text-decoration: none;
    transform: translateY(-2px);
}

.bot-link-inline {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
}

.bot-link-inline:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* Featured Group (Detail Page) */
.featured-group {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.featured-group-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.featured-telegram-logo {
    width: 120px;
    height: 120px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.telegram-icon-large {
    width: 70px;
    height: 70px;
}

.featured-group-name-repeat {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.featured-member-count {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 500;
}

.open-telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF6B35;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
    transition: background 0.3s;
}

.open-telegram-button:hover {
    background: #E55A2B;
}

.rating-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.thumbs-button {
    background: transparent;
    border: 2px solid #2a2f4a;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(1);
}

.thumbs-button:hover:not(:disabled) {
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
}

.thumbs-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.rating-percentage {
    font-size: 24px;
    font-weight: 600;
    color: #FF8C42;
}

.rating-positive {
    color: #FF8C42 !important;
}

.rating-negative {
    color: #E55A2B !important;
}

.rating {
    color: #FF8C42;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rating-label {
    font-size: 0.85em;
    font-weight: 500;
    opacity: 0.9;
}

.rating-percentage {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.help-text {
    color: #8a8fa3;
    font-size: 14px;
    margin-bottom: 15px;
}

.report-link {
    color: #FF6B35;
    text-decoration: none;
    font-size: 14px;
}

.report-link:hover {
    text-decoration: underline;
}

/* Groups Grid */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.group-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.group-card-link:hover {
    text-decoration: none;
}

.group-card {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    height: 100%;
}

.group-card-link:hover .group-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.telegram-logo-circle {
    width: 80px;
    height: 80px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.telegram-icon {
    width: 45px;
    height: 45px;
}

.group-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    word-wrap: break-word;
}

.group-description {
    display: none;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF6B35;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: background 0.3s;
    width: fit-content;
    pointer-events: none;
}

.group-card-link:hover .telegram-button {
    background: #E55A2B;
}

.telegram-icon-small {
    width: 18px;
    height: 18px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #1a1a1a;
    font-size: 12px;
}

.rating {
    color: #FF8C42;
    font-weight: 600;
}

.member-count {
    color: #8a8fa3;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Loading Indicator */
.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin: 20px 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-top-color: #FF6B35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-indicator span {
    color: #8a8fa3;
    font-size: 16px;
    font-weight: 500;
}

/* Modal de Denúncia */
.report-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.report-modal-content {
    background-color: #0f0f0f;
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.report-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #8a8fa3;
    cursor: pointer;
    transition: color 0.3s;
}

.report-modal-close:hover {
    color: #ffffff;
}

.report-modal-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    margin-right: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #FF6B35;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6a6f83;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.report-submit-button {
    width: 100%;
    padding: 14px;
    background-color: #E55A2B;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.report-submit-button:hover:not(:disabled) {
    background-color: #d32f2f;
}

.report-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    html {
        width: 100%;
        overflow-x: hidden;
    }

    body {
        padding: 15px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .title {
        font-size: 20px;
        width: 100%;
        word-wrap: break-word;
    }

    .title-telegram-icon {
        width: 24px;
        height: 24px;
    }

    .search-container {
        width: 100%;
        box-sizing: border-box;
    }

    .search-form {
        width: 100%;
        box-sizing: border-box;
    }

    .search-input {
        width: 100%;
        max-width: 100%;
        font-size: 16px; /* Evita zoom no iOS */
        box-sizing: border-box;
    }

    .nav {
        flex-wrap: wrap;
        gap: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-link {
        font-size: 14px;
        padding: 6px 12px;
        white-space: nowrap;
    }

    /* Ajustar efeitos do botão Melhores em mobile */
    .nav-link[href*="melhores"] {
        box-shadow: 0 0 10px rgba(255, 140, 66, 0.3),
                    0 0 20px rgba(255, 140, 66, 0.2);
    }

    .nav-link[href*="melhores"]::before {
        filter: blur(2px);
    }

    .add-group-section {
        padding: 15px;
        margin-bottom: 30px;
        width: 100%;
        box-sizing: border-box;
    }

    .add-group-text {
        font-size: 16px;
        width: 100%;
        word-wrap: break-word;
    }

    .add-group-subtext {
        font-size: 13px;
        padding: 0;
        width: 100%;
        word-wrap: break-word;
        box-sizing: border-box;
    }

    .bot-link {
        font-size: 14px;
        padding: 8px 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .groups-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .group-card {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .group-name {
        font-size: 16px;
        word-wrap: break-word;
        width: 100%;
    }

    .group-meta {
        font-size: 12px;
        width: 100%;
    }

    .featured-group {
        padding: 20px 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .featured-group-name {
        font-size: 20px;
    }

    .featured-telegram-logo {
        width: 100px;
        height: 100px;
    }

    .telegram-icon-large {
        width: 60px;
        height: 60px;
    }

    .featured-member-count {
        font-size: 16px;
    }

    .open-telegram-button {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }

    .rating-section {
        flex-wrap: wrap;
        gap: 10px;
    }

    .thumbs-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .report-modal-content {
        padding: 20px;
        width: 95%;
        margin: 10px;
    }

    .report-modal h2 {
        font-size: 20px;
    }

    .report-form input,
    .report-form textarea,
    .report-form select {
        font-size: 16px; /* Evita zoom no iOS */
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .title {
        font-size: 22px;
    }
}

/* Smartphones pequenos */
@media (max-width: 480px) {
    html {
        width: 100%;
        overflow-x: hidden;
    }

    body {
        padding: 10px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .title {
        font-size: 18px;
        width: 100%;
        word-wrap: break-word;
    }

    .title-telegram-icon {
        width: 20px;
        height: 20px;
    }

    .add-group-text {
        font-size: 15px;
        width: 100%;
        word-wrap: break-word;
    }

    .add-group-subtext {
        font-size: 12px;
        width: 100%;
        word-wrap: break-word;
    }

    .featured-group {
        padding: 15px 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .featured-group-name {
        font-size: 18px;
    }

    .featured-telegram-logo {
        width: 80px;
        height: 80px;
    }

    .telegram-icon-large {
        width: 50px;
        height: 50px;
    }

    .group-card {
        padding: 12px;
    }

    .report-modal-content {
        padding: 15px;
        width: 98%;
    }
}

/* Collection Page Styles */
.collection-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 80px 20px;
    background: radial-gradient(circle at top center, rgba(255, 140, 66, 0.18) 0%, rgba(0, 0, 0, 0.95) 45%, rgba(0, 0, 0, 1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 66, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.collection-hero-modelo {
    position: absolute;
    bottom: 0;
    height: auto;
    max-height: 90%;
    width: auto;
    z-index: 0;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.collection-hero-modelo-left {
    left: 0;
    max-width: 35%;
}

.collection-hero-modelo-right {
    right: 0;
    max-width: 35%;
}

.collection-hero {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 15%;
    box-sizing: border-box;
}

.collection-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.45));
    border: 1px solid rgba(255, 107, 53, 0.7);
    color: #FFB366;
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.4);
    margin-bottom: 18px;
    text-align: center;
}

.collection-hero-tag .emoji {
    font-size: 16px;
}

.collection-hero-title {
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #FF6B35;
    text-shadow:
        0 0 35px rgba(255, 107, 53, 0.8),
        0 0 80px rgba(255, 107, 53, 0.6);
    margin-bottom: 18px;
}

.collection-hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #fefce8;
    margin-bottom: 18px;
}

.collection-hero-text {
    font-size: 18px;
    color: #e5e7eb;
    margin: 4px 0;
}

.collection-hero-text-highlight {
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 20px;
}

.collection-hero-text .strong {
    color: #FF8C42;
    font-weight: 800;
}

.collection-hero-text .censored {
    color: #FF6B35;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 0 16px rgba(255, 107, 53, 0.6);
}

.collection-hero-offer {
    position: relative;
    z-index: 10;
    margin-top: 10px;
    padding: 18px 22px;
    border-radius: 16px;
    background: radial-gradient(circle at left, rgba(255, 107, 53, 0.35), transparent 60%),
                rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 140, 66, 0.5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.collection-hero-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.75);
    border-color: rgba(255, 140, 66, 0.8);
}

.collection-hero-offer * {
    pointer-events: none;
}

.collection-hero-offer .collection-hero-text {
    font-size: 20px;
}

.collection-hero-footnote {
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #c4b5fd;
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .collection-header {
        min-height: 500px;
        padding: 70px 20px;
    }

    .collection-hero {
        padding: 0 12%;
    }

    .collection-hero-title {
        font-size: 52px;
    }

    .collection-hero-subtitle {
        font-size: 22px;
    }

    .collection-hero-offer {
        padding: 16px 20px;
    }

    .collection-hero-offer .collection-hero-text {
        font-size: 19px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .collection-header {
        min-height: 450px;
        padding: 60px 15px;
    }

    .collection-hero {
        padding: 0 10%;
    }

    .collection-hero-modelo {
        max-width: 30%;
        max-height: 85%;
    }

    .collection-hero-title {
        font-size: 44px;
        letter-spacing: 0.14em;
    }

    .collection-hero-subtitle {
        font-size: 20px;
    }

    .collection-hero-offer {
        padding: 16px 20px;
    }

    .collection-hero-offer .collection-hero-text {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .collection-header {
        padding: 40px 16px;
        margin-bottom: 40px;
        min-height: 400px;
    }

    .collection-hero {
        padding: 0 5%;
    }

    .collection-hero-modelo {
        max-width: 25%;
        max-height: 75%;
        opacity: 0.5;
    }

    .collection-hero-tag {
        font-size: 11px;
        padding: 6px 14px;
    }

    .collection-hero-title {
        font-size: 32px;
        letter-spacing: 0.12em;
    }

    .collection-hero-subtitle {
        font-size: 18px;
    }

    .collection-hero-text,
    .collection-hero-offer .collection-hero-text {
        font-size: 16px;
    }

    .collection-hero-offer {
        padding: 14px 18px;
        margin-top: 8px;
    }

    .collection-hero-footnote {
        font-size: 12px;
        margin-top: 8px;
    }
}

.collection-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 140, 66, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.collection-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF8C42 0%, #FFB366 50%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 140, 66, 0.5);
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: title-glow 2s ease-in-out infinite alternate;
}

@keyframes title-glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 140, 66, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 140, 66, 0.8));
    }
}

.collection-subtitle {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.collection-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.collection-card-link:hover {
    text-decoration: none;
}

.collection-card {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 140, 66, 0.1);
    cursor: pointer;
    height: 100%;
}

.collection-card-link:hover .collection-card {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.2);
    border-color: rgba(255, 140, 66, 0.3);
}

.collection-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.collection-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.collection-card-image .telegram-logo-circle {
    width: 100px;
    height: 100px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-card-image .telegram-icon {
    width: 60px;
    height: 60px;
}

.collection-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    word-wrap: break-word;
    line-height: 1.4;
}

.collection-card-description {
    font-size: 14px;
    color: #b0b5c8;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
    min-height: 60px;
}

.collection-pricing {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(30, 30, 30, 0.5);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-label {
    font-size: 13px;
    color: #8a8fa3;
    font-weight: 500;
}

.pricing-value {
    font-size: 15px;
    color: #FF8C42;
    font-weight: 600;
}

.collection-details-button {
    display: inline-block;
    background: rgba(30, 30, 30, 0.8);
    color: #FF8C42;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(255, 140, 66, 0.3);
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.collection-card-link:hover .collection-details-button {
    background: rgba(255, 140, 66, 0.1);
    border-color: rgba(255, 140, 66, 0.5);
    color: #FF8C42;
    transform: translateY(-2px);
}

/* Responsive Collection Page */
@media (max-width: 768px) {
    .collection-title {
        font-size: 32px;
    }

    .collection-subtitle {
        font-size: 16px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collection-card {
        padding: 20px;
    }

    .collection-card-image {
        height: 150px;
    }

    .collection-card-image .telegram-logo-circle {
        width: 80px;
        height: 80px;
    }

    .collection-card-image .telegram-icon {
        width: 50px;
        height: 50px;
    }

    .collection-card-title {
        font-size: 18px;
    }

    .collection-card-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .collection-header {
        padding: 30px 12px;
        margin-bottom: 30px;
        min-height: 350px;
    }

    .collection-hero {
        padding: 0 3%;
    }

    .collection-hero-tag {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .collection-hero-title {
        font-size: 28px;
        letter-spacing: 0.1em;
        margin-bottom: 12px;
    }

    .collection-hero-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .collection-hero-text {
        font-size: 14px;
    }

    .collection-hero-text-highlight {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .collection-hero-offer {
        padding: 12px 16px;
        margin-top: 6px;
        border-radius: 12px;
    }

    .collection-hero-offer .collection-hero-text {
        font-size: 15px;
    }

    .collection-hero-footnote {
        font-size: 11px;
        margin-top: 6px;
        letter-spacing: 0.15em;
    }

    .collection-hero-modelo {
        max-width: 20%;
        max-height: 65%;
        opacity: 0.4;
    }

    .collection-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .collection-grid {
        gap: 15px;
    }

    .collection-card {
        padding: 15px;
    }

    .collection-subtitle {
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .collection-subtitle {
        font-size: 14px;
    }

    .collection-card {
        padding: 15px;
    }

    .collection-card-image {
        height: 120px;
    }
}

/* Product Detail Page Styles */
.back-to-store {
    margin-bottom: 20px;
}

.back-link {
    color: #FF8C42;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.product-image-section {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 500px;
}

.product-main-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 0;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-logo-circle-large {
    width: 200px;
    height: 200px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-icon-large {
    width: 120px;
    height: 120px;
}

.product-video-section {
    margin-top: 20px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(30, 30, 30, 0.8);
    padding: 15px;
    display: block;
}

.product-video {
    width: 100%;
    height: auto;
    max-height: 500px;
    min-height: 300px;
    border-radius: 8px;
    display: block;
    background: #000000;
    outline: none;
}

.product-video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-title {
    font-size: 36px;
    font-weight: 700;
    color: #FF8C42;
    margin: 0;
    text-shadow: 0 2px 10px rgba(255, 140, 66, 0.3);
}

.product-description {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
    padding: 20px;
    color: #b0b5c8;
    font-size: 16px;
    line-height: 1.6;
}

.benefits-section {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
    padding: 25px;
}

.benefits-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.crown-icon {
    font-size: 24px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-content {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    white-space: pre-line;
}

.benefits-content br {
    display: block;
    margin: 8px 0;
}

.star-icon {
    color: #FF8C42;
    font-size: 18px;
}

.select-quality-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

.select-quality-title {
    font-size: 24px;
    font-weight: 700;
    color: #FF8C42;
    margin: 0;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.pricing-plan-card {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 16px;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-plan-card:hover {
    border-color: rgba(255, 140, 66, 0.4);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.15);
    transform: translateY(-3px);
}

.pricing-plan-card-featured {
    border: 2px solid #FF6B35;
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 0 30px rgba(255, 75, 75, 0.2);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 75, 75, 0.4);
    z-index: 10;
}

.plan-discount-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(155, 89, 182, 0.4);
    z-index: 10;
}

.plan-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.plan-icon {
    font-size: 32px;
    line-height: 1;
}

.plan-title-section {
    flex: 1;
}

.plan-title {
    color: #FF8C42;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.plan-details {
    color: #cbd5e1;
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.plan-pricing {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.plan-price-original {
    color: #94a3b8;
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.7;
}

.plan-price {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

.plan-period {
    color: #94a3b8;
    font-size: 13px;
    opacity: 0.8;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.plan-feature {
    color: #e2e8f0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.buy-button {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.buy-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.buy-button-featured {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border: none;
    color: #ffffff;
}

.buy-button-featured:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    box-shadow: 0 6px 20px rgba(255, 75, 75, 0.4);
}

@media (max-width: 968px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
    }
    
    .pricing-plan-card {
        width: 100%;
    }
}

.secure-payment-section {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.secure-payment-title {
    font-size: 20px;
    font-weight: 700;
    color: #FF8C42;
    margin: 0 0 10px 0;
}

.secure-payment-text {
    color: #b0b5c8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Product Detail */
@media (max-width: 968px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image-section {
        min-height: 300px;
    }

    .product-video-section {
        margin-top: 15px;
        padding: 8px;
    }

    .product-video {
        max-height: 300px;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
    }

    .product-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 24px;
    }

    .pricing-plan-card {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .buy-button {
        width: 100%;
    }

    .plan-left {
        width: 100%;
    }
}

/* Payment/Checkout Styles */
.payment-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
}

.payment-title {
    font-size: 32px;
    font-weight: 700;
    color: #FF8C42;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 140, 66, 0.5);
}

.payment-instruction {
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.payment-product-section {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.payment-product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-product-name {
    font-size: 20px;
    font-weight: 600;
    color: #FF6B35;
    margin: 0;
}

.payment-product-plan {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.8;
    margin: 0;
}

.payment-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-price-label {
    font-size: 16px;
    color: #ffffff;
}

.payment-price-value {
    font-size: 32px;
    font-weight: 700;
    color: #FF6B35;
}

.payment-qr-section {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.payment-qr-title {
    font-size: 20px;
    font-weight: 600;
    color: #FF6B35;
    margin-bottom: 20px;
}

.payment-qr-code-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    display: inline-block;
}

.payment-qr-code {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.payment-qr-instruction {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 15px;
}

.payment-pix-code-section {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.payment-pix-code-title {
    font-size: 20px;
    font-weight: 600;
    color: #FF8C42;
    margin-bottom: 20px;
}

.payment-pix-code-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-pix-code-input {
    width: 100%;
    padding: 15px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    font-family: monospace;
    word-break: break-all;
    box-sizing: border-box;
}

.payment-copy-button {
    padding: 15px 30px;
    background: #FF8C42;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-copy-button:hover {
    background: #FFB366;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

.payment-steps {
    list-style: decimal;
    padding-left: 25px;
    color: #ffffff;
    line-height: 1.8;
}

.payment-steps li {
    margin-bottom: 8px;
    opacity: 0.9;
}

.payment-pix-info-wrap {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.payment-pix-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.5);
    border-radius: 12px;
    margin-bottom: 20px;
}

.payment-pix-info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-pix-info-text {
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
}

.payment-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.payment-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 12px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.6) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.payment-feature-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.payment-feature-icon-lock {
    color: #f97316;
}

.payment-feature-icon-check {
    color: #ffffff;
}

.payment-feature-icon-shield {
    color: #3b82f6;
}

.payment-feature-icon-bolt {
    color: #f97316;
}

.payment-feature-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.payment-status-section {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.payment-status-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.payment-status-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-status-text {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
}

.payment-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FF8C42;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.payment-check-button {
    padding: 15px 30px;
    background: #FF8C42;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.payment-check-button:hover {
    background: #FFB366;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

.payment-support-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.payment-support-button:hover {
    background: linear-gradient(135deg, #E55A2B 0%, #CC4A1F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.payment-support-button:active {
    transform: translateY(0);
}

.payment-expiry {
    color: #ffffff;
    font-size: 12px;
    opacity: 0.6;
    margin: 0;
}

.payment-error {
    color: #ff6b6b;
    text-align: center;
    padding: 20px;
}

/* Payment Error Page Styles */
.payment-error-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    text-align: center;
}

.payment-error-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ffffff;
    font-weight: bold;
    animation: scaleIn 0.5s ease-out;
}

.payment-error-title {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.payment-error-message {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
    opacity: 0.9;
}

.payment-error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-error-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.payment-error-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.payment-error-button-secondary {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-error-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .payment-error-container {
        padding: 30px 20px;
        margin: 30px auto;
    }

    .payment-error-icon {
        width: 80px;
        height: 80px;
        font-size: 50px;
    }

    .payment-error-title {
        font-size: 24px;
    }

    .payment-error-actions {
        flex-direction: column;
    }

    .payment-error-button,
    .payment-error-button-secondary {
        width: 100%;
    }
}

/* Payment Success Styles */
.payment-success-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    text-align: center;
}

.payment-success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: #FF8C42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ffffff;
    font-weight: bold;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.payment-success-title {
    font-size: 32px;
    font-weight: 700;
    color: #FF8C42;
    margin-bottom: 15px;
}

.payment-success-message {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
    opacity: 0.9;
}

.payment-success-link-section {
    margin-top: 40px;
}

.payment-success-link-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.payment-success-link-container {
    margin-bottom: 15px;
}

.payment-success-links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.payment-success-link-item {
    width: 100%;
}

.payment-success-link-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.payment-success-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
}

.payment-success-link-note {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
    margin-top: 10px;
}

.payment-success-waiting {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 20px;
}

.payment-success-check-button {
    padding: 15px 30px;
    background: #FF8C42;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-success-check-button:hover {
    background: #FFB366;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .payment-container {
        padding: 20px;
        margin: 20px auto;
    }

    .payment-title {
        font-size: 24px;
    }

    .payment-qr-code {
        max-width: 250px;
    }

    .payment-features-grid {
        grid-template-columns: 1fr;
    }

    .payment-pix-info-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .payment-pix-code-input {
        font-size: 10px;
    }

    .payment-success-container {
        padding: 30px 20px;
        margin: 30px auto;
    }

    .payment-success-icon {
        width: 80px;
        height: 80px;
        font-size: 50px;
    }

    .payment-success-title {
        font-size: 24px;
    }
}

/* Upsell Modal */
.upsell-modal {
    display: flex;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.upsell-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s ease;
}

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

.upsell-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.upsell-message {
    color: #ffffff;
    line-height: 1.6;
}

.upsell-title {
    font-size: 28px;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 75, 75, 0.5);
}

.upsell-text {
    font-size: 16px;
    margin-bottom: 15px;
    color: #e2e8f0;
}

.upsell-text strong {
    color: #FF8C42;
    font-weight: 700;
}

.upsell-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.upsell-features li {
    padding: 10px 0;
    font-size: 15px;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.upsell-features li:last-child {
    border-bottom: none;
}

.upsell-features li strong {
    color: #FF8C42;
}

.upsell-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.upsell-button {
    flex: 1;
    min-width: 200px;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upsell-button-yes {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.upsell-button-yes:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.6);
}

.upsell-button-no {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.upsell-button-no:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .upsell-modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .upsell-title {
        font-size: 22px;
    }
    
    .upsell-text {
        font-size: 14px;
    }
    
    .upsell-buttons {
        flex-direction: column;
    }
    
    .upsell-button {
        width: 100%;
        min-width: auto;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4),
                0 0 0 0 rgba(255, 107, 53, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    z-index: 1002;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6),
                0 0 0 8px rgba(255, 107, 53, 0.2);
    transform: translateY(-4px) scale(1.05);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5),
                0 0 0 4px rgba(255, 107, 53, 0.3);
}

.scroll-to-top-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover .scroll-to-top-icon {
    transform: translateY(-2px);
}

.scroll-to-top:active .scroll-to-top-icon {
    transform: translateY(0);
}

/* Animação de pulso sutil */
@keyframes pulse-scroll {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4),
                    0 0 0 0 rgba(255, 107, 53, 0.5);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5),
                    0 0 0 4px rgba(255, 107, 53, 0.2);
    }
}

.scroll-to-top.show {
    animation: pulse-scroll 2s ease-in-out infinite;
}

/* Responsivo */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 15px;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    }
    
    .scroll-to-top-icon {
        width: 22px;
        height: 22px;
    }
    
    .scroll-to-top:hover {
        transform: translateY(-3px) scale(1.03);
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 48px;
        height: 48px;
        bottom: 70px;
        right: 12px;
    }
    
    .scroll-to-top-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Remover hover em mobile (touch) */
    .scroll-to-top:active {
        background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
        transform: translateY(-1px) scale(0.98);
    }
}

/* Banner de Convite */
.invite-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    border-top: 2px solid #FF6B35;
    box-shadow: 0 -4px 30px rgba(255, 107, 53, 0.3);
    z-index: 999;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: slideUpBanner 0.5s ease-out;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

@keyframes slideUpBanner {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.invite-banner-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.invite-banner-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.invite-banner-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}

.invite-banner-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.invite-banner-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
}

.invite-banner-icon svg {
    width: 28px;
    height: 28px;
}

.invite-banner-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 0;
}

.invite-banner-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.invite-banner-subtitle {
    font-size: 14px;
    color: #b0b5c8;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.invite-banner-images {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 400px;
    box-sizing: border-box;
    overflow: hidden;
    flex-shrink: 0;
}

.invite-banner-images a {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-width: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Limitar tamanho máximo do container de imagens no mobile */
@media (max-width: 768px) {
    .invite-banner-images {
        max-width: calc(100% - 20px);
        width: auto;
    }
}

.invite-banner-img-link {
    display: inline-block;
    text-decoration: none;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.invite-banner-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    display: block;
    border: none;
    padding: 0;
    margin: 0;
}


/* Regras específicas para mobile - sobrescrever qualquer outro estilo */
@media (max-width: 768px) {
    .invite-banner-img-link {
        max-width: 35px !important;
        max-height: 35px !important;
        width: 35px !important;
        height: 35px !important;
        min-width: 35px !important;
        min-height: 35px !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .invite-banner-img {
        width: 35px !important;
        height: 35px !important;
        max-width: 35px !important;
        max-height: 35px !important;
        min-width: 35px !important;
        min-height: 35px !important;
        border-radius: 50% !important;
    }
}

@media (max-width: 480px) {
    .invite-banner-img-link {
        max-width: 30px !important;
        max-height: 30px !important;
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .invite-banner-img {
        width: 30px !important;
        height: 30px !important;
        max-width: 30px !important;
        max-height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        border-radius: 50% !important;
    }
}

/* Celulares muito pequenos */
@media (max-width: 360px) {
    .collection-header {
        padding: 25px 10px;
        min-height: 320px;
    }

    .collection-hero {
        padding: 0 2%;
    }

    .collection-hero-tag {
        font-size: 9px;
        padding: 4px 10px;
    }

    .collection-hero-title {
        font-size: 24px;
        letter-spacing: 0.08em;
    }

    .collection-hero-subtitle {
        font-size: 14px;
    }

    .collection-hero-offer {
        padding: 10px 14px;
    }

    .collection-hero-offer .collection-hero-text {
        font-size: 14px;
    }

    .collection-hero-footnote {
        font-size: 10px;
    }

    .collection-hero-modelo {
        max-width: 18%;
        opacity: 0.3;
    }

    .invite-banner-img-link {
        max-width: 28px !important;
        max-height: 28px !important;
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .invite-banner-img {
        width: 28px !important;
        height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        border-radius: 50% !important;
    }
}

.invite-banner-button {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.invite-banner-button:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
}


/* Responsivo para o banner */
@media (max-width: 768px) {
    .invite-banner {
        padding: 10px 12px;
        left: 0;
        right: 0;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .invite-banner-content {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .invite-banner-left {
        width: 100%;
        justify-content: flex-start;
        min-width: 0;
        gap: 8px;
        flex-wrap: nowrap;
        max-width: 100%;
        align-items: center;
    }
    
    .invite-banner-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
    
    .invite-banner-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .invite-banner-text {
        flex: 1;
        min-width: 0;
        gap: 2px;
        overflow: hidden;
    }
    
    .invite-banner-images {
        width: 100%;
        gap: 4px;
        max-width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        overflow: hidden;
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    .invite-banner-img {
        width: 35px;
        height: 35px;
    }
    
    .invite-banner-button {
        width: 100%;
        text-align: center;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .invite-banner-title {
        font-size: 12px;
        font-weight: 600;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .invite-banner-subtitle {
        font-size: 10px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .invite-banner-close {
        width: 26px;
        height: 26px;
        font-size: 18px;
        top: 6px;
        right: 8px;
    }
    
    .scroll-to-top {
        bottom: 100px; /* Ajustar para não sobrepor o banner em mobile */
    }
}

@media (max-width: 480px) {
    .invite-banner {
        padding: 8px 10px;
        max-width: 100vw;
    }
    
    .invite-banner-content {
        gap: 8px;
    }
    
    .invite-banner-left {
        gap: 6px;
    }
    
    .invite-banner-icon {
        width: 32px;
        height: 32px;
    }
    
    .invite-banner-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .invite-banner-text {
        gap: 1px;
    }
    
    .invite-banner-title {
        font-size: 11px;
        line-height: 1.15;
    }
    
    .invite-banner-subtitle {
        font-size: 9px;
        line-height: 1.15;
    }
    
    .invite-banner-img {
        width: 30px;
        height: 30px;
    }
    
    .invite-banner-images {
        gap: 3px;
        max-width: 100%;
    }
    
    .invite-banner-button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .invite-banner-close {
        width: 24px;
        height: 24px;
        font-size: 16px;
        top: 5px;
        right: 6px;
    }
    
    .scroll-to-top {
        bottom: 65px;
    }
}

/* Ajustes adicionais para telas muito pequenas */
@media (max-width: 360px) {
    .invite-banner {
        padding: 6px 8px;
    }
    
    .invite-banner-icon {
        width: 28px;
        height: 28px;
    }
    
    .invite-banner-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .invite-banner-title {
        font-size: 10px;
    }
    
    .invite-banner-subtitle {
        font-size: 8px;
    }
    
    .invite-banner-img {
        width: 28px;
        height: 28px;
    }
    
    .invite-banner-button {
        padding: 7px 10px;
        font-size: 11px;
    }
}

/* Rodapé */
.site-footer {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    margin-top: 40px;
    padding: 16px 0;
    color: #b0b5c8;
    font-size: 14px;
    box-sizing: border-box;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-right: 80px; /* espaço para não ficar embaixo do botão de subir */
}

.footer-left,
.footer-center,
.footer-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-left {
    justify-content: flex-start;
}

.footer-center {
    justify-content: center;
}

.footer-right {
    justify-content: flex-end;
}

.footer-contact-label {
    font-weight: 500;
    color: #ffffff;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
}

.footer-link:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.7);
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
}

.footer-link-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

@media (max-width: 768px) {
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 16px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 0;
        gap: 6px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Notificações VIP */
.vip-notifications-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: none;
    max-width: 420px;
}

.vip-notification {
    background: rgba(20, 20, 20, 0.95);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.3s ease-out;
    pointer-events: auto !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    user-select: none;
    z-index: 1003;
}

.vip-notification-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    width: 100%;
    pointer-events: auto;
}

.vip-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.vip-notification-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.vip-notification-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.vip-notification-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Quando tem imagem, remover background gradiente */
.vip-notification-icon.with-image {
    background: transparent;
    padding: 0;
}

.vip-notification-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 0;
    pointer-events: none;
}

.vip-notification-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 2px;
}

.vip-notification-message {
    color: #b0b5c8;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsivo para notificações */
@media (max-width: 768px) {
    .vip-notifications-container {
        bottom: 100px; /* Ajustar para não sobrepor o banner */
        left: 15px;
        max-width: calc(100% - 30px);
    }
    
    .vip-notification {
        border-radius: 12px;
        padding: 16px 18px;
        gap: 14px;
        min-width: 280px;
        max-width: calc(100% - 40px);
    }
    
    .vip-notification-icon {
        width: 44px;
        height: 44px;
    }
    
    .vip-notification-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .vip-notification-icon-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .vip-notification-text {
        gap: 3px;
    }
    
    .vip-notification-name {
        font-size: 14px;
    }
    
    .vip-notification-message {
        font-size: 12px;
    }
    
    .vip-notification-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .vip-notifications-container {
        bottom: 90px;
        left: 10px;
        max-width: calc(100% - 20px);
        gap: 10px;
    }
    
    .vip-notification {
        padding: 14px 16px;
        gap: 12px;
        min-width: 260px;
        max-width: calc(100% - 20px);
    }
    
    .vip-notification-icon {
        width: 40px;
        height: 40px;
    }
    
    .vip-notification-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .vip-notification-icon-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .vip-notification-text {
        font-size: 12px;
        gap: 2px;
    }
    
    .vip-notification-name {
        font-weight: 600;
        font-size: 13px;
    }
    
    .vip-notification-message {
        font-size: 11px;
    }
}