/* AB TOMIC Landing Page - Estilos Customizados */
/* Cores exatas baseadas no aparelho AB TOMIC */

:root {
    --primary-gray: #4a5568;
    --primary-yellow: #fbbf24;
    --accent-yellow: #f59e0b;
    --dark-gray: #1f2937;
    --light-gray: #f7fafc;
    --success-green: #10b981;
    --danger-red: #ef4444;
}

/* Tipografia personalizada */
.hero-title {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botões personalizados com cores do AB TOMIC */
.btn-primary {
    background: linear-gradient(45deg, var(--success-green), #059669);
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    color: white;
}

/* Cartões de depoimento */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Seção de comparação */
.comparison-pro {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 2px solid var(--success-green);
}

.comparison-con {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border: 2px solid var(--danger-red);
}

/* Badge de garantia */
.guarantee-badge {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Timer countdown */
.countdown-timer {
    background: linear-gradient(45deg, var(--danger-red), #dc2626);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

/* Notificações de compra */
.purchase-notification {
    background: var(--success-green);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

/* Animações personalizadas */
@keyframes pulseCustom {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    }
}

.pulse-animation {
    animation: pulseCustom 2s infinite;
}

/* Seção hero personalizada */
.hero-section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
}

/* Preços */
.price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.2rem;
}

.price-current {
    color: var(--primary-yellow);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

/* Ícones coloridos */
.icon-check {
    color: var(--success-green);
    font-size: 1.25rem;
}

.icon-close {
    color: var(--danger-red);
    font-size: 1.25rem;
}

.icon-star {
    color: var(--primary-yellow);
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .price-current {
        font-size: 2.5rem;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
        padding: 20px;
    }
}

/* Efeitos de hover para imagens */
.product-image {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.product-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Seção FAQ */
.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.1);
}

/* WhatsApp button personalizado */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulseWhatsApp 2s infinite;
}

@keyframes pulseWhatsApp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-yellow);
}

/* Seções com gradientes */
.section-gradient {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

/* Cards flutuantes */
.floating-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.1),
        0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

/* Texto destacado */
.highlight-text {
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Botão de scroll to top (se necessário) */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: var(--primary-gray);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-yellow);
    color: var(--dark-gray);
    transform: translateY(-3px);
}