@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700;800&family=Inter:wght@400;600;700&display=swap');

:root {
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --brand-blue: #002c8c;
    --brand-blue-light: #2563eb;
    --accent-red: #E63946;
    --accent-gold: #F59E0B;
    --text-dark: #0F172A;
    --text-muted: #475569;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--brand-blue);
    letter-spacing: -0.02em;
}

/* Light Theme Hero */
.hero-official {
    position: relative;
    padding: 80px 0 60px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
    text-align: center;
    border-bottom: 4px solid var(--brand-blue);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--brand-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* Clean Cards */
.premium-card {
    background: var(--bg-white);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 44, 140, 0.15);
    border-color: var(--brand-blue-light);
}

.img-glow-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 20px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255,255,255,0) 70%);
}

.product-img {
    max-height: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.premium-card:hover .product-img {
    transform: scale(1.05);
}

/* Buttons */
.btn-dr {
    background: linear-gradient(135deg, var(--accent-red) 0%, #C8102E 100%);
    color: #FFFFFF !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    padding: 16px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    animation: pulse-btn 2s infinite;
}

.btn-dr:hover {
    background: linear-gradient(135deg, #C8102E 0%, var(--accent-red) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 57, 70, 0.5);
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(230, 57, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #F1F5F9;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
}
.feature-list li:last-child {
    border-bottom: none;
}
.feature-list i {
    color: var(--brand-blue-light);
    margin-right: 12px;
}

.price-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-blue);
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-official { padding: 40px 0 30px 0; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}
