/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(50, 50);
        opacity: 0;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
}

/* @keyframes typing {
    from { width: 0 }
    to { width: 100% }
} */

/* @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #00dbde; }
} */

/* ===== CLASSES DE ANIMAÇÃO ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.2s; }
.animate-delay-2 { transition-delay: 0.4s; }
.animate-delay-3 { transition-delay: 0.6s; }

/* ===== HEADER ===== */
header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    animation: fadeInUp 1s ease-out;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00dbde, #fc00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.subtitle {
    color: #a0a0c0;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ===== INFO BOX ===== */
.info-box {
    background: rgba(0, 219, 222, 0.1);
    border-left: 4px solid #00dbde;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    animation: fadeIn 1s ease-out 0.5s both;
}

.info-box h3 {
    color: #00dbde;
    margin-bottom: 10px;
}

.counter {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00dbde, #fc00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 15px;
    animation: countUp 2s ease-out;
}

/* ===== SEÇÕES ===== */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin: 40px 0 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #00dbde, #fc00ff);
    border-radius: 2px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.category-header i {
    font-size: 2rem;
}

/* ===== CARDS ===== */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-badge {
    background: linear-gradient(45deg, #00dbde, #fc00ff, #00dbde);
    background-size: 200% 100%;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
    animation: shimmer 3s linear infinite;
}

.card-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 15px 0;
    color: #00dbde;
}

.card-price small {
    font-size: 1rem;
    color: #a0a0c0;
    display: block;
    margin-top: 5px;
}

.card-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    flex-grow: 1;
}

.card-features li {
    padding: 8px 0;
    color: #d0d0f0;
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00dbde;
    font-weight: bold;
}

/* ===== BOTÕES ===== */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.whatsapp-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

/* ===== CARDS DESTAQUE ===== */
.highlight {
    background: rgba(0, 219, 222, 0.1);
    border: 2px solid #00dbde;
    transform: scale(1.02);
}

.highlight .card-price {
    color: #fc00ff;
}

.highlight .whatsapp-btn {
    background: linear-gradient(45deg, #fc00ff, #9d00ff);
    animation: pulse 2s ease-in-out infinite;
}

.highlight .whatsapp-btn:hover {
    box-shadow: 0 10px 20px rgba(252, 0, 255, 0.3);
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0c0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== EFEITOS ESPECIAIS ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #00dbde, #fc00ff);
    border-radius: 50%;
    opacity: 0.1;
    animation: floatParticle 20s linear infinite;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #00dbde;
    animation: spin 1s linear infinite;
}

/* .typing-effect {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #00dbde;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
} */

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 10px;
    }
    
    .card {
        padding: 20px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .card-title {
        font-size: 1.4rem;
        min-height: 40px;
    }
    
    .quantity-badge {
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ===== NOTIFICAÇÕES FAKE ===== */
.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 320px;
    max-width: 90%;
    z-index: 1000;
    pointer-events: none;
}

.notification {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #25D366;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(400px);
    opacity: 0;
    animation: slideInNotification 0.5s ease-out forwards,
               slideOutNotification 0.5s ease-in forwards 4.5s;
    pointer-events: all;
    transition: all 0.3s ease;
}

.notification:hover {
    transform: translateX(0) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.notification-icon {
    font-size: 1.8rem;
    background: linear-gradient(45deg, #25D366, #128C7E);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.notification-content {
    flex-grow: 1;
}

.notification-name {
    color: #1a1a2e;
    font-size: 0.95rem;
    display: block;
}

.notification-action {
    color: #666;
    font-size: 0.85rem;
    display: block;
    margin: 2px 0;
}

.notification-package {
    color: #25D366;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin: 3px 0;
}

.notification-time {
    color: #888;
    font-size: 0.75rem;
    margin-top: 5px;
}

@keyframes slideInNotification {
    0% {
        transform: translateX(400px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutNotification {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(400px);
        opacity: 0;
    }
}

@keyframes pulseNotification {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
}

.notification-highlight {
    animation: pulseNotification 2s ease-in-out infinite;
}

/* Responsividade para notificações */
@media (max-width: 768px) {
    .notifications-container {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
    
    .notification {
        padding: 12px;
    }
    
    .notification-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}