/* =============================================
   PETS PAGE - themes/web-engine/css/pets.css
   ============================================= */

/* --- Container --- */
.pets-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Section --- */
.pets-section {
    padding: 3rem 1.5rem;
}

/* --- Hero Background --- */
.pets-hero-bg {
    background-color: #059669;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 4rem 1.5rem;
    text-align: center;
}
.pets-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}
.pets-badge {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 1rem;
}
.pets-hero-bg h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 1rem;
    line-height: 1.2;
    color: #fff;
}
.pets-hero-bg h1 span { color: #bbf7d0; }
.pets-hero-bg p {
    font-size: 1.15rem;
    margin-top: 0.5rem;
    opacity: 0.9;
    color: #fff;
}

/* --- Services Grid --- */
.pets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.pets-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.pets-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.pets-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: transform 0.3s ease;
}
.pets-card:hover .pets-card-icon {
    transform: rotate(6deg);
}
.pets-card-icon svg {
    width: 30px;
    height: 30px;
}
.pets-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.pets-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Icon colors */
.pets-icon-sky { background: #e0f2fe; color: #0284c7; }
.pets-icon-red { background: #fee2e2; color: #dc2626; }
.pets-icon-purple { background: #f3e8ff; color: #9333ea; }
.pets-icon-emerald { background: #d1fae5; color: #059669; }
.pets-icon-amber { background: #fef3c7; color: #d97706; }
.pets-icon-orange { background: #fff7ed; color: #ea580c; }
.pets-icon-violet { background: #ede9fe; color: #7c3aed; }
.pets-icon-rose { background: #ffe4e6; color: #e11d48; }
.pets-icon-fuchsia { background: #fae8ff; color: #c026d3; }

/* --- Featured Card (Apoiar) --- */
.pets-card-featured {
    background: #059669;
    border: none;
    color: #fff;
}
.pets-card-featured .pets-card-icon {
    background: rgba(255,255,255,0.2);
}
.pets-card-featured .pets-card-icon svg { color: #fff; }
.pets-card-featured h3 { color: #fff; }
.pets-card-featured p { color: rgba(255,255,255,0.8); }
.pets-card-featured:hover .pets-card-icon {
    transform: scale(1.1);
}
.pets-btn-featured {
    display: inline-block;
    background: #fff;
    color: #059669;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 1rem;
    transition: background 0.2s;
}
.pets-btn-featured:hover {
    background: #ecfdf5;
}

/* --- Stats --- */
.pets-section-stats {
    padding: 0 1.5rem 3rem;
}
.pets-stats-inner {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px 18px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color);
}
.stat-card i {
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: block;
}
.stat-card strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
}
.stat-card span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
}

/* --- Explore Section --- */
.pets-explore-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.pets-explore-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.pets-explore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.pets-explore-card {
    background: var(--bg-secondary);
    border: 1px solid transparent;
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    transition: all 0.3s ease;
}
.pets-explore-card:hover {
    border-color: #059669;
}
.pets-explore-card-highlight {
    border: 2px solid #059669;
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
}
.pets-explore-card h4 {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #059669;
    margin-bottom: 0.75rem;
}
.pets-explore-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.pets-explore-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.pets-btn-green {
    display: block;
    width: 100%;
    background: #059669;
    color: #fff;
    text-align: center;
    padding: 0.9rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.pets-btn-green:hover {
    background: #047857;
}
.pets-link-green {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #059669;
    font-weight: 800;
    font-size: 1rem;
    transition: text-decoration 0.2s;
}
.pets-link-green:hover {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .pets-grid { grid-template-columns: repeat(2, 1fr); }
    .pets-stats-inner { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
    .pets-hero-bg h1 { font-size: 1.75rem; }
    .pets-grid { grid-template-columns: 1fr; }
    .pets-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .pets-explore-grid { grid-template-columns: 1fr; }
}
