/* Estilos isolados para não quebrar o site atual */
.myr-portfolio-wrapper {
    font-family: 'Inter', 'Cabin', sans-serif;
    margin: 40px 0;
}
.myr-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}
.myr-filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.myr-filter-btn:hover, .myr-filter-btn.active {
    background: #10b981;
    color: #ffffff !important;
}
.myr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.myr-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.myr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16,185,129,0.15);
}
.myr-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.myr-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #10b981;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.myr-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.myr-card-body h3 {
    color: #0f172a;
    font-size: 20px;
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.myr-card-body p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}
.myr-card-link {
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
}

/* Estilos da Single Page */
.myr-single-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}
.myr-single-hero {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
}
.myr-single-header {
    text-align: center;
    margin-bottom: 40px;
}
.myr-single-header h1 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 15px;
}
.myr-single-content {
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
}
.myr-single-content h2 {
    color: #0f172a;
    border-left: 4px solid #10b981;
    padding-left: 15px;
    margin-top: 40px;
}
