/* Hostinger Promo Section - LootBR Integration */
.hostinger-promo {
    background: linear-gradient(135deg, #673de6 0%, #5025d1 50%, #2c1f4f 100%);
    padding: 50px 30px;
    border-radius: 16px;
    margin: 40px auto;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(103, 61, 230, 0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hostinger-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.hostinger-promo-badge {
    display: inline-block;
    background: #fc5185;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hostinger-promo h2 {
    font-size: 28px;
    margin: 0 0 15px 0;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hostinger-promo-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.5;
}

.hostinger-promo-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.hostinger-promo-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hostinger-promo-cta {
    display: inline-block;
    background: #fc5185;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 81, 133, 0.4);
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.hostinger-promo-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(252, 81, 133, 0.6);
    background: #ff6b9d;
}

.hostinger-promo-note {
    font-size: 13px;
    margin-top: 20px;
    opacity: 0.8;
    font-style: italic;
}

.hostinger-promo-disclaimer {
    font-size: 11px;
    margin-top: 15px;
    opacity: 0.6;
    line-height: 1.4;
}

/* Versão compacta para footer/sidebar */
.hostinger-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e5ff 100%);
    border: 2px solid #673de6;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hostinger-card::before {
    content: '💎';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    opacity: 0.3;
}

.hostinger-card h3 {
    color: #673de6;
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
}

.hostinger-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hostinger-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #673de6;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.hostinger-card-cta:hover {
    gap: 12px;
    color: #fc5185;
}

.hostinger-card-cta::after {
    content: '→';
    font-size: 18px;
}

/* Responsivo */
@media (max-width: 768px) {
    .hostinger-promo {
        padding: 35px 20px;
        margin: 30px 15px;
    }

    .hostinger-promo h2 {
        font-size: 22px;
    }

    .hostinger-promo-features {
        flex-direction: column;
        gap: 10px;
    }

    .hostinger-promo-feature {
        justify-content: center;
    }
}