/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-blue: #0066cc;
    --color-pink: #e6007e;
    --color-yellow: #ffcc00;
    --color-dark: #0a0e27;
    --color-navy: #1a1f4d;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* ========== BANNER PRINCIPAL ========== */
.banner {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    overflow: hidden;
    padding: 30px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Background com overlay de gráfica */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0,102,204,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(230,0,126,0.1) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 1;
}

/* ========== BOTÃO DOWNLOAD ========== */
.download-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-yellow);
    transform: scale(1.05);
}

.download-btn i {
    font-size: 16px;
    color: var(--color-yellow);
}

/* ========== LOGO ========== */
.logo-section {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 20px;
}

.grafica-text {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    letter-spacing: 4px;
    margin-bottom: -10px;
}

.logo-jnp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
}

.logo-jnp span {
    font-size: 80px;
    font-weight: 900;
    font-style: italic;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.4);
    line-height: 1;
}

.logo-jnp .j { color: var(--color-blue); }
.logo-jnp .n { color: var(--color-pink); }
.logo-jnp .p { color: var(--color-yellow); }

.multi-servico {
    display: inline-block;
    background: linear-gradient(90deg, var(--color-blue), var(--color-pink));
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    padding: 8px 30px;
    border-radius: 5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* ========== TÍTULO PRINCIPAL ========== */
.main-title {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 25px 0;
}

.fazemos {
    font-family: 'Pacifico', cursive;
    font-size: 48px;
    color: var(--color-yellow);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    display: block;
    transform: rotate(-3deg);
    margin-bottom: -15px;
}

.cartao-title {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(90deg, var(--color-navy), var(--color-dark));
    padding: 12px 25px;
    border-radius: 15px;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    position: relative;
}

.cartao-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--color-yellow);
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(8px);
}

/* ========== CARDS CONTAINER ========== */
.cards-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* ========== PRICE CARDS ========== */
.price-card {
    position: relative;
    width: 160px;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-blue);
}

.price-card[data-card="2"]::before { background: var(--color-pink); }
.price-card[data-card="3"]::before { background: var(--color-yellow); }

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    opacity: 0;
}

.price-card:hover .card-glow {
    width: 300px;
    height: 300px;
    opacity: 0.3;
}

/* Efeito de brilho nos cards */
.price-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.price-card:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.price-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.price-card.featured {
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: translateY(-15px) scale(1.1);
}

/* Card Mockup */
.card-image {
    margin-bottom: 10px;
}

.card-mockup {
    width: 80px;
    height: 50px;
    margin: 0 auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: relative;
}

.card-mockup.blue { background: linear-gradient(135deg, #0066cc, #004499); }
.card-mockup.pink { background: linear-gradient(135deg, #e6007e, #b30063); }
.card-mockup.yellow { background: linear-gradient(135deg, #ffcc00, #e6b800); }

.mockup-logo {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.8;
}

/* Quantidade */
.quantity {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
}

.price-card[data-card="1"] .quantity { color: var(--color-blue); }
.price-card[data-card="2"] .quantity { color: var(--color-pink); }
.price-card[data-card="3"] .quantity { color: var(--color-yellow); }

.unit {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.price-card[data-card="1"] .unit { color: var(--color-blue); }
.price-card[data-card="2"] .unit { color: var(--color-pink); }
.price-card[data-card="3"] .unit { color: var(--color-yellow); }

/* Price Box */
.price-box {
    background: var(--color-dark);
    border-radius: 15px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.currency {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-yellow);
}

.value {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-yellow);
    line-height: 1;
}

.cents {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-yellow);
}

/* ========== LOCALIZAÇÃO ========== */
.location-section {
    position: relative;
    z-index: 2;
    margin: 20px 0;
}

.location-box {
    background: linear-gradient(90deg, var(--color-navy), var(--color-dark));
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 24px;
    color: var(--color-pink);
}

.location-text {
    color: #fff;
}

.local-label {
    color: var(--color-yellow);
    font-size: 18px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.location-text p {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

/* ========== BOTÃO LOCALIZAÇÃO ========== */
.location-btn {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.9);
    border-radius: 30px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px auto;
    max-width: 350px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.location-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-icon {
    width: 35px;
    height: 35px;
    background: var(--color-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i {
    color: #fff;
    font-size: 16px;
}

.location-btn span {
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.click-hand {
    animation: clickAnimation 1.5s infinite;
}

.click-hand i {
    color: var(--color-yellow);
    font-size: 24px;
}

@keyframes clickAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px) rotate(-10deg); }
}

/* ========== WHATSAPP ========== */
.whatsapp-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 10;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

/* ========== DECORAÇÕES ========== */
.deco-curve {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: 0;
}

.deco-curve.top {
    top: -50px;
    left: -50px;
    background: var(--color-blue);
}

.deco-curve.bottom {
    bottom: -50px;
    right: -50px;
    background: var(--color-pink);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 480px) {
    .banner {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .grafica-text {
        font-size: 32px;
    }

    .logo-jnp span {
        font-size: 60px;
    }

    .multi-servico {
        font-size: 14px;
        padding: 6px 20px;
    }

    .fazemos {
        font-size: 36px;
    }

    .cartao-title {
        font-size: 26px;
        padding: 10px 20px;
    }

    .cards-container {
        gap: 10px;
    }

    .price-card {
        width: 140px;
        padding: 12px 8px;
    }

    .quantity {
        font-size: 36px;
    }

    .value {
        font-size: 32px;
    }

    .location-box {
        padding: 12px 15px;
    }

    .location-icon {
        width: 40px;
        height: 40px;
    }

    .location-icon i {
        font-size: 18px;
    }

    .local-label {
        font-size: 16px;
    }

    .location-text p {
        font-size: 12px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 360px) {
    .price-card {
        width: 120px;
    }

    .quantity {
        font-size: 30px;
    }

    .value {
        font-size: 28px;
    }

    .fazemos {
        font-size: 30px;
    }

    .cartao-title {
        font-size: 22px;
    }
}

/* ========== ANIMAÇÕES DE ENTRADA ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-section {
    animation: fadeInUp 0.8s ease forwards;
}

.main-title {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.price-card:nth-child(1) {
    animation: fadeInScale 0.6s ease 0.4s forwards;
    opacity: 0;
}

.price-card:nth-child(2) {
    animation: fadeInScale 0.6s ease 0.6s forwards;
    opacity: 0;
}

.price-card:nth-child(3) {
    animation: fadeInScale 0.6s ease 0.8s forwards;
    opacity: 0;
}

.location-section {
    animation: slideInLeft 0.6s ease 1s forwards;
    opacity: 0;
}

.location-btn {
    animation: fadeInUp 0.6s ease 1.2s forwards;
    opacity: 0;
}

.whatsapp-btn {
    animation: fadeInScale 0.6s ease 1.4s forwards;
    opacity: 0;
}