/* ========================================
   WEBPRIME — PÁGINA 404 + SERVIÇOS
   ======================================== */

:root {
    --wp-black: #000000;
    --wp-dark: #1a1a1a;
    --wp-gold: #FDC500;
    --wp-gold-dark: #E6B200;
    --wp-white: #FFFFFF;
    --wp-gray-light: #f8f9fa;
    --wp-gray-medium: #666666;
    --wp-gray-dark: #333333;
    --wp-green: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--wp-gray-dark);
    background: var(--wp-white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gold { color: var(--wp-gold); }

/* ========================================
   HEADER
   ======================================== */
.header {
    background: var(--wp-black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--wp-white);
}

.header-logo i { color: var(--wp-gold); font-size: 1.3rem; }
.header-logo span { font-size: 1.3rem; font-weight: 700; }

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--wp-gold);
    color: var(--wp-black);
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: var(--wp-gold-dark);
    transform: translateY(-1px);
}

/* ========================================
   HERO 404
   ======================================== */
.hero-404 {
    background: var(--wp-black);
    padding: 5rem 0 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-404::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 40%, rgba(253,197,0,0.06) 0%, transparent 50%);
}

.hero-404 .container { position: relative; z-index: 1; }

.error-badge {
    display: inline-block;
    background: rgba(253,197,0,0.12);
    color: var(--wp-gold);
    font-size: 3.5rem;
    font-weight: 700;
    padding: 0.3rem 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(253,197,0,0.25);
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
}

.hero-404 h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--wp-white);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.hero-404 p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 550px;
    margin: 0 auto 2rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--wp-gold);
    color: var(--wp-black);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(253,197,0,0.25);
}

.btn-hero:hover {
    background: var(--wp-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(253,197,0,0.35);
}

/* ========================================
   SERVIÇOS
   ======================================== */
.section-services {
    padding: 5rem 0;
    background: var(--wp-gray-light);
}

.section-tag {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--wp-gold);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    color: var(--wp-black);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--wp-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(25px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: var(--wp-gold);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--wp-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--wp-black);
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--wp-black);
    margin-bottom: 0.6rem;
}

.service-card > p {
    font-size: 0.9rem;
    color: var(--wp-gray-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    font-size: 0.85rem;
    color: var(--wp-gray-dark);
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card ul li i {
    color: var(--wp-gold);
    font-size: 0.75rem;
}

/* ========================================
   DIFERENCIAIS
   ======================================== */
.section-diff {
    padding: 4rem 0;
    background: var(--wp-black);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.diff-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.diff-item > i {
    font-size: 1.5rem;
    color: var(--wp-gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.diff-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wp-white);
    margin-bottom: 0.3rem;
}

.diff-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ========================================
   CTA FINAL
   ======================================== */
.section-cta {
    padding: 4rem 0;
    background: var(--wp-gold);
    text-align: center;
}

.section-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--wp-black);
    margin-bottom: 0.5rem;
}

.section-cta p {
    font-size: 1rem;
    color: rgba(0,0,0,0.65);
    margin-bottom: 1.5rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--wp-black);
    color: var(--wp-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-whatsapp:hover {
    background: var(--wp-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.btn-whatsapp i { font-size: 1.2rem; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--wp-black);
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--wp-white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo i { color: var(--wp-gold); }

.footer p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.footer-contact a {
    color: var(--wp-gold);
    text-decoration: none;
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--wp-green);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp-white);
    font-size: 1.6rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 768px) {
    .container { padding: 0 1.2rem; }

    .header-cta span { display: none; }

    .hero-404 { padding: 3.5rem 0 3rem; }
    .error-badge { font-size: 2.5rem; padding: 0.2rem 1rem; }
    .hero-404 p { font-size: 0.95rem; }

    .services-grid { grid-template-columns: 1fr; }

    .diff-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .section-services { padding: 3.5rem 0; }
    .section-diff { padding: 3rem 0; }
    .section-cta { padding: 3rem 0; }

    .btn-whatsapp {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}
