
/* ====== SERVICOS.CSS - RESPONSIVIDADE COMPLETA ====== */

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

:root {
    /* Cores - Padrão Index */
    --primary-green: #0c4b32;
    --accent-yellow: #caa349;
    --accent-gold: #caa349;
    --bg-gray: #edf1ed;
    --bg-surface: #f6f8f4;
    --text-dark: #121f1a;
    --text-muted: #5e6b66;
    --border-color: rgba(18, 33, 27, 0.12);
    --shadow: 0 16px 45px rgba(18, 33, 27, 0.08);
    --dark-blue: #0f2c25;
    --text-light: #8b9a92;
    
    /* Breakpoints */
    --bp-sm: 480px;
    --bp-md: 768px;
    --bp-lg: 992px;
    --bp-xl: 1200px;
    
    /* Border Radius */
    --br-sm: 8px;
    --br-md: 12px;
    --br-lg: 20px;
    --br-xl: 28px;
    --br-2xl: 36px;
    --br-3xl: 48px;
    --br-4xl: 56px;
}

/* ====== RESET & BASE ====== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background: var(--bg-surface); color: var(--text-dark); overflow-x: hidden; -webkit-font-smoothing: antialiased; line-height: 1.6; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ====== SPLASH SCREEN ====== */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease-out, visibility 0.7s ease-out;
}

#splash-screen.hide { opacity: 0; visibility: hidden; }
.splash-content { text-align: center; color: white; }
.splash-content img { width: 150px; height: auto; margin-bottom: 20px; background: transparent; display: inline-block; animation: splashLogoIn 0.8s ease-out 0.3s both; }
.splash-content h1 { font-size: 2.5rem; margin-bottom: 10px; font-weight: 800; }
.splash-content p { font-size: 1.2rem; letter-spacing: 1px; }

@keyframes splashLogoIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ====== HERO SECTION ====== */
.services-hero { text-align: center; padding: 80px 20px 50px; background: linear-gradient(to bottom, var(--bg-surface), #fff); }
.label { display: inline-block; padding: 0.5rem 1rem; background: var(--accent-yellow); color: #000; border-radius: 2rem; font-size: 0.875rem; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.5px; }
.button-yellow { background: var(--accent-yellow); color: #000; }
.button-yellow:hover { background: #e0a800; }
.title-primary { text-align: center; font-size: 2.8rem; font-weight: 800; color: var(--primary-green); margin-bottom: 15px; }
.desc-primary { color: var(--text-muted); max-width: 650px; margin: 0 auto 40px; line-height: 1.6; font-size: 1.1rem; }

/* ====== SEARCH BOX ====== */
.search-box { position: relative; max-width: 600px; margin: 0 auto 40px; }
.search-box i { position: absolute; left: 25px; top: 50%; transform: translateY(-50%); color: #9ca3af; pointer-events: none; }
.search-box input { width: 100%; padding: 22px 30px 22px 65px; border-radius: 50px; border: 1px solid #e5e7eb; font-size: 1rem; font-family: 'Montserrat', sans-serif; outline: none; transition: all 0.3s ease; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03); }
.search-box input:focus { border-color: var(--primary-green); box-shadow: 0 10px 25px rgba(12, 75, 50, 0.1); }

/* ====== FILTROS ====== */
.filters-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-pill { padding: 12px 24px; border-radius: 50px; border: 1px solid #e5e7eb; background: #fff; font-weight: 600; font-size: 0.95rem; color: #4b5563; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
.filter-pill:hover { border-color: var(--primary-green); color: var(--primary-green); }
.filter-pill.active { background: var(--primary-green); color: #fff; border-color: var(--primary-green); }

/* ====== GRID DE SERVIÇOS ====== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; padding: 60px 0; }
.service-card { background: #fff; border: 1px solid #f3f4f6; border-radius: var(--br-3xl); padding: 40px; transition: all 0.3s ease; display: block; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); }
.service-card.hidden { display: none; }
.card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 25px; }
.icon-sq { width: 52px; height: 52px; background: #e6f1e9; color: var(--primary-green); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.badge-online { background: #eff6ff; color: #1d4ed8; font-size: 0.75rem; font-weight: 800; padding: 6px 12px; border-radius: 8px; white-space: nowrap; }
.service-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); line-height: 1.3; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 30px; }
.card-footer { display: flex; gap: 12px; }
.btn-full { flex: 1; background: var(--primary-green); color: #fff; border: none; padding: 16px; border-radius: 12px; font-weight: 700; cursor: pointer; text-align: center; text-decoration: none; font-family: 'Montserrat', sans-serif; transition: all 0.3s ease; display: inline-block; }
.btn-full:hover { background: #093d2a; transform: scale(1.02); }
.btn-sq { width: 54px; height: 54px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; color: #9ca3af; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.3s ease; flex-shrink: 0; }
.btn-sq:hover { border-color: var(--primary-green); color: var(--primary-green); background: #f9fafb; }

/* ====== SEÇÃO DE AJUDA ====== */
.help-section { padding: 40px 20px; }
.dashed-box { border: 2px dashed var(--accent-yellow); border-radius: 40px; padding: 60px 40px; text-align: center; margin-bottom: 80px; background: rgba(202, 163, 73, 0.02); }
.dashed-box h2 { color: var(--primary-green); font-size: 2rem; font-weight: 800; margin-bottom: 15px; }
.dashed-box p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 30px; }
.help-btns { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.btn-solid { background: var(--primary-green); color: #fff; padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; display: inline-block; }
.btn-solid:hover { background: #093d2a; transform: translateY(-2px); }
.btn-outline { border: 2.5px solid var(--primary-green); color: var(--primary-green); background: transparent; padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; font-family: 'Montserrat', sans-serif; transition: all 0.3s ease; display: inline-block; }
.btn-outline:hover { background: var(--primary-green); color: #fff; transform: translateY(-2px); }

/* ====== FOOTER ====== */
footer { background: var(--dark-blue); color: #fff; padding: 70px 0 30px; position: relative; margin-top: 50px; }

/* ====== RESPONSIVIDADE - 1200px ====== */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
    .services-hero { padding: 70px 20px 40px; }
    .title-primary { font-size: 2.5rem; }
    .desc-primary { font-size: 1rem; max-width: 600px; }
    .search-box { max-width: 550px; }
}

/* ====== RESPONSIVIDADE - 992px ====== */
@media (max-width: 992px) {
    .services-hero { padding: 60px 20px 35px; }
    .title-primary { font-size: 2.2rem; margin-bottom: 12px; }
    .label { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
    .desc-primary { font-size: 0.95rem; max-width: 550px; margin-bottom: 35px; }
    .search-box { max-width: 500px; margin-bottom: 30px; }
    .search-box input { padding: 18px 25px 18px 55px; font-size: 0.95rem; }
    .filters-row { gap: 10px; margin-bottom: 15px; }
    .filter-pill { padding: 10px 18px; font-size: 0.85rem; }
    .services-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; padding: 50px 0; }
    .service-card { padding: 30px; }
    .service-card h3 { font-size: 1.2rem; }
    .card-footer { gap: 10px; }
    .btn-full { padding: 14px; font-size: 0.95rem; }
    .btn-sq { width: 50px; height: 50px; }
    .dashed-box { padding: 50px 30px; border-radius: 30px; }
    .dashed-box h2 { font-size: 1.7rem; }
    .help-btns { gap: 12px; }
    .btn-solid, .btn-outline { padding: 15px 35px; font-size: 0.95rem; }
}

/* ====== RESPONSIVIDADE - 768px ====== */
@media (max-width: 768px) {
    .services-hero { padding: 50px 20px 30px; }
    .title-primary { font-size: 2rem; margin-bottom: 10px; }
    .label { font-size: 0.75rem; padding: 0.35rem 0.7rem; margin-bottom: 0.75rem; }
    .desc-primary { font-size: 0.9rem; max-width: 100%; margin-bottom: 30px; }
    .search-box { max-width: 100%; margin-bottom: 25px; }
    .search-box input { padding: 16px 20px 16px 50px; font-size: 0.9rem; }
    .search-box i { left: 18px; font-size: 0.95rem; }
    .filters-row { gap: 8px; margin-bottom: 10px; }
    .filter-pill { padding: 8px 14px; font-size: 0.8rem; }
    .services-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; padding: 40px 0; }
    .service-card { padding: 25px; border-radius: 20px; }
    .card-header { margin-bottom: 18px; }
    .icon-sq { width: 48px; height: 48px; font-size: 1.1rem; }
    .badge-online { font-size: 0.7rem; padding: 5px 10px; }
    .service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
    .service-card p { font-size: 0.9rem; margin-bottom: 20px; }
    .btn-full { padding: 12px; font-size: 0.9rem; }
    .btn-sq { width: 50px; height: 50px; font-size: 0.9rem; }
    .dashed-box { padding: 40px 25px; border-radius: 25px; margin-bottom: 60px; }
    .dashed-box h2 { font-size: 1.5rem; margin-bottom: 12px; }
    .dashed-box p { font-size: 0.95rem; margin-bottom: 20px; }
    .help-btns { flex-direction: column; gap: 10px; }
    .btn-solid, .btn-outline { width: 100%; padding: 14px 20px; font-size: 0.9rem; }
}

/* ====== RESPONSIVIDADE - 576px ====== */
@media (max-width: 576px) {
    .services-hero { padding: 40px 15px 25px; }
    .title-primary { font-size: 1.7rem; margin-bottom: 8px; }
    .label { font-size: 0.65rem; padding: 0.3rem 0.55rem; margin-bottom: 0.6rem; }
    .desc-primary { font-size: 0.85rem; margin-bottom: 25px; line-height: 1.5; }
    .search-box { margin-bottom: 20px; }
    .search-box input { padding: 14px 18px 14px 45px; font-size: 0.85rem; }
    .search-box i { left: 15px; font-size: 0.9rem; }
    .filters-row { gap: 6px; margin-bottom: 8px; }
    .filter-pill { padding: 7px 12px; font-size: 0.75rem; }
    .services-grid { grid-template-columns: 1fr; gap: 15px; padding: 30px 0; }
    .service-card { padding: 20px; border-radius: 16px; }
    .card-header { margin-bottom: 15px; }
    .icon-sq { width: 44px; height: 44px; font-size: 1rem; }
    .badge-online { font-size: 0.65rem; padding: 4px 8px; }
    .service-card h3 { font-size: 1rem; margin-bottom: 8px; }
    .service-card p { font-size: 0.85rem; margin-bottom: 15px; line-height: 1.5; }
    .card-footer { gap: 8px; }
    .btn-full { padding: 11px; font-size: 0.85rem; }
    .btn-sq { width: 45px; height: 45px; font-size: 0.8rem; }
    .dashed-box { padding: 30px 20px; border-radius: 20px; border-width: 1.5px; margin-bottom: 50px; }
    .dashed-box h2 { font-size: 1.3rem; margin-bottom: 10px; }
    .dashed-box p { font-size: 0.9rem; margin-bottom: 15px; }
    .help-btns { flex-direction: column; gap: 8px; }
    .btn-solid, .btn-outline { width: 100%; padding: 12px 18px; font-size: 0.85rem; }
}

/* ====== RESPONSIVIDADE - 480px ====== */
@media (max-width: 480px) {
    .services-hero { padding: 35px 12px 20px; }
    .title-primary { font-size: 1.5rem; margin-bottom: 6px; }
    .label { font-size: 0.6rem; padding: 0.25rem 0.5rem; margin-bottom: 0.5rem; }
    .desc-primary { font-size: 0.8rem; margin-bottom: 20px; line-height: 1.4; }
    .search-box { margin-bottom: 15px; }
    .search-box input { padding: 12px 16px 12px 40px; font-size: 0.8rem; }
    .search-box i { left: 12px; font-size: 0.85rem; }
    .filters-row { gap: 5px; margin-bottom: 6px; }
    .filter-pill { padding: 6px 10px; font-size: 0.7rem; }
    .services-grid { grid-template-columns: 1fr; gap: 12px; padding: 25px 0; }
    .service-card { padding: 18px; border-radius: 14px; }
    .card-header { margin-bottom: 12px; }
    .icon-sq { width: 40px; height: 40px; font-size: 0.9rem; }
    .badge-online { font-size: 0.6rem; padding: 3px 6px; }
    .service-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
    .service-card p { font-size: 0.8rem; margin-bottom: 12px; line-height: 1.4; }
    .card-footer { gap: 6px; }
    .btn-full { padding: 10px; font-size: 0.8rem; }
    .btn-sq { width: 42px; height: 42px; font-size: 0.75rem; }
    .dashed-box { padding: 25px 15px; border-radius: 16px; border-width: 1.5px; margin-bottom: 40px; }
    .dashed-box h2 { font-size: 1.2rem; margin-bottom: 8px; }
    .dashed-box p { font-size: 0.85rem; margin-bottom: 12px; }
    .help-btns { flex-direction: column; gap: 6px; }
    .btn-solid, .btn-outline { width: 100%; padding: 10px 16px; font-size: 0.8rem; }
}

@media (max-width: 768px) {
    #splash-screen {
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        padding: 20px;
    }
    .splash-content h1 { font-size: 24px; line-height: 1.3; }
    .splash-content p { font-size: 14px; }
}

